From b772ba49ce5cc918537a5fb30d94c6fd0fdc8fa9 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 27 Dec 2009 03:04:23 +0000 Subject: [PATCH 001/253] raise fpdbparseerror on a bug --- pyfpdb/Hand.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 3467216a..1bdfe250 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -480,8 +480,6 @@ Card ranks will be uppercased self.totalcollected += Decimal(entry[1]) - - def getGameTypeAsString(self): """\ Map the tuple self.gametype onto the pokerstars string describing it @@ -1406,6 +1404,8 @@ class Pot(object): # Return any uncalled bet. committed = sorted([ (v,k) for (k,v) in self.committed.items()]) + if len(committed)<2: + raise FpdbParseError("length of committed array is too small") lastbet = committed[-1][0] - committed[-2][0] if lastbet > 0: # uncalled returnto = committed[-1][1] From 72730291f01967118bdcfde7146e890e5de481e8 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Sat, 27 Feb 2010 09:35:18 +0200 Subject: [PATCH 002/253] Fix HUD-cache updates on Postgres The value in pdata[p]['position'] is a string. Change the 'pos' dictionary keys to strings, and to prevent potential breakage on other databases, always enforce that the looked up key is first converted to string. --- pyfpdb/Database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 0303aad2..069789f3 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1703,8 +1703,8 @@ class Database: line[55] = gid # gametypeId line[56] = pids[p] # playerId line[57] = 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']] + 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[str(pdata[p]['position'])] line[59] = pdata[p]['tourneyTypeId'] line[60] = styleKey # styleKey inserts.append(line) From 4042fc6c40b9cd4f03f0be9ae9e854662ba114f1 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Sat, 27 Feb 2010 17:41:52 +0200 Subject: [PATCH 003/253] Use sqlcoder's fix for position map The values for pdata[p]['position'] come from DerivedStats.py, where the value was explicitly cast to a string. This way it should work again and use the cleaner code from sqlcoder instead. --- pyfpdb/Database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index f24a7c33..d0fe733b 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1713,8 +1713,8 @@ class Database: line[55] = gid # gametypeId line[56] = pids[p] # playerId line[57] = 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[str(pdata[p]['position'])] + 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 inserts.append(line) From dcbb90def66c59daa10631e0a0e74949689968fa Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Fri, 5 Mar 2010 08:39:54 +0200 Subject: [PATCH 004/253] Update changelog and bump version --- packaging/debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 4bacf635..ebd45a53 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,10 @@ +free-poker-tools (0.20~git20100305) unstable; urgency=low + + * New snapshot + * Version bumped to 0.20 + + -- Mika Bostrom Fri, 05 Mar 2010 08:38:52 +0200 + free-poker-tools (0.12~git20100122) unstable; urgency=low * New snapshot release with reworked import code From 81c731b42ed54de9a665adfbcedfd979a39d085a Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 15 Apr 2010 14:51:20 +0800 Subject: [PATCH 005/253] Fix for CBet stat Patch from bbtgaf@googlemail.com aka gimick DerivedStats.betStreet() was only functioning if the player was the first person to act on a street. If the player was checked to the function would exit as False before ever finding the player --- pyfpdb/DerivedStats.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 327b8de2..ae581ee1 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -505,9 +505,13 @@ class DerivedStats(): """Returns true if player bet/raised the street as their first action""" betOrRaise = False for act in self.hand.actions[street]: - if act[0] == player and act[1] in ('bets', 'raises'): - betOrRaise = True - else: + if act[0] == player: + if act[1] in ('bets', 'raises'): + betOrRaise = True + else: + # player found but did not bet or raise as their first action break + #else: + # haven't found player's first action yet return betOrRaise From b14bed4e9b5a8cd9e0cb408d4e83d9d2caac2a4c Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 15 Apr 2010 15:48:57 +0800 Subject: [PATCH 006/253] Fix last patch - add pass --- pyfpdb/DerivedStats.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index ae581ee1..4e55cdfc 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -510,6 +510,7 @@ class DerivedStats(): betOrRaise = True else: # player found but did not bet or raise as their first action + pass break #else: # haven't found player's first action yet From 4fb3b679d1365caeea0d98f1ee1404d1c4036907 Mon Sep 17 00:00:00 2001 From: gimick Date: Thu, 15 Apr 2010 23:16:26 +0100 Subject: [PATCH 007/253] gimick - Do not set CBChance if there has been a donkbet --- pyfpdb/DerivedStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 327b8de2..806f7f96 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -368,8 +368,8 @@ class DerivedStats(): name = self.lastBetOrRaiser(hand.actionStreets[i+1]) if name: chance = self.noBetsBefore(hand.actionStreets[i+2], name) - self.handsplayers[name]['street%dCBChance' % (i+1)] = True if chance == True: + self.handsplayers[name]['street%dCBChance' % (i+1)] = True self.handsplayers[name]['street%dCBDone' % (i+1)] = self.betStreet(hand.actionStreets[i+2], name) def calcCheckCallRaise(self, hand): From 6ba7621f2a4a8eb934f02908c8afeef6d6533a88 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 23 Apr 2010 00:28:30 +0800 Subject: [PATCH 008/253] Fix 'errors' stat in importer Instead of: GuiBulkImport done: Stored: 32 Duplicates: 0 Partial: 0 Errors: 32 in 0.530081987381 seconds - 0/sec We have: GuiBulkImport done: Stored: 0 Duplicates: 0 Partial: 0 Errors: 32 in 0.530081987381 seconds - 0/sec --- pyfpdb/fpdb_import.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index 689858e0..56c59b77 100755 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -468,6 +468,7 @@ class Importer: errors = getattr(hhc, 'numErrors') stored = getattr(hhc, 'numHands') stored -= duplicates + stored -= errors else: # conversion didn't work # TODO: appropriate response? From 3dd5f92a3c115f9761e6c51ae78bcb32dcd6d00b Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 23 Apr 2010 00:33:24 +0800 Subject: [PATCH 009/253] Add logging for two areas, fix RAZZ v Razz issue Add ERROR conditions for determineGameType failing, and raise a FpdbParseError in each case --- pyfpdb/PokerStarsToFpdb.py | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 801f17d6..24cf3bb7 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -135,8 +135,10 @@ class PokerStars(HandHistoryConverter): info = {} m = self.re_GameInfo.search(handText) if not m: - print "DEBUG: determineGameType(): did not match" - return None + tmp = handText[0:100] + log.error("determineGameType: Unable to recognise gametype from: '%s'" % tmp) + log.error("determineGameType: Raising FpdbParseError") + raise FpdbParseError mg = m.groupdict() # translations from captured groups to fpdb info strings @@ -154,7 +156,7 @@ class PokerStars(HandHistoryConverter): 'Omaha' : ('hold','omahahi'), 'Omaha Hi/Lo' : ('hold','omahahilo'), 'Razz' : ('stud','razz'), - 'RAZZ' : ('stud','razz'), + 'RAZZ' : ('stud','razz'), '7 Card Stud' : ('stud','studhi'), '7 Card Stud Hi/Lo' : ('stud','studhilo'), 'Badugi' : ('draw','badugi'), @@ -183,8 +185,13 @@ class PokerStars(HandHistoryConverter): info['type'] = 'tour' if info['limitType'] == 'fl' and info['bb'] is not None and info['type'] == 'ring' and info['base'] != 'stud': - info['sb'] = Lim_Blinds[mg['BB']][0] - info['bb'] = Lim_Blinds[mg['BB']][1] + try: + info['sb'] = Lim_Blinds[mg['BB']][0] + info['bb'] = Lim_Blinds[mg['BB']][1] + except KeyError: + log.error("determineGameType: Lim_Blinds has no lookup for '%s'" % mg['BB']) + log.error("determineGameType: Raising FpdbParseError") + raise FpdbParseError # NB: SB, BB must be interpreted as blinds or bets depending on limit type. return info From 5aadf643be07b1fc12887181a0128265508e91d9 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 23 Apr 2010 00:36:12 +0800 Subject: [PATCH 010/253] Add '2' to the Lim_Blinds lookup table Fixes Dogs import issue. --- pyfpdb/PokerStarsToFpdb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 24cf3bb7..75cf3cbb 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -144,6 +144,7 @@ class PokerStars(HandHistoryConverter): # translations from captured groups to fpdb info strings Lim_Blinds = { '0.04': ('0.01', '0.02'), '0.10': ('0.02', '0.05'), '0.20': ('0.05', '0.10'), '0.50': ('0.10', '0.25'), '1.00': ('0.25', '0.50'), '2.00': ('0.50', '1.00'), + '2': ('0.50', '1.00'), '4.00': ('1.00', '2.00'), '6.00': ('1.00', '3.00'), '10.00': ('2.00', '5.00'), '20.00': ('5.00', '10.00'), '30.00': ('10.00', '15.00'), '60.00': ('15.00', '30.00'), '100.00': ('25.00', '50.00'),'200.00': ('50.00', '100.00'),'400.00': ('100.00', '200.00'), From c0ebc4b7cf4a039418e9eb0f5e6425312d1e3886 Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 22 Apr 2010 23:22:28 +0800 Subject: [PATCH 011/253] Update to Session viewer Fix a couple of crashers - Make sure last session in list is displayed correctly - Actually calculate hands/hour (Thanks Socratic) - Make graph display the correct number of sessions --- pyfpdb/GuiSessionViewer.py | 62 +++++++++++++++++++++++++++++--------- 1 file changed, 47 insertions(+), 15 deletions(-) diff --git a/pyfpdb/GuiSessionViewer.py b/pyfpdb/GuiSessionViewer.py index b5ca0867..d11f83d8 100755 --- a/pyfpdb/GuiSessionViewer.py +++ b/pyfpdb/GuiSessionViewer.py @@ -184,7 +184,7 @@ class GuiSessionViewer (threading.Thread): sitenos.append(siteids[site]) _q = self.sql.query['getPlayerId'] _name = Charset.to_utf8(heroes[site]) - print 'DEBUG(_name) :: %s' % _name + #print 'DEBUG(_name) :: %s' % _name self.cursor.execute(_q, (_name,)) # arg = tuple result = self.db.cursor.fetchall() if len(result) == 1: @@ -262,13 +262,20 @@ class GuiSessionViewer (threading.Thread): times = map(lambda x:long(x[0]), hands) handids = map(lambda x:int(x[1]), hands) winnings = map(lambda x:float(x[4]), hands) - print "DEBUG: len(times) %s" %(len(times)) + #print "DEBUG: len(times) %s" %(len(times)) diffs = diff(times) # This array is the difference in starttime between consecutive hands index = nonzero(diff(times) > THRESHOLD) # This array represents the indexes into 'times' for start/end times of sessions # ie. times[index[0][0]] is the end of the first session #print "DEBUG: len(index[0]) %s" %(len(index[0])) - #print "DEBUG: index %s" %(index) - #print "DEBUG: index[0][0] %s" %(index[0][0]) + if len(index[0]) > 0: + #print "DEBUG: index[0][0] %s" %(index[0][0]) + #print "DEBUG: index %s" %(index) + pass + else: + index = [[0]] + #print "DEBUG: index %s" %(index) + #print "DEBUG: index[0][0] %s" %(index[0][0]) + pass total = 0 last_idx = 0 @@ -281,27 +288,57 @@ class GuiSessionViewer (threading.Thread): results = [] cum_sum = cumsum(winnings) cum_sum = cum_sum/100 + sid = 0 # Take all results and format them into a list for feeding into gui model. for i in range(len(index[0])): - sid = i # Session id hds = index[0][i] - last_idx # Number of hands in session if hds > 0: stime = strftime("%d/%m/%Y %H:%M", localtime(times[last_idx])) # Formatted start time etime = strftime("%d/%m/%Y %H:%M", localtime(times[index[0][i]])) # Formatted end time - hph = (times[index[0][i]] - times[last_idx])/60 # Hands per hour + minutesplayed = (times[index[0][i]] - times[last_idx])/60 + if minutesplayed == 0: + minutesplayed = 1 + hph = hds*60/minutesplayed # Hands per hour won = sum(winnings[last_idx:index[0][i]])/100.0 hwm = max(cum_sum[last_idx:index[0][i]]) lwm = min(cum_sum[last_idx:index[0][i]]) - #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s)" %(last_idx, index[0][i], hwm, lwm) + open = (sum(winnings[:last_idx]))/100 + close = (sum(winnings[:index[0][i]]))/100 + #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(last_idx, index[0][i], lwm, hwm, open, close) results.append([sid, hds, stime, etime, hph, won]) - opens.append((sum(winnings[:last_idx]))/100) - closes.append((sum(winnings[:index[0][i]]))/100) + opens.append(open) + closes.append(close) highs.append(hwm) lows.append(lwm) - #print "Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) + #print "DEBUG: Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) total = total + (index[0][i] - last_idx) last_idx = index[0][i] + 1 + sid = sid+1 + else: + print "hds <= 0" + + #The last session is between times[last_idx:-1] + hds = len(times) - last_idx + stime = strftime("%d/%m/%Y %H:%M", localtime(times[last_idx])) # Formatted start time + etime = strftime("%d/%m/%Y %H:%M", localtime(times[index[0][-1]])) # Formatted end time + minutesplayed = (times[-1] - times[last_idx])/60 + if minutesplayed == 0: + minutesplayed = 1 + hph = hds*60/minutesplayed # Hands per hour + won = sum(winnings[last_idx:-1])/100.0 + hwm = max(cum_sum[last_idx:-1]) + lwm = min(cum_sum[last_idx:-1]) + open = (sum(winnings[:last_idx]))/100 + close = (sum(winnings[:-1]))/100 + #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(last_idx, index[0][i], lwm, hwm, open, close) + + results.append([sid, hds, stime, etime, hph, won]) + opens.append(open) + closes.append(close) + highs.append(hwm) + lows.append(lwm) + #print "Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) return (results, opens, closes, highs, lows) @@ -330,11 +367,6 @@ class GuiSessionViewer (threading.Thread): def generateGraph(self, opens, closes, highs, lows): self.clearGraphData() - #FIXME: Weird - first data entry is crashing this for me - opens = opens[1:] - closes = closes[1:] - highs = highs[1:] - lows = lows[1:] # print "DEBUG:" # print "highs = %s" % highs # print "lows = %s" % lows From d11623c7364b8b7ed06cfd0e1b790093668ebcc0 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 23 Apr 2010 11:39:52 +0800 Subject: [PATCH 012/253] Update Session viewer based on Socratic comments --- pyfpdb/GuiSessionViewer.py | 61 ++++++++++++++------------------------ 1 file changed, 22 insertions(+), 39 deletions(-) diff --git a/pyfpdb/GuiSessionViewer.py b/pyfpdb/GuiSessionViewer.py index d11f83d8..b4f14d95 100755 --- a/pyfpdb/GuiSessionViewer.py +++ b/pyfpdb/GuiSessionViewer.py @@ -33,7 +33,7 @@ try: from matplotlib.backends.backend_gtkagg import NavigationToolbar2GTKAgg as NavigationToolbar from matplotlib.finance import candlestick2 - from numpy import diff, nonzero, sum, cumsum, max, min + from numpy import diff, nonzero, sum, cumsum, max, min, append # from matplotlib.dates import DateFormatter, WeekdayLocator, HourLocator, \ # DayLocator, MONDAY, timezone @@ -241,6 +241,9 @@ class GuiSessionViewer (threading.Thread): #end def fillStatsFrame(self, vbox): def generateDatasets(self, playerids, sitenos, limits, seats): + THRESHOLD = 1800 # Minimum number of seconds between consecutive hands before being considered a new session + PADDING = 5 # Additional time in minutes to add to a session, session startup, shutdown etc (FiXME: user configurable) + # Get a list of all handids and their timestampts #FIXME: Query still need to filter on blind levels @@ -255,7 +258,6 @@ class GuiSessionViewer (threading.Thread): q = q.replace("", "%s") self.db.cursor.execute(q) - THRESHOLD = 1800 hands = self.db.cursor.fetchall() # Take that list and create an array of the time between hands @@ -263,9 +265,11 @@ class GuiSessionViewer (threading.Thread): handids = map(lambda x:int(x[1]), hands) winnings = map(lambda x:float(x[4]), hands) #print "DEBUG: len(times) %s" %(len(times)) - diffs = diff(times) # This array is the difference in starttime between consecutive hands - index = nonzero(diff(times) > THRESHOLD) # This array represents the indexes into 'times' for start/end times of sessions - # ie. times[index[0][0]] is the end of the first session + diffs = diff(times) # This array is the difference in starttime between consecutive hands + diffs2 = append(diffs,THRESHOLD + 1) # Append an additional session to the end of the diffs, so the next line + # includes an index into the last 'session' + index = nonzero(diffs2 > THRESHOLD) # This array represents the indexes into 'times' for start/end times of sessions + # times[index[0][0]] is the end of the first session, #print "DEBUG: len(index[0]) %s" %(len(index[0])) if len(index[0]) > 0: #print "DEBUG: index[0][0] %s" %(index[0][0]) @@ -278,7 +282,7 @@ class GuiSessionViewer (threading.Thread): pass total = 0 - last_idx = 0 + first_idx = 0 lowidx = 0 uppidx = 0 opens = [] @@ -288,23 +292,24 @@ class GuiSessionViewer (threading.Thread): results = [] cum_sum = cumsum(winnings) cum_sum = cum_sum/100 - sid = 0 + sid = 1 # Take all results and format them into a list for feeding into gui model. for i in range(len(index[0])): - hds = index[0][i] - last_idx # Number of hands in session + hds = index[0][i] - first_idx + 1 # Number of hands in session if hds > 0: - stime = strftime("%d/%m/%Y %H:%M", localtime(times[last_idx])) # Formatted start time + stime = strftime("%d/%m/%Y %H:%M", localtime(times[first_idx])) # Formatted start time etime = strftime("%d/%m/%Y %H:%M", localtime(times[index[0][i]])) # Formatted end time - minutesplayed = (times[index[0][i]] - times[last_idx])/60 + minutesplayed = (times[index[0][i]] - times[first_idx])/60 if minutesplayed == 0: minutesplayed = 1 + minutesplayed = minutesplayed + PADDING hph = hds*60/minutesplayed # Hands per hour - won = sum(winnings[last_idx:index[0][i]])/100.0 - hwm = max(cum_sum[last_idx:index[0][i]]) - lwm = min(cum_sum[last_idx:index[0][i]]) - open = (sum(winnings[:last_idx]))/100 + won = sum(winnings[first_idx:index[0][i]])/100.0 + hwm = max(cum_sum[first_idx:index[0][i]]) + lwm = min(cum_sum[first_idx:index[0][i]]) + open = (sum(winnings[:first_idx]))/100 close = (sum(winnings[:index[0][i]]))/100 - #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(last_idx, index[0][i], lwm, hwm, open, close) + #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(first_idx, index[0][i], lwm, hwm, open, close) results.append([sid, hds, stime, etime, hph, won]) opens.append(open) @@ -312,34 +317,12 @@ class GuiSessionViewer (threading.Thread): highs.append(hwm) lows.append(lwm) #print "DEBUG: Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) - total = total + (index[0][i] - last_idx) - last_idx = index[0][i] + 1 + total = total + (index[0][i] - first_idx) + first_idx = index[0][i] + 1 sid = sid+1 else: print "hds <= 0" - #The last session is between times[last_idx:-1] - hds = len(times) - last_idx - stime = strftime("%d/%m/%Y %H:%M", localtime(times[last_idx])) # Formatted start time - etime = strftime("%d/%m/%Y %H:%M", localtime(times[index[0][-1]])) # Formatted end time - minutesplayed = (times[-1] - times[last_idx])/60 - if minutesplayed == 0: - minutesplayed = 1 - hph = hds*60/minutesplayed # Hands per hour - won = sum(winnings[last_idx:-1])/100.0 - hwm = max(cum_sum[last_idx:-1]) - lwm = min(cum_sum[last_idx:-1]) - open = (sum(winnings[:last_idx]))/100 - close = (sum(winnings[:-1]))/100 - #print "DEBUG: range: (%s, %s) - (min, max): (%s, %s) - (open,close): (%s, %s)" %(last_idx, index[0][i], lwm, hwm, open, close) - - results.append([sid, hds, stime, etime, hph, won]) - opens.append(open) - closes.append(close) - highs.append(hwm) - lows.append(lwm) - #print "Hands in session %4s: %4s Start: %s End: %s HPH: %s Profit: %s" %(sid, hds, stime, etime, hph, won) - return (results, opens, closes, highs, lows) def clearGraphData(self): From c871d7fc2fbe15bb7347be6bf685fab96b54ba46 Mon Sep 17 00:00:00 2001 From: gimick Date: Thu, 15 Apr 2010 23:16:26 +0100 Subject: [PATCH 013/253] gimick - Do not set CBChance if there has been a donkbet --- pyfpdb/DerivedStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 4e55cdfc..f5278b99 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -368,8 +368,8 @@ class DerivedStats(): name = self.lastBetOrRaiser(hand.actionStreets[i+1]) if name: chance = self.noBetsBefore(hand.actionStreets[i+2], name) - self.handsplayers[name]['street%dCBChance' % (i+1)] = True if chance == True: + self.handsplayers[name]['street%dCBChance' % (i+1)] = True self.handsplayers[name]['street%dCBDone' % (i+1)] = self.betStreet(hand.actionStreets[i+2], name) def calcCheckCallRaise(self, hand): From 6e603149267822b07259d84ffa6c52c0590c8e53 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 23 Apr 2010 11:49:57 +0800 Subject: [PATCH 014/253] First part of making FTP archive files work --- pyfpdb/HandHistoryConverter.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 2053eba9..5b65b955 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -62,7 +62,7 @@ class HandHistoryConverter(): codepage = "cp1252" - def __init__(self, config, in_path = '-', out_path = '-', follow=False, index=0, autostart=True, starsArchive=False): + def __init__(self, config, in_path = '-', out_path = '-', follow=False, index=0, autostart=True, starsArchive=False, ftpArchive=False): """\ in_path (default '-' = sys.stdin) out_path (default '-' = sys.stdout) @@ -75,6 +75,7 @@ follow : whether to tail -f the input""" self.index = index self.starsArchive = starsArchive + self.ftpArchive = ftpArchive self.in_path = in_path self.out_path = out_path @@ -247,6 +248,11 @@ which it expects to find at self.re_TailSplitHands -- see for e.g. Everleaf.py. m = re.compile('^Hand #\d+', re.MULTILINE) self.obs = m.sub('', self.obs) + if self.ftpArchive == True: + log.debug("Converting ftpArchive format to readable") + m = re.compile('^\*\*\*\*\*\*+\s#\s\d+\s\*\*\*\*\*+$', re.MULTILINE) + self.obs = m.sub('', self.obs) + if self.obs is None or self.obs == "": log.info("Read no hands.") return [] From 9ac46c8c92c1c135e9741bc8812d39f0dd51eb52 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 23 Apr 2010 17:09:08 +0800 Subject: [PATCH 015/253] Add to Stars limit lookup table. --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 75cf3cbb..c964faa5 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -144,7 +144,7 @@ class PokerStars(HandHistoryConverter): # translations from captured groups to fpdb info strings Lim_Blinds = { '0.04': ('0.01', '0.02'), '0.10': ('0.02', '0.05'), '0.20': ('0.05', '0.10'), '0.50': ('0.10', '0.25'), '1.00': ('0.25', '0.50'), '2.00': ('0.50', '1.00'), - '2': ('0.50', '1.00'), + '2': ('0.50', '1.00'), '4': ('1.00', '2.00'), '6': ('1.00', '3.00'), '4.00': ('1.00', '2.00'), '6.00': ('1.00', '3.00'), '10.00': ('2.00', '5.00'), '20.00': ('5.00', '10.00'), '30.00': ('10.00', '15.00'), '60.00': ('15.00', '30.00'), '100.00': ('25.00', '50.00'),'200.00': ('50.00', '100.00'),'400.00': ('100.00', '200.00'), From 2503cd1b6c461f4ad6bbbe8e86175ce41403e0d3 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 13 May 2010 06:57:59 +0300 Subject: [PATCH 016/253] Fix what looks like a thinko The stat 'fold_f' probably should do a "float(foo)/float(bar)" division because there is no function called "fold" --- pyfpdb/Stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 47d8b9f1..264ebd18 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -277,7 +277,7 @@ def fold_f(stat_dict, player): """ Folded flop/4th.""" stat = 0.0 try: - stat = float(stat_dict[player]['fold_2'])/fold(stat_dict[player]['saw_f']) + stat = float(stat_dict[player]['fold_2'])/float(stat_dict[player]['saw_f']) return (stat, '%3.1f' % (100*stat) + '%', 'ff=%3.1f' % (100*stat) + '%', From b482148d2a78f1fccf52f358fc6353d10bc51aca Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Mon, 24 May 2010 09:26:19 +0300 Subject: [PATCH 017/253] Kill trailing whitespace --- pyfpdb/Stats.py | 316 ++++++++++++++++++++++++------------------------ 1 file changed, 158 insertions(+), 158 deletions(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 264ebd18..424719ee 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -117,17 +117,17 @@ def vpip(stat_dict, player): stat = 0.0 try: stat = float(stat_dict[player]['vpip'])/float(stat_dict[player]['n']) - return (stat, - '%3.1f' % (100*stat) + '%', - 'v=%3.1f' % (100*stat) + '%', - 'vpip=%3.1f' % (100*stat) + '%', + return (stat, + '%3.1f' % (100*stat) + '%', + 'v=%3.1f' % (100*stat) + '%', + 'vpip=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['vpip'], stat_dict[player]['n']), 'Voluntarily Put In Pot %' ) - except: return (stat, - '%3.1f' % (0) + '%', - 'v=%3.1f' % (0) + '%', - 'vpip=%3.1f' % (0) + '%', + except: return (stat, + '%3.1f' % (0) + '%', + 'v=%3.1f' % (0) + '%', + 'vpip=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'Voluntarily Put In Pot %' ) @@ -137,18 +137,18 @@ def pfr(stat_dict, player): stat = 0.0 try: stat = float(stat_dict[player]['pfr'])/float(stat_dict[player]['n']) - return (stat, - '%3.1f' % (100*stat) + '%', - 'p=%3.1f' % (100*stat) + '%', - 'pfr=%3.1f' % (100*stat) + '%', + return (stat, + '%3.1f' % (100*stat) + '%', + 'p=%3.1f' % (100*stat) + '%', + 'pfr=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['pfr'], stat_dict[player]['n']), 'Pre-Flop Raise %' ) except: - return (stat, - '%3.1f' % (0) + '%', - 'p=%3.1f' % (0) + '%', - 'pfr=%3.1f' % (0) + '%', + return (stat, + '%3.1f' % (0) + '%', + 'p=%3.1f' % (0) + '%', + 'pfr=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'Pre-Flop Raise %' ) @@ -158,18 +158,18 @@ def wtsd(stat_dict, player): stat = 0.0 try: stat = float(stat_dict[player]['sd'])/float(stat_dict[player]['saw_f']) - return (stat, - '%3.1f' % (100*stat) + '%', - 'w=%3.1f' % (100*stat) + '%', - 'wtsd=%3.1f' % (100*stat) + '%', + return (stat, + '%3.1f' % (100*stat) + '%', + 'w=%3.1f' % (100*stat) + '%', + 'wtsd=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['sd'], stat_dict[player]['saw_f']), '% went to showdown' ) except: - return (stat, - '%3.1f' % (0) + '%', - 'w=%3.1f' % (0) + '%', - 'wtsd=%3.1f' % (0) + '%', + return (stat, + '%3.1f' % (0) + '%', + 'w=%3.1f' % (0) + '%', + 'wtsd=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% went to showdown' ) @@ -179,18 +179,18 @@ def wmsd(stat_dict, player): stat = 0.0 try: stat = float(stat_dict[player]['wmsd'])/float(stat_dict[player]['sd']) - return (stat, - '%3.1f' % (100*stat) + '%', - 'w=%3.1f' % (100*stat) + '%', - 'wmsd=%3.1f' % (100*stat) + '%', + return (stat, + '%3.1f' % (100*stat) + '%', + 'w=%3.1f' % (100*stat) + '%', + 'wmsd=%3.1f' % (100*stat) + '%', '(%5.1f/%d)' % (float(stat_dict[player]['wmsd']), stat_dict[player]['sd']), '% won money at showdown' ) except: - return (stat, - '%3.1f' % (0) + '%', - 'w=%3.1f' % (0) + '%', - 'wmsd=%3.1f' % (0) + '%', + return (stat, + '%3.1f' % (0) + '%', + 'w=%3.1f' % (0) + '%', + 'wmsd=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% won money at showdown' ) @@ -200,18 +200,18 @@ def profit100(stat_dict, player): stat = 0.0 try: stat = float(stat_dict[player]['net'])/float(stat_dict[player]['n']) - return (stat, - '%.0f' % (100.0*stat), - 'p=%.0f' % (100.0*stat), + return (stat, + '%.0f' % (100.0*stat), + 'p=%.0f' % (100.0*stat), 'p/100=%.0f' % (100.0*stat), '%d/%d' % (stat_dict[player]['net'], stat_dict[player]['n']), 'profit/100hands' ) except: print "exception calcing p/100: 100 * %d / %d" % (stat_dict[player]['net'], stat_dict[player]['n']) - return (stat, - '%.0f' % (0), - 'p=%.0f' % (0), + return (stat, + '%.0f' % (0), + 'p=%.0f' % (0), 'p/100=%.0f' % (0), '(%d/%d)' % (0, 0), 'profit/100hands' @@ -223,10 +223,10 @@ def saw_f(stat_dict, player): num = float(stat_dict[player]['saw_f']) den = float(stat_dict[player]['n']) stat = num/den - return (stat, - '%3.1f' % (100*stat) + '%', - 'sf=%3.1f' % (100*stat) + '%', - 'saw_f=%3.1f' % (100*stat) + '%', + return (stat, + '%3.1f' % (100*stat) + '%', + 'sf=%3.1f' % (100*stat) + '%', + 'saw_f=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['saw_f'], stat_dict[player]['n']), 'Flop Seen %' ) @@ -234,10 +234,10 @@ def saw_f(stat_dict, player): stat = 0.0 num = 0 den = 0 - return (stat, - '%3.1f' % (stat) + '%', - 'sf=%3.1f' % (stat) + '%', - 'saw_f=%3.1f' % (stat) + '%', + return (stat, + '%3.1f' % (stat) + '%', + 'sf=%3.1f' % (stat) + '%', + 'saw_f=%3.1f' % (stat) + '%', '(%d/%d)' % (num, den), 'Flop Seen %' ) @@ -257,18 +257,18 @@ def n(stat_dict, player): k += 1 d = 0 fmt = '%d.%dk' % (k, d) - return (stat_dict[player]['n'], + return (stat_dict[player]['n'], '%s' % fmt, - 'n=%d' % (stat_dict[player]['n']), - 'n=%d' % (stat_dict[player]['n']), + 'n=%d' % (stat_dict[player]['n']), + 'n=%d' % (stat_dict[player]['n']), '(%d)' % (stat_dict[player]['n']), 'number hands seen' ) except: - return (0, - '%d' % (0), - 'n=%d' % (0), - 'n=%d' % (0), + return (0, + '%d' % (0), + 'n=%d' % (0), + 'n=%d' % (0), '(%d)' % (0), 'number hands seen' ) @@ -279,17 +279,17 @@ def fold_f(stat_dict, player): try: stat = float(stat_dict[player]['fold_2'])/float(stat_dict[player]['saw_f']) return (stat, - '%3.1f' % (100*stat) + '%', - 'ff=%3.1f' % (100*stat) + '%', - 'fold_f=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'ff=%3.1f' % (100*stat) + '%', + 'fold_f=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['fold_2'], stat_dict[player]['saw_f']), 'folded flop/4th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'ff=%3.1f' % (0) + '%', - 'fold_f=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'ff=%3.1f' % (0) + '%', + 'fold_f=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'folded flop/4th' ) @@ -300,9 +300,9 @@ def steal(stat_dict, player): try: stat = float(stat_dict[player]['steal'])/float(stat_dict[player]['steal_opp']) return (stat, - '%3.1f' % (100*stat) + '%', - 'st=%3.1f' % (100*stat) + '%', - 'steal=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'st=%3.1f' % (100*stat) + '%', + 'steal=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['steal'], stat_dict[player]['steal_opp']), '% steal attempted' ) @@ -315,9 +315,9 @@ def f_SB_steal(stat_dict, player): try: stat = float(stat_dict[player]['sbnotdef'])/float(stat_dict[player]['sbstolen']) return (stat, - '%3.1f' % (100*stat) + '%', - 'fSB=%3.1f' % (100*stat) + '%', - 'fSB_s=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'fSB=%3.1f' % (100*stat) + '%', + 'fSB_s=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['sbnotdef'], stat_dict[player]['sbstolen']), '% folded SB to steal' ) @@ -335,9 +335,9 @@ def f_BB_steal(stat_dict, player): try: stat = float(stat_dict[player]['bbnotdef'])/float(stat_dict[player]['bbstolen']) return (stat, - '%3.1f' % (100*stat) + '%', - 'fBB=%3.1f' % (100*stat) + '%', - 'fBB_s=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'fBB=%3.1f' % (100*stat) + '%', + 'fBB_s=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['bbnotdef'], stat_dict[player]['bbstolen']), '% folded BB to steal' ) @@ -355,17 +355,17 @@ def three_B(stat_dict, player): try: stat = float(stat_dict[player]['tb_0'])/float(stat_dict[player]['tb_opp_0']) return (stat, - '%3.1f' % (100*stat) + '%', - '3B=%3.1f' % (100*stat) + '%', - '3B_pf=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + '3B=%3.1f' % (100*stat) + '%', + '3B_pf=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['tb_0'], stat_dict[player]['tb_opp_0']), '% 3/4 Bet preflop/3rd' ) except: return (stat, - '%3.1f' % (0) + '%', - '3B=%3.1f' % (0) + '%', - '3B_pf=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + '3B=%3.1f' % (0) + '%', + '3B_pf=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% 3/4 Bet preflop/3rd' ) @@ -376,17 +376,17 @@ def WMsF(stat_dict, player): try: stat = float(stat_dict[player]['w_w_s_1'])/float(stat_dict[player]['saw_1']) return (stat, - '%3.1f' % (100*stat) + '%', - 'wf=%3.1f' % (100*stat) + '%', - 'w_w_f=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'wf=%3.1f' % (100*stat) + '%', + 'w_w_f=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['w_w_s_1'], stat_dict[player]['saw_f']), '% won$/saw flop/4th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'wf=%3.1f' % (0) + '%', - 'w_w_f=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'wf=%3.1f' % (0) + '%', + 'w_w_f=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% won$/saw flop/4th' ) @@ -397,17 +397,17 @@ def a_freq1(stat_dict, player): try: stat = float(stat_dict[player]['aggr_1'])/float(stat_dict[player]['saw_f']) return (stat, - '%3.1f' % (100*stat) + '%', - 'a1=%3.1f' % (100*stat) + '%', - 'a_fq_1=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'a1=%3.1f' % (100*stat) + '%', + 'a_fq_1=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['aggr_1'], stat_dict[player]['saw_f']), 'Aggression Freq flop/4th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'a1=%3.1f' % (0) + '%', - 'a_fq_1=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'a1=%3.1f' % (0) + '%', + 'a_fq_1=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'Aggression Freq flop/4th' ) @@ -418,17 +418,17 @@ def a_freq2(stat_dict, player): try: stat = float(stat_dict[player]['aggr_2'])/float(stat_dict[player]['saw_2']) return (stat, - '%3.1f' % (100*stat) + '%', - 'a2=%3.1f' % (100*stat) + '%', - 'a_fq_2=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'a2=%3.1f' % (100*stat) + '%', + 'a_fq_2=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['aggr_2'], stat_dict[player]['saw_2']), 'Aggression Freq turn/5th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'a2=%3.1f' % (0) + '%', - 'a_fq_2=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'a2=%3.1f' % (0) + '%', + 'a_fq_2=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'Aggression Freq turn/5th' ) @@ -439,17 +439,17 @@ def a_freq3(stat_dict, player): try: stat = float(stat_dict[player]['aggr_3'])/float(stat_dict[player]['saw_3']) return (stat, - '%3.1f' % (100*stat) + '%', - 'a3=%3.1f' % (100*stat) + '%', - 'a_fq_3=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'a3=%3.1f' % (100*stat) + '%', + 'a_fq_3=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['aggr_3'], stat_dict[player]['saw_3']), 'Aggression Freq river/6th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'a3=%3.1f' % (0) + '%', - 'a_fq_3=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'a3=%3.1f' % (0) + '%', + 'a_fq_3=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'Aggression Freq river/6th' ) @@ -460,17 +460,17 @@ def a_freq4(stat_dict, player): try: stat = float(stat_dict[player]['aggr_4'])/float(stat_dict[player]['saw_4']) return (stat, - '%3.1f' % (100*stat) + '%', - 'a4=%3.1f' % (100*stat) + '%', - 'a_fq_4=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'a4=%3.1f' % (100*stat) + '%', + 'a_fq_4=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['aggr_4'], stat_dict[player]['saw_4']), 'Aggression Freq 7th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'a4=%3.1f' % (0) + '%', - 'a_fq_4=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'a4=%3.1f' % (0) + '%', + 'a_fq_4=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), 'Aggression Freq 7th' ) @@ -482,9 +482,9 @@ def a_freq_123(stat_dict, player): stat = float( stat_dict[player]['aggr_1'] + stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] ) / float( stat_dict[player]['saw_1'] + stat_dict[player]['saw_2'] + stat_dict[player]['saw_3']); return (stat, - '%3.1f' % (100*stat) + '%', - 'afq=%3.1f' % (100*stat) + '%', - 'postf_aggfq=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'afq=%3.1f' % (100*stat) + '%', + 'postf_aggfq=%3.1f' % (100*stat) + '%', '(%d/%d)' % ( stat_dict[player]['aggr_1'] + stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] @@ -496,9 +496,9 @@ def a_freq_123(stat_dict, player): ) except: return (stat, - '%2.0f' % (0) + '%', - 'a3=%2.0f' % (0) + '%', - 'a_fq_3=%2.0f' % (0) + '%', + '%2.0f' % (0) + '%', + 'a3=%2.0f' % (0) + '%', + 'a_fq_3=%2.0f' % (0) + '%', '(%d/%d)' % (0, 0), 'Post-Flop Aggression Freq' ) @@ -509,17 +509,17 @@ def cb1(stat_dict, player): try: stat = float(stat_dict[player]['cb_1'])/float(stat_dict[player]['cb_opp_1']) return (stat, - '%3.1f' % (100*stat) + '%', - 'cb1=%3.1f' % (100*stat) + '%', - 'cb_1=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'cb1=%3.1f' % (100*stat) + '%', + 'cb_1=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['cb_1'], stat_dict[player]['cb_opp_1']), '% continuation bet flop/4th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'cb1=%3.1f' % (0) + '%', - 'cb_1=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'cb1=%3.1f' % (0) + '%', + 'cb_1=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% continuation bet flop/4th' ) @@ -530,17 +530,17 @@ def cb2(stat_dict, player): try: stat = float(stat_dict[player]['cb_2'])/float(stat_dict[player]['cb_opp_2']) return (stat, - '%3.1f' % (100*stat) + '%', - 'cb2=%3.1f' % (100*stat) + '%', - 'cb_2=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'cb2=%3.1f' % (100*stat) + '%', + 'cb_2=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['cb_2'], stat_dict[player]['cb_opp_2']), '% continuation bet turn/5th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'cb2=%3.1f' % (0) + '%', - 'cb_2=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'cb2=%3.1f' % (0) + '%', + 'cb_2=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% continuation bet turn/5th' ) @@ -551,17 +551,17 @@ def cb3(stat_dict, player): try: stat = float(stat_dict[player]['cb_3'])/float(stat_dict[player]['cb_opp_3']) return (stat, - '%3.1f' % (100*stat) + '%', - 'cb3=%3.1f' % (100*stat) + '%', - 'cb_3=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'cb3=%3.1f' % (100*stat) + '%', + 'cb_3=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['cb_3'], stat_dict[player]['cb_opp_3']), '% continuation bet river/6th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'cb3=%3.1f' % (0) + '%', - 'cb_3=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'cb3=%3.1f' % (0) + '%', + 'cb_3=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% continuation bet river/6th' ) @@ -572,17 +572,17 @@ def cb4(stat_dict, player): try: stat = float(stat_dict[player]['cb_4'])/float(stat_dict[player]['cb_opp_4']) return (stat, - '%3.1f' % (100*stat) + '%', - 'cb4=%3.1f' % (100*stat) + '%', - 'cb_4=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'cb4=%3.1f' % (100*stat) + '%', + 'cb_4=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['cb_4'], stat_dict[player]['cb_opp_4']), '% continuation bet 7th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'cb4=%3.1f' % (0) + '%', - 'cb_4=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'cb4=%3.1f' % (0) + '%', + 'cb_4=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% continuation bet 7th' ) @@ -593,17 +593,17 @@ def ffreq1(stat_dict, player): try: stat = float(stat_dict[player]['f_freq_1'])/float(stat_dict[player]['was_raised_1']) return (stat, - '%3.1f' % (100*stat) + '%', - 'ff1=%3.1f' % (100*stat) + '%', - 'ff_1=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'ff1=%3.1f' % (100*stat) + '%', + 'ff_1=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['f_freq_1'], stat_dict[player]['was_raised_1']), '% fold frequency flop/4th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'ff1=%3.1f' % (0) + '%', - 'ff_1=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'ff1=%3.1f' % (0) + '%', + 'ff_1=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% fold frequency flop/4th' ) @@ -614,17 +614,17 @@ def ffreq2(stat_dict, player): try: stat = float(stat_dict[player]['f_freq_2'])/float(stat_dict[player]['was_raised_2']) return (stat, - '%3.1f' % (100*stat) + '%', - 'ff2=%3.1f' % (100*stat) + '%', - 'ff_2=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'ff2=%3.1f' % (100*stat) + '%', + 'ff_2=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['f_freq_2'], stat_dict[player]['was_raised_2']), '% fold frequency turn/5th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'ff2=%3.1f' % (0) + '%', - 'ff_2=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'ff2=%3.1f' % (0) + '%', + 'ff_2=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% fold frequency turn/5th' ) @@ -635,17 +635,17 @@ def ffreq3(stat_dict, player): try: stat = float(stat_dict[player]['f_freq_3'])/float(stat_dict[player]['was_raised_3']) return (stat, - '%3.1f' % (100*stat) + '%', - 'ff3=%3.1f' % (100*stat) + '%', - 'ff_3=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'ff3=%3.1f' % (100*stat) + '%', + 'ff_3=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['f_freq_3'], stat_dict[player]['was_raised_3']), '% fold frequency river/6th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'ff3=%3.1f' % (0) + '%', - 'ff_3=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'ff3=%3.1f' % (0) + '%', + 'ff_3=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% fold frequency river/6th' ) @@ -656,17 +656,17 @@ def ffreq4(stat_dict, player): try: stat = float(stat_dict[player]['f_freq_4'])/float(stat_dict[player]['was_raised_4']) return (stat, - '%3.1f' % (100*stat) + '%', - 'ff4=%3.1f' % (100*stat) + '%', - 'ff_4=%3.1f' % (100*stat) + '%', + '%3.1f' % (100*stat) + '%', + 'ff4=%3.1f' % (100*stat) + '%', + 'ff_4=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['f_freq_4'], stat_dict[player]['was_raised_4']), '% fold frequency 7th' ) except: return (stat, - '%3.1f' % (0) + '%', - 'ff4=%3.1f' % (0) + '%', - 'ff_4=%3.1f' % (0) + '%', + '%3.1f' % (0) + '%', + 'ff4=%3.1f' % (0) + '%', + 'ff_4=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), '% fold frequency 7th' ) From 12e89306b5bccdef08aea2ea56101465ba4985fd Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 27 May 2010 22:01:17 +0200 Subject: [PATCH 018/253] dirty but working patch to make it load utf8 files (specifically, FTP) --- pyfpdb/HandHistoryConverter.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 5b65b955..aedd2191 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -98,6 +98,13 @@ follow : whether to tail -f the input""" self.status = True self.parsedObjectType = "HH" #default behaviour : parsing HH files, can be "Summary" if the parsing encounters a Summary File + + found=False + for item in self.codepage: + if item=="utf-8": + found=True + if not found: + self.codepage.append("utf-8") if autostart: self.start() From 300e5fbbed4fcb195d3175c76b1d7e864db6a3bf Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 28 May 2010 02:31:04 +0200 Subject: [PATCH 019/253] it now records and displays fold stats (not too thoroughly tested) --- pyfpdb/DerivedStats.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index f5278b99..a951d0b7 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -146,6 +146,8 @@ class DerivedStats(): self.aggr(self.hand, i) self.calls(self.hand, i) self.bets(self.hand, i) + if i>0: + self.folds(self.hand, i) # Winnings is a non-negative value of money collected from the pot, which already includes the # rake taken out. hand.collectees is Decimal, database requires cents @@ -408,10 +410,16 @@ class DerivedStats(): def aggr(self, hand, i): aggrers = set() + others = set() # Growl - actionStreets contains 'BLINDSANTES', which isn't actually an action street + + firstAggrMade=False for act in hand.actions[hand.actionStreets[i+1]]: + if firstAggrMade: + others.add(act[0]) if act[1] in ('completes', 'bets', 'raises'): aggrers.add(act[0]) + firstAggrMade=True for player in hand.players: #print "DEBUG: actionStreet[%s]: %s" %(hand.actionStreets[i+1], i) @@ -419,6 +427,11 @@ class DerivedStats(): self.handsplayers[player[1]]['street%sAggr' % i] = True else: self.handsplayers[player[1]]['street%sAggr' % i] = False + + if len(aggrers)>0 and i>0: + for playername in others: + self.handsplayers[playername]['otherRaisedStreet%s' % i] = True + #print "otherRaised detected on handid "+str(hand.handid)+" for "+playername+" on street "+str(i) def calls(self, hand, i): callers = [] @@ -429,11 +442,18 @@ class DerivedStats(): # CG - I'm sure this stat is wrong # Best guess is that raise = 2 bets def bets(self, hand, i): - betters = [] for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('bets'): self.handsplayers[act[0]]['street%sBets' % i] = 1 + self.handsplayers[act[0]]['street%sBets' % i] + + def folds(self, hand, i): + for act in hand.actions[hand.actionStreets[i+1]]: + if act[1] in ('folds'): + if self.handsplayers[act[0]]['otherRaisedStreet%s' % i] == True: + self.handsplayers[act[0]]['foldToOtherRaisedStreet%s' % i] = True + #print "fold detected on handid "+str(hand.handid)+" for "+act[0]+" on street "+str(i) + def countPlayers(self, hand): pass From 30d7f0dc2a95302145c8dc2db8ca9777d2587fea Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 28 May 2010 19:12:02 +0200 Subject: [PATCH 020/253] moved fold stats so that the file no longer indicates that they're not done --- pyfpdb/DerivedStats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index a951d0b7..c33943de 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -67,12 +67,12 @@ class DerivedStats(): self.handsplayers[player[1]]['street%dCBDone' %i] = False self.handsplayers[player[1]]['street%dCheckCallRaiseChance' %i] = False self.handsplayers[player[1]]['street%dCheckCallRaiseDone' %i] = False + self.handsplayers[player[1]]['otherRaisedStreet%d' %i] = False + self.handsplayers[player[1]]['foldToOtherRaisedStreet%d' %i] = False #FIXME - Everything below this point is incomplete. self.handsplayers[player[1]]['tourneyTypeId'] = 1 for i in range(1,5): - self.handsplayers[player[1]]['otherRaisedStreet%d' %i] = False - self.handsplayers[player[1]]['foldToOtherRaisedStreet%d' %i] = False self.handsplayers[player[1]]['foldToStreet%dCBChance' %i] = False self.handsplayers[player[1]]['foldToStreet%dCBDone' %i] = False From c52767ea4171c7b88eba258e91b271845573e868 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 28 May 2010 02:31:04 +0200 Subject: [PATCH 021/253] it now records and displays fold stats (not too thoroughly tested) --- pyfpdb/DerivedStats.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index f5278b99..a951d0b7 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -146,6 +146,8 @@ class DerivedStats(): self.aggr(self.hand, i) self.calls(self.hand, i) self.bets(self.hand, i) + if i>0: + self.folds(self.hand, i) # Winnings is a non-negative value of money collected from the pot, which already includes the # rake taken out. hand.collectees is Decimal, database requires cents @@ -408,10 +410,16 @@ class DerivedStats(): def aggr(self, hand, i): aggrers = set() + others = set() # Growl - actionStreets contains 'BLINDSANTES', which isn't actually an action street + + firstAggrMade=False for act in hand.actions[hand.actionStreets[i+1]]: + if firstAggrMade: + others.add(act[0]) if act[1] in ('completes', 'bets', 'raises'): aggrers.add(act[0]) + firstAggrMade=True for player in hand.players: #print "DEBUG: actionStreet[%s]: %s" %(hand.actionStreets[i+1], i) @@ -419,6 +427,11 @@ class DerivedStats(): self.handsplayers[player[1]]['street%sAggr' % i] = True else: self.handsplayers[player[1]]['street%sAggr' % i] = False + + if len(aggrers)>0 and i>0: + for playername in others: + self.handsplayers[playername]['otherRaisedStreet%s' % i] = True + #print "otherRaised detected on handid "+str(hand.handid)+" for "+playername+" on street "+str(i) def calls(self, hand, i): callers = [] @@ -429,11 +442,18 @@ class DerivedStats(): # CG - I'm sure this stat is wrong # Best guess is that raise = 2 bets def bets(self, hand, i): - betters = [] for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('bets'): self.handsplayers[act[0]]['street%sBets' % i] = 1 + self.handsplayers[act[0]]['street%sBets' % i] + + def folds(self, hand, i): + for act in hand.actions[hand.actionStreets[i+1]]: + if act[1] in ('folds'): + if self.handsplayers[act[0]]['otherRaisedStreet%s' % i] == True: + self.handsplayers[act[0]]['foldToOtherRaisedStreet%s' % i] = True + #print "fold detected on handid "+str(hand.handid)+" for "+act[0]+" on street "+str(i) + def countPlayers(self, hand): pass From 994f0fdcccb28200f7b6b185d70f57005ed73ae6 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 03:02:07 +0800 Subject: [PATCH 022/253] Modify recent patch from Steffen adding fold stats - Remove added whitespace - Reformatted debug strings in preferred printf style (and starting with DEBUG:) - Swapped len(aggrers)>0 and i>0 for short circuit evaluation, and reformatted spacing for consistent coding style -- (NOTE: for NLHE this will definitely be faster as less hands go to flop - may be slower for limit games) Also added a couple of comments near enumerate() calls about 2.5 to 2.6 syntax --- pyfpdb/DerivedStats.py | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index a951d0b7..c36201e5 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -139,6 +139,8 @@ class DerivedStats(): self.handsplayers[player[1]]['seatNo'] = player[0] self.handsplayers[player[1]]['startCash'] = int(100 * Decimal(player[2])) + # XXX: enumerate(list, start=x) is python 2.6 syntax; 'start' + #for i, street in enumerate(hand.actionStreets[2:], start=1): for i, street in enumerate(hand.actionStreets[2:]): self.seen(self.hand, i+1) @@ -382,6 +384,7 @@ class DerivedStats(): CG: CheckCall would be a much better name for this. """ + # XXX: enumerate(list, start=x) is python 2.6 syntax; 'start' #for i, street in enumerate(hand.actionStreets[2:], start=1): for i, street in enumerate(hand.actionStreets[2:]): actions = hand.actions[hand.actionStreets[i+1]] @@ -412,7 +415,7 @@ class DerivedStats(): aggrers = set() others = set() # Growl - actionStreets contains 'BLINDSANTES', which isn't actually an action street - + firstAggrMade=False for act in hand.actions[hand.actionStreets[i+1]]: if firstAggrMade: @@ -427,11 +430,12 @@ class DerivedStats(): self.handsplayers[player[1]]['street%sAggr' % i] = True else: self.handsplayers[player[1]]['street%sAggr' % i] = False - - if len(aggrers)>0 and i>0: + + if i > 0 and len(aggrers) > 0: for playername in others: self.handsplayers[playername]['otherRaisedStreet%s' % i] = True - #print "otherRaised detected on handid "+str(hand.handid)+" for "+playername+" on street "+str(i) + #print "DEBUG: otherRaised detected on handid %s for %s on actionStreet[%s]: %s" + # %(hand.handid, playername, hand.actionStreets[i+1], i) def calls(self, hand, i): callers = [] @@ -445,15 +449,16 @@ class DerivedStats(): for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('bets'): self.handsplayers[act[0]]['street%sBets' % i] = 1 + self.handsplayers[act[0]]['street%sBets' % i] - + def folds(self, hand, i): for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('folds'): if self.handsplayers[act[0]]['otherRaisedStreet%s' % i] == True: self.handsplayers[act[0]]['foldToOtherRaisedStreet%s' % i] = True - #print "fold detected on handid "+str(hand.handid)+" for "+act[0]+" on street "+str(i) - + #print "DEBUG: fold detected on handid %s for %s on actionStreet[%s]: %s" + # %(hand.handid, act[0],hand.actionStreets[i+1], i) + def countPlayers(self, hand): pass From f6fbf0825040f6cf251eb133e89f31a36638bfd3 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 28 May 2010 19:12:02 +0200 Subject: [PATCH 023/253] moved fold stats so that the file no longer indicates that they're not done --- pyfpdb/DerivedStats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index c36201e5..b222fc01 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -67,12 +67,12 @@ class DerivedStats(): self.handsplayers[player[1]]['street%dCBDone' %i] = False self.handsplayers[player[1]]['street%dCheckCallRaiseChance' %i] = False self.handsplayers[player[1]]['street%dCheckCallRaiseDone' %i] = False + self.handsplayers[player[1]]['otherRaisedStreet%d' %i] = False + self.handsplayers[player[1]]['foldToOtherRaisedStreet%d' %i] = False #FIXME - Everything below this point is incomplete. self.handsplayers[player[1]]['tourneyTypeId'] = 1 for i in range(1,5): - self.handsplayers[player[1]]['otherRaisedStreet%d' %i] = False - self.handsplayers[player[1]]['foldToOtherRaisedStreet%d' %i] = False self.handsplayers[player[1]]['foldToStreet%dCBChance' %i] = False self.handsplayers[player[1]]['foldToStreet%dCBDone' %i] = False From 5a13e96b3bababe0dd17332917d0d1461b849c8c Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Wed, 17 Mar 2010 22:38:40 +0100 Subject: [PATCH 024/253] Auto close HUD support for closing tourney windows added. Not neat but functional. --- pyfpdb/Hud.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/Hud.py b/pyfpdb/Hud.py index dcad0865..5dcccf3c 100644 --- a/pyfpdb/Hud.py +++ b/pyfpdb/Hud.py @@ -448,6 +448,8 @@ class Hud: if os.name == 'nt': if not win32gui.IsWindow(self.table.number): self.parent.kill_hud(self, self.table.name) + self.parent.kill_hud(self, self.table.name.split(" ")[0]) + #table.name is only a valid handle for ring games ! we are not killing tourney tables here. return False # anyone know how to do this in unix, or better yet, trap the X11 error that is triggered when executing the get_origin() for a closed window? if self.table.gdkhandle is not None: From 27e5bf86988177b3403ad23d52b3bf52bf688104 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Mon, 17 May 2010 19:23:17 +0200 Subject: [PATCH 025/253] Moved Codec conversion to Charset The TIP is using a codec conversion that doesn't handle error exeptions. This could lock up the HUD.... --- pyfpdb/Stats.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 264ebd18..74d51675 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -57,6 +57,7 @@ import re # FreePokerTools modules import Configuration import Database +import Charset re_Places = re.compile("_[0-9]$") @@ -67,7 +68,7 @@ import codecs encoder = codecs.lookup(Configuration.LOCALE_ENCODING) def do_tip(widget, tip): - (_tip, _len) = encoder.encode(tip) + _tip = Charset.to_utf8(tip) widget.set_tooltip_text(_tip) def do_stat(stat_dict, player = 24, stat = 'vpip'): From 23ae26259b5dfc37a73803e6a661b1b993574472 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 04:17:30 +0800 Subject: [PATCH 026/253] Steffen reported a FTP file in UTF-8 format. Added it as the 3rd codec tested --- pyfpdb/FulltiltToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 10ecb8dd..2c6370e6 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -27,7 +27,7 @@ class Fulltilt(HandHistoryConverter): sitename = "Fulltilt" filetype = "text" - codepage = ["utf-16", "cp1252"] + codepage = ["utf-16", "cp1252", "utf-8"] siteId = 1 # Needs to match id entry in Sites database # Static regexes From e17058953c320682d462ca2b35b30cc247613e21 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 05:36:59 +0800 Subject: [PATCH 027/253] Add preliminary functions and variables for hex encoding patch Kangaderoo has a patch which potentially fixes storage and display issues for users who do not have their database text storage as utf8. Functions and variables added to Charset to disect the patch --- pyfpdb/Charset.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pyfpdb/Charset.py b/pyfpdb/Charset.py index 9c49f505..055ca714 100644 --- a/pyfpdb/Charset.py +++ b/pyfpdb/Charset.py @@ -26,7 +26,9 @@ import Configuration encoder_to_utf = codecs.lookup('utf-8') encoder_to_sys = codecs.lookup(Configuration.LOCALE_ENCODING) +coder_hex = codecs.lookup('hex_codec') +hex_coding = False #FIXME: Should only be on if db is not UTF8 - test in Database.py? # I'm saving a few cycles with this one not_needed1, not_needed2, not_needed3 = False, False, False if Configuration.LOCALE_ENCODING == 'UTF8': @@ -75,3 +77,19 @@ def to_gui(s): except UnicodeEncodeError: sys.stderr.write('Could not encode: "%s"\n' % s) raise + +def to_hex(s): + try: + out = coder_hex.encode(s)[0] + return out + except UnicodeDecodeError: + sys.stderr.write('Could not convert: "%s"\n' % s) + return s + +def from_hex(s): + try: + out = coder_hex.decode(s)[0] + return out + except UnicodeDecodeError: + sys.stderr.write('Could not convert: "%s"\n' % s) + return s From bdbcf19b064b1c4f41ae2f685da506bf691f9433 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Thu, 4 Mar 2010 14:11:50 +0100 Subject: [PATCH 028/253] Player stat fix for PartyPoker When placing a uncalled bet (like all-in) the uncalled part is put in a sitepot Therefore the player exist 2* in collected. The uncalled part of the bet was subtracted twice for collected and collectees. --- pyfpdb/PartyPokerToFpdb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index f83c8672..5cb170e6 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -261,6 +261,7 @@ class PartyPoker(HandHistoryConverter): if v[0] in self.pot.returned: self.collected[i][1] = Decimal(v[1]) - self.pot.returned[v[0]] self.collectees[v[0]] -= self.pot.returned[v[0]] + self.pot.returned[v[0]] = 0 return origTotalPot() return totalPot instancemethod = type(hand.totalPot) From e41c63f6ee0fa773494a8b243af3bcc6d5103dca Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Thu, 4 Mar 2010 14:32:48 +0100 Subject: [PATCH 029/253] When small blind raises here the addRaiseBy was generating money. One player on small blind with total $2.25, commited $2.27 to the pot. --- pyfpdb/PartyPokerToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 5cb170e6..94acfd3f 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -433,7 +433,7 @@ class PartyPoker(HandHistoryConverter): if street == 'PREFLOP' and \ playerName in [item[0] for item in hand.actions['BLINDSANTES'] if item[2]!='ante']: # preflop raise from blind - hand.addRaiseBy( street, playerName, amount ) + hand.addCallandRaise( street, playerName, amount ) else: hand.addCallandRaise( street, playerName, amount ) elif actionType == 'calls': From 1edf8607609181f5a96aae752fdeb6a63c690d03 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Thu, 4 Mar 2010 19:49:43 +0100 Subject: [PATCH 030/253] Add support for post of dead small blind (PartyPoker) --- pyfpdb/PartyPokerToFpdb.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 94acfd3f..5c60f179 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -360,8 +360,14 @@ class PartyPoker(HandHistoryConverter): if hand.gametype['type'] == 'ring': try: assert noSmallBlind==False - m = self.re_PostSB.search(hand.handText) - hand.addBlind(m.group('PNAME'), 'small blind', m.group('SB')) + liveBlind = True + for m in self.re_PostSB.finditer(hand.handText): + if liveBlind: + hand.addBlind(m.group('PNAME'), 'small blind', m.group('SB')) + liveBlind = False + else: + # Post dead blinds as ante + hand.addBlind(m.group('PNAME'), 'secondsb', m.group('SB')) except: # no small blind hand.addBlind(None, None, None) From 3716f11f061216a299bd8634b9fca954aee19a53 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Mon, 17 May 2010 20:04:14 +0200 Subject: [PATCH 031/253] 1970-01-01 in mktime generates overflow... --- pyfpdb/Filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 15fccd1c..43f7819d 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -876,7 +876,7 @@ class Filters(threading.Thread): t2 = self.end_date.get_text() if t1 == '': - t1 = '1970-01-01' + t1 = '1970-01-02' if t2 == '': t2 = '2020-12-12' From 6b00311756e7c4d54205ccc1b2d55b00550755c4 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 14:37:46 +0800 Subject: [PATCH 032/253] Make sqlite index deletion and creation work. Also updated the coding style and logging in that area. --- pyfpdb/Database.py | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 8939d4b3..23fb02fb 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1162,7 +1162,8 @@ class Database: self.connection.set_isolation_level(0) # allow table/index operations to work for idx in self.indexes[self.backend]: if self.backend == self.MYSQL_INNODB: - print "creating mysql index ", idx['tab'], idx['col'] + print "Creating mysql index %s %s" %(idx['tab'], idx['col']) + log.debug("Creating sqlite index %s %s" %(idx['tab'], idx['col'])) try: s = "create index %s on %s(%s)" % (idx['col'],idx['tab'],idx['col']) self.get_cursor().execute(s) @@ -1170,21 +1171,23 @@ class Database: print " create idx failed: " + str(sys.exc_info()) elif self.backend == self.PGSQL: # mod to use tab_col for index name? - print "creating pg index ", idx['tab'], idx['col'] + print "Creating pg index %s %s" %(idx['tab'], idx['col']) + log.debug("Creating sqlite index %s %s" %(idx['tab'], idx['col'])) try: s = "create index %s_%s_idx on %s(%s)" % (idx['tab'], idx['col'], idx['tab'], idx['col']) self.get_cursor().execute(s) except: print " create idx failed: " + str(sys.exc_info()) elif self.backend == self.SQLITE: - log.debug("Creating sqlite index %s %s" % (idx['tab'], idx['col'])) + print "Creating sqlite index %s %s" %(idx['tab'], idx['col']) + log.debug("Creating sqlite index %s %s" %(idx['tab'], idx['col'])) try: s = "create index %s_%s_idx on %s(%s)" % (idx['tab'], idx['col'], idx['tab'], idx['col']) self.get_cursor().execute(s) except: log.debug("Create idx failed: " + str(sys.exc_info())) else: - print "Only MySQL, Postgres and SQLite supported so far" + print "Unknown database: MySQL, Postgres and SQLite supported" return -1 if self.backend == self.PGSQL: self.connection.set_isolation_level(1) # go back to normal isolation level @@ -1215,8 +1218,15 @@ class Database: % (idx['tab'],idx['col']) ) except: print " drop idx failed: " + str(sys.exc_info()) + elif self.backend == self.SQLITE: + print "Dropping sqlite index ", idx['tab'], idx['col'] + try: + self.get_cursor().execute( "drop index %s_%s_idx" + % (idx['tab'],idx['col']) ) + except: + print " drop idx failed: " + str(sys.exc_info()) else: - print "Only MySQL and Postgres supported so far" + print "Only MySQL, Postgres and SQLITE supported, what are you trying to use?" return -1 if self.backend == self.PGSQL: self.connection.set_isolation_level(1) # go back to normal isolation level From 212438a0c60fe78f2cc7dd539ca4b4b296844c50 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 15:25:56 +0800 Subject: [PATCH 033/253] Database.py - Additional logging and comments --- pyfpdb/Database.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 23fb02fb..ce4e3f6f 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -193,7 +193,7 @@ class Database: # alter table t add constraint c foreign key (fkcol) references tab(rcol) # (fkcol is used for foreigh key name) - # mysql to list indexes: + # mysql to list indexes: (CG - "LIST INDEXES" should work too) # SELECT table_name, index_name, non_unique, column_name # FROM INFORMATION_SCHEMA.STATISTICS # WHERE table_name = 'tbl_name' @@ -223,6 +223,7 @@ class Database: # Note: index names must be unique across a schema # CREATE INDEX idx ON tab(col) # DROP INDEX idx + # SELECT * FROM PG_INDEXES # SQLite notes: @@ -1075,7 +1076,7 @@ class Database: c = self.get_cursor() c.execute(self.sql.query['createSettingsTable']) - log.debug(self.sql.query['createSitesTable']) + log.debug("Creating tables") c.execute(self.sql.query['createSitesTable']) c.execute(self.sql.query['createGametypesTable']) c.execute(self.sql.query['createPlayersTable']) @@ -1088,7 +1089,8 @@ class Database: c.execute(self.sql.query['createHandsActionsTable']) c.execute(self.sql.query['createHudCacheTable']) - # create unique indexes: + # Create unique indexes: + log.debug("Creating unique indexes") c.execute(self.sql.query['addTourneyIndex']) c.execute(self.sql.query['addHandsIndex']) c.execute(self.sql.query['addPlayersIndex']) From 12ad272f91f6300d1ed1c875cd5dea78ed6f8d85 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 15:26:50 +0800 Subject: [PATCH 034/253] SQL.py - Add functions for listing indexes. Not used anywhere - may be a good reference at some point --- pyfpdb/SQL.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index deb9d527..37d214ff 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -51,6 +51,18 @@ class Sql: WHERE type='table' ORDER BY name;""" + ################################ + # List indexes + ################################ + if db_server == 'mysql': + self.query['list_tables'] = """SHOW INDEXES""" + elif db_server == 'postgresql': + self.query['list_tables'] = """SELECT tablename, indexname FROM PG_INDEXES""" + elif db_server == 'sqlite': + self.query['list_tables'] = """SELECT name FROM sqlite_master + WHERE type='index' + ORDER BY name;""" + ################################################################## # Drop Tables - MySQL, PostgreSQL and SQLite all share same syntax ################################################################## From 0c3cdb12f8f6ea9f56c4ba29e94b1c8cd751d5c7 Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 4 Jun 2010 15:59:47 +0800 Subject: [PATCH 035/253] General cleanup - Exception messages and improved logging. Stars HHC, HHC itself and Hand. Should not get the first 100 characters of an failing hand in the log, which contains the handid for later reference. Played around with the number of characters a while ago - 100 chars is about the sweet spot. --- pyfpdb/Hand.py | 11 ++++++----- pyfpdb/HandHistoryConverter.py | 6 ++---- pyfpdb/PokerStarsToFpdb.py | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index adb7d3f6..71fc6ced 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -274,15 +274,16 @@ If a player has None chips he won't be added.""" self.streets.update(match.groupdict()) log.debug("markStreets:\n"+ str(self.streets)) else: + tmp = self.handText[0:100] log.error("markstreets didn't match") log.error(" - Assuming hand cancelled") self.cancelled = True - raise FpdbParseError + raise FpdbParseError("FpdbParseError: markStreets appeared to fail: First 100 chars: '%s'" % tmp) def checkPlayerExists(self,player): if player not in [p[1] for p in self.players]: - print "checkPlayerExists", player, "fail" - raise FpdbParseError + print "DEBUG: checkPlayerExists %s fail" % player + raise FpdbParseError("checkPlayerExists: '%s' failed." % player) @@ -1487,9 +1488,9 @@ class Pot(object): if self.sym is None: self.sym = "C" if self.total is None: - print "call Pot.end() before printing pot total" + print "DEBUG: call Pot.end() before printing pot total" # NB if I'm sure end() is idempotent, call it here. - raise FpdbParseError + raise FpdbParseError("FpdbError in printing Hand object") ret = "Total pot %s%.2f" % (self.sym, self.total) if len(self.pots) < 2: diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 5b65b955..3b858f10 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -137,8 +137,7 @@ Otherwise, finish at EOF. self.numHands += 1 except FpdbParseError, e: self.numErrors += 1 - log.warning("Failed to convert hand %s" % e.hid) - log.warning("Exception msg: '%s'" % str(e)) + log.warning("HHC.start(follow): processHand failed: Exception msg: '%s'" % e) log.debug(handText) else: handsList = self.allHandsAsList() @@ -152,8 +151,7 @@ Otherwise, finish at EOF. self.processedHands.append(self.processHand(handText)) except FpdbParseError, e: self.numErrors += 1 - log.warning("Failed to convert hand %s" % e.hid) - log.warning("Exception msg: '%s'" % str(e)) + log.warning("HHC.start(): processHand failed: Exception msg: '%s'" % e) log.debug(handText) self.numHands = len(handsList) endtime = time.time() diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 79bef1ea..17a9b15c 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -140,7 +140,7 @@ class PokerStars(HandHistoryConverter): tmp = handText[0:100] log.error("determineGameType: Unable to recognise gametype from: '%s'" % tmp) log.error("determineGameType: Raising FpdbParseError") - raise FpdbParseError + raise FpdbParseError("Unable to recognise gametype from: '%s'" % tmp) mg = m.groupdict() # translations from captured groups to fpdb info strings @@ -194,7 +194,7 @@ class PokerStars(HandHistoryConverter): except KeyError: log.error("determineGameType: Lim_Blinds has no lookup for '%s'" % mg['BB']) log.error("determineGameType: Raising FpdbParseError") - raise FpdbParseError + raise FpdbParseError("Lim_Blinds has no lookup for '%s'" % mg['BB']) # NB: SB, BB must be interpreted as blinds or bets depending on limit type. return info From 3b823574ab8ceeb4022b7272fbca3bf495f15e37 Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 5 Jun 2010 00:44:40 +0800 Subject: [PATCH 036/253] Bump version to 0.20 --- pyfpdb/fpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 768795ab..3d9db3d7 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -110,7 +110,7 @@ import Database import Configuration import Exceptions -VERSION = "0.12" +VERSION = "0.20" class fpdb: From 18a3af2e88066cff10df7322b8b427b723b8db25 Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 5 Jun 2010 17:58:00 +0800 Subject: [PATCH 037/253] Fix HHC init and python 2.5 incompatibility --- pyfpdb/Anonymise.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Anonymise.py b/pyfpdb/Anonymise.py index 32036b1e..1eea39db 100644 --- a/pyfpdb/Anonymise.py +++ b/pyfpdb/Anonymise.py @@ -5,6 +5,7 @@ import Options import HandHistoryConverter (options, argv) = Options.fpdb_options() +config = Configuration.Config() filter = options.hhc @@ -13,7 +14,7 @@ filter_name = filter.replace("ToFpdb", "") mod = __import__(filter) obj = getattr(mod, filter_name, None) -hhc = obj(autostart=False) +hhc = obj(config, autostart=False) if os.path.exists(options.infile): in_fh = codecs.open(options.infile, 'r', "utf8") @@ -31,7 +32,7 @@ for a in m: uniq = set(players) -for i, name in enumerate(uniq, 1): +for i, name in enumerate(uniq): filecontents = filecontents.replace(name, 'Player%d' %i) print filecontents From 3d7668bde5985cf4e307f452447e6973fb2c390c Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 5 Jun 2010 18:00:41 +0800 Subject: [PATCH 038/253] Add required import --- pyfpdb/Anonymise.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/Anonymise.py b/pyfpdb/Anonymise.py index 1eea39db..512980e0 100644 --- a/pyfpdb/Anonymise.py +++ b/pyfpdb/Anonymise.py @@ -3,6 +3,7 @@ import re import codecs import Options import HandHistoryConverter +import Configuration (options, argv) = Options.fpdb_options() config = Configuration.Config() From 397ae8bbcd857582234923aea317d40cb5a52a30 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sat, 5 Jun 2010 16:53:48 +0100 Subject: [PATCH 039/253] show site name in error message if match failed --- pyfpdb/Filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 15fccd1c..a5022508 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -88,7 +88,7 @@ class Filters(threading.Thread): if len(result) == 1: self.siteid[site] = result[0][0] else: - print "Either 0 or more than one site matched - EEK" + print "Either 0 or more than one site matched (%s) - EEK" % site # For use in date ranges. self.start_date = gtk.Entry(max=12) From 544a6828911e3caf7e78531ce60f0177c8a14487 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 6 Jun 2010 09:01:26 +0100 Subject: [PATCH 040/253] rename fpdb.py to fpdb.pyw makes it run smoother from .exe (no dos window) --- pyfpdb/{fpdb.py => fpdb.pyw} | 0 pyfpdb/py2exe_setup.py | 2 +- run_fpdb.bat | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename pyfpdb/{fpdb.py => fpdb.pyw} (100%) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.pyw similarity index 100% rename from pyfpdb/fpdb.py rename to pyfpdb/fpdb.pyw diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index 0db53a40..b734f923 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -130,7 +130,7 @@ setup( description = 'Free Poker DataBase', version = '0.12', - console = [ {'script': 'fpdb.py', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]}, + windows = [ {'script': 'fpdb.pyw', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]}, {'script': 'HUD_main.py', }, {'script': 'Configuration.py', } ], diff --git a/run_fpdb.bat b/run_fpdb.bat index 98774aa0..4bd815b9 100755 --- a/run_fpdb.bat +++ b/run_fpdb.bat @@ -3,5 +3,5 @@ rem .bat script to run fpdb cd pyfpdb -fpdb.exe +start /b fpdb.exe >fpdb_output.txt From 9421f045dd2794c5b9ce7064eef7072e78b3c16f Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 6 Jun 2010 09:29:46 +0100 Subject: [PATCH 041/253] put output file from .exe startup in higher directory --- run_fpdb.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_fpdb.bat b/run_fpdb.bat index 4bd815b9..98cfefb3 100755 --- a/run_fpdb.bat +++ b/run_fpdb.bat @@ -3,5 +3,5 @@ rem .bat script to run fpdb cd pyfpdb -start /b fpdb.exe >fpdb_output.txt +start /b fpdb.exe >..\fpdb_output.txt From da203fbe6cf8e69c491256e451f32269ae6a9316 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 6 Jun 2010 10:57:51 +0100 Subject: [PATCH 042/253] debug and refine fpdb.pyw changes for .exe version --- pyfpdb/GuiAutoImport.py | 7 ++++++- pyfpdb/fpdb.py | 31 +++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100755 pyfpdb/fpdb.py diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index b55c9ec1..ab471fe5 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -210,7 +210,12 @@ class GuiAutoImport (threading.Thread): print "opening pipe to HUD" self.pipe_to_hud = subprocess.Popen(command, bufsize=bs, stdin=subprocess.PIPE, - universal_newlines=True) + stdout=subprocess.PIPE, # only needed for py2exe + stderr=subprocess.PIPE, # only needed for py2exe + universal_newlines=True + ) + self.pipe_to_hud.stdout.close() + self.pipe_to_hud.stderr.close() except: err = traceback.extract_tb(sys.exc_info()[2])[-1] #self.addText( "\n*** GuiAutoImport Error opening pipe: " + err[2] + "(" + str(err[1]) + "): " + str(sys.exc_info()[1])) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py new file mode 100755 index 00000000..db9050c7 --- /dev/null +++ b/pyfpdb/fpdb.py @@ -0,0 +1,31 @@ +#!/usr/bin/python + +#Copyright 2008 Steffen Jobbagy-Felso +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU Affero General Public License as published by +#the Free Software Foundation, version 3 of the License. +# +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. +# +#You should have received a copy of the GNU Affero General Public License +#along with this program. If not, see . +#In the "official" distribution you can find the license in +#agpl-3.0.txt in the docs folder of the package. + + +# Users should run fpdb.pyw now, this is included in case they still try to run fpdb.py + + +import os +import sys + + +#print "fpdb.py has now been renamed to fpdb.pyw - calling fpdb.pyw ...\n" +sys.stdout.write('fpdb.py has been renamed to fpdb.pyw - now calling fpdb.pyw ...\n\n') +sys.stdout.flush() + +os.execvpe('python.exe', ('python.exe', 'fpdb.pyw', '-r'), os.environ) +# first arg is ignored (name of program being run) From b7a7af37d54093f28946b21f3e028b774c66f167 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 6 Jun 2010 13:20:39 +0100 Subject: [PATCH 043/253] minor whitespace change --- pyfpdb/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index ce4e3f6f..01b78fe5 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1056,7 +1056,7 @@ class Database: key = "`" + inner[j][0] + "_" + m.group() + "`" c.execute("ALTER TABLE " + inner[j][0] + " DROP FOREIGN KEY " + key) self.commit() - #end drop_referential_inegrity + #end drop_referential_inegrity def recreate_tables(self): """(Re-)creates the tables of the current DB""" From 1aafe79b4abf5c4dbcbb87bcaa1ad1e0406290ce Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 6 Jun 2010 13:21:21 +0100 Subject: [PATCH 044/253] fix name of list indexes query --- pyfpdb/SQL.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 37d214ff..ad8ea025 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -55,11 +55,11 @@ class Sql: # List indexes ################################ if db_server == 'mysql': - self.query['list_tables'] = """SHOW INDEXES""" + self.query['list_indexes'] = """SHOW INDEXES""" elif db_server == 'postgresql': - self.query['list_tables'] = """SELECT tablename, indexname FROM PG_INDEXES""" + self.query['list_indexes'] = """SELECT tablename, indexname FROM PG_INDEXES""" elif db_server == 'sqlite': - self.query['list_tables'] = """SELECT name FROM sqlite_master + self.query['list_indexes'] = """SELECT name FROM sqlite_master WHERE type='index' ORDER BY name;""" From 1c897e54d5403b6128b5690f8b8a27cef335bd32 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 6 Jun 2010 21:03:03 +0100 Subject: [PATCH 045/253] rename HUD_main from .py to .pyw as well --- pyfpdb/GuiAutoImport.py | 4 ++-- pyfpdb/{HUD_main.py => HUD_main.pyw} | 0 pyfpdb/py2exe_setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename pyfpdb/{HUD_main.py => HUD_main.pyw} (100%) diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index ab471fe5..4db85872 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -199,10 +199,10 @@ class GuiAutoImport (threading.Thread): bs = 0 elif os.name == 'nt': path = sys.path[0].replace('\\','\\\\') - command = 'python "'+path+'\\HUD_main.py" ' + self.settings['cl_options'] + command = 'pythonw "'+path+'\\HUD_main.pyw" ' + self.settings['cl_options'] bs = 0 else: - command = os.path.join(sys.path[0], 'HUD_main.py') + command = os.path.join(sys.path[0], 'HUD_main.pyw') command = [command, ] + string.split(self.settings['cl_options']) bs = 1 diff --git a/pyfpdb/HUD_main.py b/pyfpdb/HUD_main.pyw similarity index 100% rename from pyfpdb/HUD_main.py rename to pyfpdb/HUD_main.pyw diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index b734f923..15c834b5 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -131,7 +131,7 @@ setup( version = '0.12', windows = [ {'script': 'fpdb.pyw', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]}, - {'script': 'HUD_main.py', }, + {'script': 'HUD_main.pyw', }, {'script': 'Configuration.py', } ], From 38ad49bf38d77d5af54e7e8320c6e953fbf51013 Mon Sep 17 00:00:00 2001 From: gimick Date: Sun, 6 Jun 2010 21:06:04 +0100 Subject: [PATCH 046/253] Write Anonymise output to .anon file, rather than the terminal --- pyfpdb/Anonymise.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyfpdb/Anonymise.py b/pyfpdb/Anonymise.py index 512980e0..1d9fd63e 100644 --- a/pyfpdb/Anonymise.py +++ b/pyfpdb/Anonymise.py @@ -4,6 +4,7 @@ import codecs import Options import HandHistoryConverter import Configuration +import sys (options, argv) = Options.fpdb_options() config = Configuration.Config() @@ -27,6 +28,13 @@ else: m = hhc.re_PlayerInfo.finditer(filecontents) +outfile = options.infile+".anon" +print "Output being written to", outfile + +savestdout = sys.stdout +fsock = open(outfile,"w") +sys.stdout = fsock + players = [] for a in m: players = players + [a.group('PNAME')] @@ -37,3 +45,7 @@ for i, name in enumerate(uniq): filecontents = filecontents.replace(name, 'Player%d' %i) print filecontents + +sys.stdout = savestdout +fsock.close() + From 1f9b7788ade5db5b8b7da82399f8b38efa401598 Mon Sep 17 00:00:00 2001 From: gimick Date: Mon, 7 Jun 2010 00:44:08 +0100 Subject: [PATCH 047/253] add 8 example Stars hand histories to pyfpdb/regression-test-files --- ...NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt | 137 + .../NLHE-FR-USD-0.01-0.02-201004.4betPF.txt | 49 + ...LHE-FR-USD-0.01-0.02-201005.microgrind.txt | 4854 +++++++++++++++++ ...FR-USD-0.01-0.02-201006.foldsoutofturn.txt | 45 + ...-0.05-0.10-201004.allinWithAmtReturned.txt | 33 + .../NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt | 1510 +++++ .../Flop/NLHE-USD-STT-1-201004.8betPF.txt | 65 + .../Flop/NLHE-USD-STT-20-201006.DONturbo.txt | 2867 ++++++++++ 8 files changed, 9560 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt create mode 100644 pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt create mode 100644 pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt create mode 100644 pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt new file mode 100644 index 00000000..75aabe75 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt @@ -0,0 +1,137 @@ +PokerStars Game #99999999999: 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 #99999999999: 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 #99999999999: 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 #99999999999: 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 #99999999999: 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 #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($22.65 in chips) +Seat 2: Player1 ($50.25 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [4h Ks] +Player1: raises $1 to $1.50 +Player0: folds +Uncalled bet ($1) returned to Player1 +Player1 collected $1 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0 +Seat 1: Player0 (big blind) folded before Flop +Seat 2: Player1 (button) (small blind) collected ($1) + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt new file mode 100644 index 00000000..9114b678 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt @@ -0,0 +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 +Seat 9: Player4 showed [As Qs] and won ($2.79) with two pair, Aces and Queens + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt new file mode 100644 index 00000000..93002684 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt @@ -0,0 +1,4854 @@ +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($0.97 in chips) +Seat 3: Player23 ($1.53 in chips) +Seat 4: Player17 ($1.60 in chips) +Seat 5: Player5 ($2.91 in chips) +Seat 6: Player22 ($2.45 in chips) +Seat 7: Player19 ($2.56 in chips) +Seat 8: Player3 ($3.01 in chips) +Seat 9: Player21 ($0.58 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2d Kc] +Player3: folds +Player21: folds +Player14: calls $0.02 +Player23: calls $0.02 +Player17: checks +Player5: folds +Player22: calls $0.01 +Player19: checks +*** FLOP *** [Qh 8d 7s] +Player22: bets $0.06 +Player19: folds +Player14: calls $0.06 +Player23: folds +Player17: folds +*** TURN *** [Qh 8d 7s] [3s] +Player22: bets $0.30 +Player14: folds +Uncalled bet ($0.30) returned to Player22 +Player22 collected $0.22 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.22 | Rake $0 +Board [Qh 8d 7s 3s] +Seat 2: Player14 folded on the Turn +Seat 3: Player23 folded on the Flop +Seat 4: Player17 folded on the Flop +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) collected ($0.22) +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.91 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($2.54 in chips) +Seat 8: Player3 ($3.01 in chips) +Seat 9: Player21 ($0.58 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3h Td] +Player21: folds +Player14: folds +Player23: folds +Player17: folds +Player5: raises $0.10 to $0.12 +Player22: calls $0.12 +Player11 joins the table at seat #1 +Player19: folds +Player3: folds +*** FLOP *** [Js Qh 9s] +Player5: checks +Player22: bets $0.25 +Player5: folds +Uncalled bet ($0.25) returned to Player22 +Player22 collected $0.27 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.27 | Rake $0 +Board [Js Qh 9s] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded on the Flop +Seat 6: Player22 (button) collected ($0.27) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player3: posts small blind $0.01 +Player21: posts big blind $0.02 +Player11: sits out +*** HOLE CARDS *** +Dealt to Player17 [Qc 5d] +Player14: folds +Player23: folds +Player17: raises $0.04 to $0.06 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player21 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player11 ($1.60 in chips) +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.61 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.56 in chips) +Player21: posts small blind $0.01 +Player11: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d Qc] +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: calls $0.01 +Player11: checks +*** FLOP *** [7s 3s Kd] +Player21: bets $0.02 +Player11: folds +Uncalled bet ($0.02) returned to Player21 +Player21 collected $0.04 from pot +Player21: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Board [7s 3s Kd] +Seat 1: Player11 (big blind) folded on the Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player21 (small blind) collected ($0.04) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player11 ($1.58 in chips) +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.61 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player11: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d 7d] +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player21: folds +Player11: calls $0.01 +Player14: checks +*** FLOP *** [5s 9c 4c] +Player11: bets $0.08 +Player14: calls $0.08 +Player17: calls $0.08 +Player19: folds +*** TURN *** [5s 9c 4c] [Td] +Player11: bets $0.04 +Player14: calls $0.04 +Player17: calls $0.04 +*** RIVER *** [5s 9c 4c Td] [Kh] +Player11: checks +Player14: bets $0.10 +Player17: folds +Player11: folds +Uncalled bet ($0.10) returned to Player14 +Player14 collected $0.44 from pot +*** SUMMARY *** +Total pot $0.44 | Rake $0 +Board [5s 9c 4c Td Kh] +Seat 1: Player11 (small blind) folded on the River +Seat 2: Player14 (big blind) collected ($0.44) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player11 ($1.44 in chips) +Seat 2: Player14 ($1.19 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.47 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player14: posts small blind $0.01 +Player23: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3s 5d] +Player17: folds +Player5: folds +Player22: raises $0.02 to $0.04 +Player19: folds +Player3: folds +Player21: folds +Player11: raises $0.14 to $0.18 +Player14: folds +Player23: calls $0.16 +Player22: calls $0.14 +*** FLOP *** [4h 6d 4s] +Player23: checks +Player22: checks +Player11: bets $0.55 +Player23: folds +Player22: folds +Uncalled bet ($0.55) returned to Player11 +Player11 collected $0.55 from pot +*** SUMMARY *** +Total pot $0.55 | Rake $0 +Board [4h 6d 4s] +Seat 1: Player11 (button) collected ($0.55) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player23 (big blind) folded on the Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.18 in chips) +Seat 3: Player23 ($2.13 in chips) +Seat 4: Player17 ($1.47 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player23: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c 5d] +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: calls $0.02 +Player23: calls $0.01 +Player17: checks +*** FLOP *** [8s 4s Ah] +Player23: checks +Player17: checks +Player14: bets $0.06 +Player23: folds +Player17: calls $0.06 +*** TURN *** [8s 4s Ah] [Qs] +Player17: bets $0.10 +Player14: calls $0.10 +*** RIVER *** [8s 4s Ah Qs] [9h] +Player17: checks +Player14: checks +*** SHOW DOWN *** +Player17: shows [2c 5d] (high card Ace) +Player14: shows [Ac Jc] (a pair of Aces) +Player14 collected $0.38 from pot +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [8s 4s Ah Qs 9h] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 (button) showed [Ac Jc] and won ($0.38) with a pair of Aces +Seat 3: Player23 (small blind) folded on the Flop +Seat 4: Player17 (big blind) showed [2c 5d] and lost with high card Ace +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.11 in chips) +Seat 4: Player17 ($1.29 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4h Qh] +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: folds +Player23: raises $0.04 to $0.06 +Player17: calls $0.05 +Player5: calls $0.04 +*** FLOP *** [7s 3s Ah] +Player17: bets $0.20 +Player5: folds +Player23: raises $1.85 to $2.05 and is all-in +Player17: folds +Uncalled bet ($1.85) returned to Player23 +Player23 collected $0.58 from pot +Player23: doesn't show hand +*** SUMMARY *** +Total pot $0.58 | Rake $0 +Board [7s 3s Ah] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 (button) collected ($0.58) +Seat 4: Player17 (small blind) folded on the Flop +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.43 in chips) +Seat 4: Player17 ($1.03 in chips) +Seat 5: Player5 ($2.73 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc 4s] +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: folds +Player23: raises $0.04 to $0.06 +Player17: folds +Player5: folds +Player22: calls $0.04 +*** FLOP *** [2h 7d 3s] +Player22: checks +Player23: checks +*** TURN *** [2h 7d 3s] [Ks] +Player22: bets $0.04 +Player23: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.13 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.13 | Rake $0 +Board [2h 7d 3s Ks] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded on the Turn +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) collected ($0.13) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.83 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.63 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 3s] +Player3: folds +Player21: folds +Player11: folds +Player14 has timed out +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: folds +Player19: calls $0.06 +*** FLOP *** [6d Jd 7c] +Player19: bets $0.04 +Player17: calls $0.04 +*** TURN *** [6d Jd 7c] [Js] +Player19: checks +Player17: bets $0.26 +Player19: folds +Uncalled bet ($0.26) returned to Player17 +Player17 collected $0.25 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [6d Jd 7c Js] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.25) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.96 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($2.39 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c 8c] +Player21: raises $0.06 to $0.08 +Player11: raises $0.10 to $0.18 +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: raises $0.40 to $0.58 and is all-in +Player11: calls $0.40 +*** FLOP *** [Qs Jh 6h] +*** TURN *** [Qs Jh 6h] [Jc] +*** RIVER *** [Qs Jh 6h Jc] [4h] +*** SHOW DOWN *** +Player21: shows [Ah Qh] (a flush, Ace high) +Player11: shows [Ac Qd] (two pair, Queens and Jacks) +Player21 collected $1.14 from pot +*** SUMMARY *** +Total pot $1.19 | Rake $0.05 +Board [Qs Jh 6h Jc 4h] +Seat 1: Player11 showed [Ac Qd] and lost with two pair, Queens and Jacks +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player11 ($1.23 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.96 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($2.38 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.14 in chips) +Player3: posts small blind $0.01 +Player21: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 4h] +Player11: raises $0.04 to $0.06 +Player14: folds +Player23: folds +Player17: calls $0.06 +Player5: calls $0.06 +Player22: calls $0.06 +Player19: raises $0.18 to $0.24 +Player3: folds +Player21: folds +Player11: calls $0.18 +Player17: calls $0.18 +Player5: folds +Player22: folds +*** FLOP *** [Th 7c 5s] +Player11: bets $0.23 +Player17: folds +Player19: raises $1.91 to $2.14 and is all-in +Player11: calls $0.76 and is all-in +Uncalled bet ($1.15) returned to Player19 +*** TURN *** [Th 7c 5s] [Td] +*** RIVER *** [Th 7c 5s Td] [4s] +*** SHOW DOWN *** +Player11: shows [Kh Qh] (a pair of Tens) +Player19: shows [As Ac] (two pair, Aces and Tens) +Player19 collected $2.75 from pot +*** SUMMARY *** +Total pot $2.85 | Rake $0.10 +Board [Th 7c 5s Td 4s] +Seat 1: Player11 showed [Kh Qh] and lost with a pair of Tens +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player5 folded before Flop +Seat 6: Player22 folded before Flop +Seat 7: Player19 (button) showed [As Ac] and won ($2.75) with two pair, Aces and Tens +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player21 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.72 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.12 in chips) +Player21: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3d 4d] +Player23: folds +Player17: calls $0.02 +Player11 leaves the table +Player5: folds +Player22: folds +Player19: folds +Player3: calls $0.02 +Player21: folds +Player14: checks +*** FLOP *** [8s Ad 8h] +Player14: checks +Player17: checks +Player3: checks +*** TURN *** [8s Ad 8h] [8c] +Player14: bets $0.06 +Player17: folds +Player3: folds +Uncalled bet ($0.06) returned to Player14 +Player14 collected $0.07 from pot +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [8s Ad 8h 8c] +Seat 2: Player14 (big blind) collected ($0.07) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded on the Turn +Seat 9: Player21 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 2: Player14 ($1.43 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.70 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.11 in chips) +Player14: posts small blind $0.01 +Player23: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad Kd] +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player14: calls $0.01 +Player23: checks +*** FLOP *** [5c 9s Kh] +Player14: checks +Player23: checks +Player17: checks +*** TURN *** [5c 9s Kh] [7s] +Player14: bets $0.04 +Player23: calls $0.04 +Player21 leaves the table +Player17: calls $0.04 +*** RIVER *** [5c 9s Kh 7s] [3s] +Player14: bets $0.04 +Player23: raises $0.04 to $0.08 +Player17: folds +Player18 joins the table at seat #1 +Player14: calls $0.04 +*** SHOW DOWN *** +Player23: shows [Qs Ts] (a flush, Queen high) +Player14: mucks hand +Player23 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [5c 9s Kh 7s 3s] +Seat 2: Player14 (small blind) mucked [Kc Td] +Seat 3: Player23 (big blind) showed [Qs Ts] and won ($0.34) with a flush, Queen high +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 2: Player14 ($1.29 in chips) +Seat 3: Player23 ($2.57 in chips) +Seat 4: Player17 ($1.64 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Player23: posts small blind $0.01 +Player17: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [4c Js] +Player5: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player14: calls $0.02 +Player23: calls $0.01 +Player17: raises $0.12 to $0.14 +Player22: folds +Player14: folds +Player23: folds +Uncalled bet ($0.12) returned to Player17 +Player17 collected $0.08 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Seat 2: Player14 (button) folded before Flop +Seat 3: Player23 (small blind) folded before Flop +Seat 4: Player17 (big blind) collected ($0.08) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.70 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ts Qc] +Player9 joins the table at seat #9 +Player22: folds +Player19: folds +Player3: folds +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.04 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) collected ($0.04) +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.72 in chips) +Seat 5: Player5 ($2.64 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($1.85 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +Player9: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [6d Ac] +Player19: folds +Player3: folds +Player9: checks +Player14: folds +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: checks +*** FLOP *** [7s 2d 3h] +Player22: checks +Player9: checks +Player17: bets $0.04 +Player22: calls $0.04 +Player9: folds +*** TURN *** [7s 2d 3h] [5d] +Player22: checks +Player17: checks +*** RIVER *** [7s 2d 3h 5d] [7c] +Player22: bets $0.02 +Player17: raises $0.06 to $0.08 +Player22: raises $0.06 to $0.14 +Player17: folds +Uncalled bet ($0.06) returned to Player22 +Player22 collected $0.31 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.31 | Rake $0 +Board [7s 2d 3h 5d 7c] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the River +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) collected ($0.31) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.71 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($1.83 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [9s Kd] +Player3: folds +Player9: calls $0.02 +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: calls $0.01 +Player19: checks +*** FLOP *** [9c Qh Tc] +Player22: bets $0.06 +Player19: folds +Player9: calls $0.06 +*** TURN *** [9c Qh Tc] [5h] +Player22: bets $0.12 +Player9: calls $0.12 +*** RIVER *** [9c Qh Tc 5h] [2c] +Player22: bets $0.12 +Player9: raises $0.12 to $0.24 +Player22: calls $0.12 +*** SHOW DOWN *** +Player9: shows [Ac Qc] (a flush, Ace high) +Player22: mucks hand +Player9 collected $0.90 from pot +*** SUMMARY *** +Total pot $0.90 | Rake $0 +Board [9c Qh Tc 5h 2c] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) mucked [Js 8c] +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.27 in chips) +Seat 7: Player19 ($3.88 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.29 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ts 9h] +Player9: calls $0.02 +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: calls $0.08 +Player19: folds +Player3: folds +Player9: calls $0.06 +*** FLOP *** [Ad 8s Js] +Player9: checks +Player17: checks +Player22: bets $0.08 +Player9: folds +Player17: calls $0.08 +*** TURN *** [Ad 8s Js] [3s] +Player17: checks +Player22: bets $0.08 +Player17: calls $0.08 +*** RIVER *** [Ad 8s Js 3s] [Jh] +Player17: checks +Player22: bets $0.25 +Player17: folds +Uncalled bet ($0.25) returned to Player22 +Player22 collected $0.59 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.59 | Rake $0 +Board [Ad 8s Js 3s Jh] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) collected ($0.59) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.34 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.21 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [3c Tc] +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: raises $0.04 to $0.06 +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.05 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 collected ($0.05) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.80 in chips) +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.34 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.65 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.19 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6c Qs] +Player14: folds +Player23: folds +Player17: raises $0.04 to $0.06 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Player18: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 (big blind) folded before Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.78 in chips) +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($2.17 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.65 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.18 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6c Ac] +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: calls $0.02 +Player3: folds +Player9: calls $0.02 +Player18: calls $0.01 +Player14: checks +*** FLOP *** [3s 7s Qh] +Player18: checks +Player14: checks +Player17: checks +Player22: checks +Player19: checks +Player9: checks +*** TURN *** [3s 7s Qh] [Ah] +Player23 leaves the table +Player18: checks +Player14: checks +Player17: checks +Player22: checks +Player19: checks +Player9: bets $0.02 +Player18: calls $0.02 +Player24 joins the table at seat #3 +Player14: calls $0.02 +Player17: folds +Player22: folds +Player19: folds +*** RIVER *** [3s 7s Qh Ah] [5d] +Player18: checks +Player14: checks +Player9: bets $0.02 +Player18: folds +Player14: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [3s 7s Qh Ah 5d] +Seat 1: Player18 (small blind) folded on the River +Seat 2: Player14 (big blind) folded on the River +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Turn +Seat 7: Player19 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) collected ($0.18) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.23 in chips) +Seat 3: Player24 ($2 in chips) +Seat 4: Player17 ($2.15 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.63 in chips) +Seat 7: Player19 ($3.85 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c Qc] +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: calls $0.02 +Player3: calls $0.02 +Player9: folds +Player18: folds +Player14: calls $0.01 +Player24: checks +*** FLOP *** [5d 2s 3c] +Player14: checks +Player24: checks +Player17: bets $0.08 +Player22: folds +Player19: folds +Player3: folds +Player14: calls $0.08 +Player24: folds +*** TURN *** [5d 2s 3c] [9d] +Player14: checks +Player17: bets $0.20 +Player14: calls $0.20 +*** RIVER *** [5d 2s 3c 9d] [Jc] +Player14: checks +Player17: checks +*** SHOW DOWN *** +Player14: shows [4c 4s] (a pair of Fours) +Player17: mucks hand +Player14 collected $0.68 from pot +*** SUMMARY *** +Total pot $0.68 | Rake $0 +Board [5d 2s 3c 9d Jc] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) showed [4c 4s] and won ($0.68) with a pair of Fours +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 mucked [2c Qc] +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.98 in chips) +Seat 4: Player17 ($1.85 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($3.83 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc Td] +Player5: folds +Player22: folds +Player19: raises $0.06 to $0.08 +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: calls $0.07 +Player17: raises $0.40 to $0.48 +Player19: raises $3.35 to $3.83 and is all-in +Player24: folds +Player17: calls $1.37 and is all-in +Uncalled bet ($1.98) returned to Player19 +*** FLOP *** [3s 5c 7c] +*** TURN *** [3s 5c 7c] [Th] +*** RIVER *** [3s 5c 7c Th] [Jh] +*** SHOW DOWN *** +Player17: shows [Tc Td] (three of a kind, Tens) +Player19: shows [Ac As] (a pair of Aces) +Player17 collected $3.63 from pot +*** SUMMARY *** +Total pot $3.78 | Rake $0.15 +Board [3s 5c 7c Th Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 showed [Ac As] and lost with a pair of Aces +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.63 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 2s] +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.01 +Player5: checks +*** FLOP *** [6d 7h 3s] +Player17: bets $0.06 +Player5: folds +Player9: calls $0.06 +*** TURN *** [6d 7h 3s] [Kc] +Player17: checks +Player9: bets $0.04 +Player17: calls $0.04 +*** RIVER *** [6d 7h 3s Kc] [5d] +Player17: checks +Player9: bets $0.04 +Player17: raises $0.22 to $0.26 +Player9: calls $0.22 +*** SHOW DOWN *** +Player17: shows [Ad 2s] (high card Ace) +Player9: shows [Jc Js] (a pair of Jacks) +Player9 collected $0.78 from pot +*** SUMMARY *** +Total pot $0.78 | Rake $0 +Board [6d 7h 3s Kc 5d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [Ad 2s] and lost with high card Ace +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.25 in chips) +Seat 5: Player5 ($2.61 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.72 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 3s] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.02 +Player5: raises $0.10 to $0.12 +Player22: folds +Player9: calls $0.10 +Player17: calls $0.10 +*** FLOP *** [6h 2c Jd] +Player5: bets $0.29 +Player9: folds +Player17: folds +Uncalled bet ($0.29) returned to Player5 +Player5 collected $0.38 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [6h 2c Jd] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the Flop +Seat 5: Player5 (small blind) collected ($0.38) +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.13 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd Th] +Player3: folds +Player9 said, "tu pua madre farolero" +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: folds +Player19: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded before Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.16 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.58 in chips) +Seat 7: Player19 ($1.96 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks 4h] +Player9 has timed out +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player5: folds +Player22: raises $0.02 to $0.04 +Player19: folds +Player3: folds +Uncalled bet ($0.02) returned to Player22 +Player22 collected $0.05 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) collected ($0.05) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.16 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jd Th] +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: checks +*** FLOP *** [4d 7d Kh] +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [4d 7d Kh] [3c] +Player9: checks +Player24: checks +Player17: bets $0.06 +Player9: folds +Player24: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.07 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [4d 7d Kh 3c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Turn +Seat 4: Player17 collected ($0.07) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.21 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.58 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9s 3d] +Player14: folds +Player24: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.01 +Player18: checks +*** FLOP *** [3c Ac Kc] +Player9: bets $0.02 +Player18: calls $0.02 +*** TURN *** [3c Ac Kc] [Qc] +Player9: bets $0.04 +Player18: folds +Uncalled bet ($0.04) returned to Player9 +Player9 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [3c Ac Kc Qc] +Seat 1: Player18 (big blind) folded on the Turn +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) collected ($0.08) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.70 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.21 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.62 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6h 5c] +Player24: folds +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: checks +*** FLOP *** [4c 7c 6s] +Player14: checks +Player17: bets $0.08 +Player22: folds +Player9: calls $0.08 +Player14: folds +*** TURN *** [4c 7c 6s] [Th] +Player17: bets $0.32 +Player9: folds +Uncalled bet ($0.32) returned to Player17 +Player17 collected $0.25 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [4c 7c 6s Th] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.25) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.59 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.36 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.52 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [7c Tc] +Player17: calls $0.02 +Player5: raises $0.10 to $0.12 +Player22: calls $0.12 +Player19: folds +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.10 +*** FLOP *** [Jh 6c 5d] +Player17: checks +Player5: bets $0.29 +Player22: folds +Player17: calls $0.29 +*** TURN *** [Jh 6c 5d] [9d] +Player17: bets $0.32 +Player5: folds +Uncalled bet ($0.32) returned to Player17 +Player17 collected $0.97 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.97 | Rake $0 +Board [Jh 6c 5d 9d] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 collected ($0.97) +Seat 5: Player5 folded on the Turn +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.86 in chips) +Seat 4: Player17 ($3.92 in chips) +Seat 5: Player5 ($2.46 in chips) +Seat 6: Player22 ($2.47 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.52 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 3s] +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.01 +Player17: checks +*** FLOP *** [2s Jd Qd] +Player24: checks +Player17: folds +Player9: checks +*** TURN *** [2s Jd Qd] [7h] +Player24: bets $0.06 +Player9: folds +Uncalled bet ($0.06) returned to Player24 +Player24 collected $0.06 from pot +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [2s Jd Qd 7h] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) collected ($0.06) +Seat 4: Player17 (big blind) folded on the Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.90 in chips) +Seat 5: Player5 ($2.46 in chips) +Seat 6: Player22 ($2.47 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.50 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [As 3c] +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player5: checks +*** FLOP *** [6s Js 9d] +Player5: checks +Player22: bets $0.04 +Player9: folds +Player5: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.07 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [6s Js 9d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 collected ($0.07) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.89 in chips) +Seat 5: Player5 ($2.44 in chips) +Seat 6: Player22 ($2.52 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.48 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d 6h] +Player19: raises $0.04 to $0.06 +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.06 +Player5: folds +Player22: folds +*** FLOP *** [5c 4h 3h] +Player19: bets $0.08 +Player17: calls $0.08 +*** TURN *** [5c 4h 3h] [5s] +Player19: bets $0.10 +Player17: calls $0.10 +*** RIVER *** [5c 4h 3h 5s] [9s] +Player19: bets $0.14 +Player17: folds +Uncalled bet ($0.14) returned to Player19 +Player19 collected $0.51 from pot +Player19: doesn't show hand +*** SUMMARY *** +Total pot $0.51 | Rake $0 +Board [5c 4h 3h 5s 9s] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the River +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 collected ($0.51) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.65 in chips) +Seat 5: Player5 ($2.43 in chips) +Seat 6: Player22 ($2.50 in chips) +Seat 7: Player19 ($2.22 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.48 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2s 4c] +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: checks +*** FLOP *** [Jh 9h Ac] +Player19: checks +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [Jh 9h Ac] [2d] +Player19: checks +Player9: bets $0.02 +Player24: calls $0.02 +Player17: calls $0.02 +Player19: folds +*** RIVER *** [Jh 9h Ac 2d] [Kd] +Player9: bets $0.02 +Player24: calls $0.02 +Player17: folds +*** SHOW DOWN *** +Player9: shows [Qc Qd] (a pair of Queens) +Player24: shows [7d Ad] (a pair of Aces) +Player24 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [Jh 9h Ac 2d Kd] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 showed [7d Ad] and won ($0.19) with a pair of Aces +Seat 4: Player17 folded on the River +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.61 in chips) +Seat 5: Player5 ($2.43 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.20 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.42 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd 9d] +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player5: calls $0.06 +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.04 +*** FLOP *** [Tc Ts 8s] +Player9: checks +Player17: checks +Player5: checks +*** TURN *** [Tc Ts 8s] [Jh] +Player9: checks +Player17: bets $0.12 +Player5: folds +Player9: folds +Uncalled bet ($0.12) returned to Player17 +Player17 collected $0.21 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [Tc Ts 8s Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.21) +Seat 5: Player5 folded on the Turn +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.76 in chips) +Seat 5: Player5 ($2.37 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.36 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ah Ad] +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player5 leaves the table +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.79 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.34 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8h 8s] +Player14: folds +Player24: folds +Player17: calls $0.02 +Player22: folds +Player19: folds +Player3: calls $0.02 +Player9: calls $0.01 +Player18: checks +*** FLOP *** [Ts 5c 5h] +Player0 joins the table at seat #5 +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** TURN *** [Ts 5c 5h] [9h] +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** RIVER *** [Ts 5c 5h 9h] [2d] +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** SHOW DOWN *** +Player9: shows [8d Qh] (a pair of Fives) +Player18: mucks hand +Player17: shows [8h 8s] (two pair, Eights and Fives) +Player3: mucks hand +Player17 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [Ts 5c 5h 9h 2d] +Seat 1: Player18 (big blind) mucked [Js 3h] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [8h 8s] and won ($0.08) with two pair, Eights and Fives +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) mucked [Ac 3c] +Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.67 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.60 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9h Kc] +Player24: folds +Player17: folds +Player0: raises $0.04 to $0.06 +Player22: calls $0.06 +Player19: folds +Player3: folds +Player9: calls $0.06 +Player18: folds +Player14: calls $0.04 +*** FLOP *** [As 4s Js] +Player14: checks +Player0: checks +Player22: checks +Player9: bets $0.10 +Player14: folds +Player0: folds +Player22: calls $0.10 +*** TURN *** [As 4s Js] [4c] +Player22: checks +Player9: bets $0.16 +Player22: calls $0.16 +*** RIVER *** [As 4s Js 4c] [Jc] +Player22: checks +Player9: bets $0.16 +Player22: raises $0.36 to $0.52 +Player9: calls $0.36 +*** SHOW DOWN *** +Player22: shows [Ks Qd] (two pair, Jacks and Fours) +Player9: shows [Ad 8h] (two pair, Aces and Jacks) +Player9 collected $1.76 from pot +*** SUMMARY *** +Total pot $1.81 | Rake $0.05 +Board [As 4s Js 4c Jc] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 folded on the Flop +Seat 6: Player22 showed [Ks Qd] and lost with two pair, Jacks and Fours +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and Jacks + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.52 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.54 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.24 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6h 8d] +Player17: folds +Player0: raises $0.02 to $0.04 +Player22: raises $0.04 to $0.08 +Player19: calls $0.08 +Player3: folds +Player9: calls $0.08 +Player18: folds +Player14: folds +Player24: folds +Player0: calls $0.04 +*** FLOP *** [4d Td 4s] +Player0: bets $0.22 +Player22: folds +Player19: folds +Player9: folds +Uncalled bet ($0.22) returned to Player0 +Player0 collected $0.35 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot $0.35 | Rake $0 +Board [4d Td 4s] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 collected ($0.35) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.51 in chips) +Seat 3: Player24 ($2.01 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.81 in chips) +Seat 6: Player22 ($1.57 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.16 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d Jd] +Player0: folds +Player22: calls $0.02 +Player19: folds +Player3: calls $0.02 +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.01 +Player17: raises $0.02 to $0.04 +Player22: calls $0.02 +Player3: calls $0.02 +Player9: calls $0.02 +Player24: calls $0.02 +*** FLOP *** [6d 9s 3d] +Player24: checks +Player17: bets $0.02 +Player22: folds +Player3: folds +Player9: calls $0.02 +Player24: calls $0.02 +*** TURN *** [6d 9s 3d] [3c] +Player24: checks +Player17: bets $0.02 +Player9: calls $0.02 +Player24: folds +*** RIVER *** [6d 9s 3d 3c] [5c] +Player17: bets $0.02 +Player9: calls $0.02 +*** SHOW DOWN *** +Player17: shows [8d Jd] (a pair of Threes) +Player9: shows [Ts 6s] (two pair, Sixes and Threes) +Player9 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [6d 9s 3d 3c 5c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) folded on the Turn +Seat 4: Player17 (big blind) showed [8d Jd] and lost with a pair of Threes +Seat 5: Player0 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded on the Flop +Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.51 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.75 in chips) +Seat 5: Player0 ($1.81 in chips) +Seat 6: Player22 ($1.53 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.40 in chips) +Player17: posts small blind $0.01 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5c As] +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: calls $0.02 +Player24: folds +Player17: calls $0.01 +Player0: checks +*** FLOP *** [3s 2c 5s] +Player17: checks +Player0: bets $0.04 +Player9: calls $0.04 +Player14: folds +Player17: raises $0.22 to $0.26 +Player0: raises $0.22 to $0.48 +Player9: folds +Player17: calls $0.22 +*** TURN *** [3s 2c 5s] [2h] +Player17: bets $0.36 +Player0: calls $0.36 +*** RIVER *** [3s 2c 5s 2h] [3d] +Player17: bets $0.90 +Player0: raises $0.05 to $0.95 and is all-in +Player17: calls $0.05 +*** SHOW DOWN *** +Player0: shows [5d 3h] (a full house, Threes full of Fives) +Player17: shows [5c As] (two pair, Fives and Threes) +Player0 collected $3.55 from pot +*** SUMMARY *** +Total pot $3.70 | Rake $0.15 +Board [3s 2c 5s 2h 3d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded on the Flop +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [5c As] and lost with two pair, Fives and Threes +Seat 5: Player0 (big blind) showed [5d 3h] and won ($3.55) with a full house, Threes full of Fives +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($1.94 in chips) +Seat 5: Player0 ($3.55 in chips) +Seat 6: Player22 ($1.53 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.34 in chips) +Player0: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kc 9d] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player0: calls $0.01 +Player22: checks +*** FLOP *** [6h 2s Ad] +Player9 said, "jajajaja tonto" +Player0: checks +Player22: bets $0.02 +Player9: calls $0.02 +Player0: calls $0.02 +*** TURN *** [6h 2s Ad] [9s] +Player0: checks +Player22: checks +Player9: checks +*** RIVER *** [6h 2s Ad 9s] [Jh] +Player0: checks +Player22: bets $0.06 +Player9: calls $0.06 +Player0: folds +*** SHOW DOWN *** +Player22: shows [As 5d] (a pair of Aces) +Player9: mucks hand +Player22 collected $0.24 from pot +*** SUMMARY *** +Total pot $0.24 | Rake $0 +Board [6h 2s Ad 9s Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player0 (small blind) folded on the River +Seat 6: Player22 (big blind) showed [As 5d] and won ($0.24) with a pair of Aces +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 mucked [Ts Qs] + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.54 in chips) +Seat 5: Player0 ($3.51 in chips) +Seat 6: Player22 ($1.67 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.24 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 6c] +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.02 +Player0: calls $0.02 +Player22: calls $0.01 +Player19: checks +*** FLOP *** [Jh 7d 8h] +Player22: checks +Player19: checks +Player9: checks +Player17: bets $0.06 +Player0: calls $0.06 +Player22: folds +Player19: folds +Player9: calls $0.06 +*** TURN *** [Jh 7d 8h] [Qc] +Player9: checks +Player17: checks +Player0: checks +*** RIVER *** [Jh 7d 8h Qc] [5c] +Player9: bets $0.04 +Player17: folds +Player0: calls $0.04 +*** SHOW DOWN *** +Player9: shows [Ah Kh] (high card Ace) +Player0: shows [As 8s] (a pair of Eights) +Player0 collected $0.36 from pot +*** SUMMARY *** +Total pot $0.36 | Rake $0 +Board [Jh 7d 8h Qc 5c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player0 (button) showed [As 8s] and won ($0.36) with a pair of Eights +Seat 6: Player22 (small blind) folded on the Flop +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Ah Kh] and lost with high card Ace + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.46 in chips) +Seat 5: Player0 ($3.75 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.09 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.12 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kh 2h] +Player9: folds +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player0: raises $0.04 to $0.06 +Player22: folds +Player19: folds +Player3: folds +Player24: calls $0.04 +Player17: calls $0.04 +*** FLOP *** [2s 2d Kc] +Player24: checks +Player17: bets $0.06 +Player0: calls $0.06 +Player24: folds +*** TURN *** [2s 2d Kc] [7h] +Player17: bets $0.20 +Player0: calls $0.20 +*** RIVER *** [2s 2d Kc 7h] [5s] +Player17: bets $3.04 +Player0 said, "lol" +Player0 said, "such bs" +Player0: folds +Uncalled bet ($3.04) returned to Player17 +Player17 collected $0.73 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.73 | Rake $0 +Board [2s 2d Kc 7h 5s] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Flop +Seat 4: Player17 collected ($0.73) +Seat 5: Player0 folded on the River +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.87 in chips) +Seat 5: Player0 ($3.43 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.08 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.12 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c Ad] +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player0: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player9: checks +*** FLOP *** [2h Kd 8d] +Player9: bets $0.02 +Player19: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.05 from pot +Player0 leaves the table +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Board [2h Kd 8d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded on the Flop +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) collected ($0.05) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.87 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.06 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.15 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4h Ah] +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player22: calls $0.06 +Player19: calls $0.06 +Player3: folds +Player9: folds +Player18: folds +*** FLOP *** [Qs 5c Qc] +Player17: checks +Player22: bets $0.09 +Player19: folds +Player17: folds +Uncalled bet ($0.09) returned to Player22 +Player22 collected $0.21 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [Qs 5c Qc] +Seat 1: Player18 (big blind) folded before Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 6: Player22 collected ($0.21) +Seat 7: Player19 folded on the Flop +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.64 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.81 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.14 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd 6c] +Player24: folds +Player17: raises $0.06 to $0.08 +Player22: folds +Player19: calls $0.08 +Player3: folds +Player9: calls $0.08 +Player18: folds +Player14: folds +*** FLOP *** [8s 3d 7h] +Player17: bets $0.18 +Player15 joins the table at seat #5 +Player19: raises $0.18 to $0.36 +Player9: folds +Player17: folds +Uncalled bet ($0.18) returned to Player19 +Player19 collected $0.63 from pot +Player19: doesn't show hand +*** SUMMARY *** +Total pot $0.63 | Rake $0 +Board [8s 3d 7h] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded before Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 collected ($0.63) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.63 in chips) +Seat 2: Player14 ($1.47 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.55 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.37 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.06 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +Player15: sits out +*** HOLE CARDS *** +Dealt to Player17 [5d Ks] +Player17: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: checks +*** FLOP *** [3h Kh 2c] +Player24: checks +Player19: bets $0.02 +Player9 said, "maumont paga botes que tonto eres" +Player9: calls $0.02 +Player18 leaves the table +Player24: folds +*** TURN *** [3h Kh 2c] [Jd] +Player19: checks +Player9: bets $0.04 +Player19: folds +Uncalled bet ($0.04) returned to Player9 +Player9 collected $0.11 from pot +*** SUMMARY *** +Total pot $0.11 | Rake $0 +Board [3h Kh 2c Jd] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 collected ($0.11) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 2: Player14 ($1.46 in chips) +Seat 3: Player24 ($1.87 in chips) +Seat 4: Player17 ($3.55 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +Player15: sits out +*** HOLE CARDS *** +Dealt to Player17 [8s 2h] +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Player14: calls $0.02 +Player24: calls $0.01 +Player17: raises $0.12 to $0.14 +Player14: calls $0.12 +Player24: folds +*** FLOP *** [3h As 7h] +Player17: checks +Player14: bets $0.20 +Player17: folds +Uncalled bet ($0.20) returned to Player14 +Player14 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [3h As 7h] +Seat 2: Player14 (button) collected ($0.30) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.85 in chips) +Seat 4: Player17 ($3.41 in chips) +Seat 5: Player15 ($1 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player17: posts small blind $0.01 +Player15: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad Qh] +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: folds +Player14: folds +Player24: folds +Player17: raises $0.92 to $0.94 +Player15: folds +Player22: folds +Uncalled bet ($0.92) returned to Player17 +Player17 collected $0.06 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) collected ($0.06) +Seat 5: Player15 (big blind) folded before Flop +Seat 6: Player22 folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.85 in chips) +Seat 4: Player17 ($3.45 in chips) +Seat 5: Player15 ($0.98 in chips) +Seat 6: Player22 ($1.78 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player15: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3h Qh] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player14: folds +Player24: calls $0.02 +Player17: raises $0.04 to $0.06 +Player15: folds +Player22: folds +Player9: calls $0.04 +Player24: calls $0.04 +*** FLOP *** [3c 4s 7h] +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [3c 4s 7h] [3s] +Player9: checks +Player24: checks +Player17: bets $0.14 +Player9: folds +Player24: folds +Uncalled bet ($0.14) returned to Player17 +Player17 collected $0.21 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [3c 4s 7h 3s] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Turn +Seat 4: Player17 (button) collected ($0.21) +Seat 5: Player15 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.79 in chips) +Seat 4: Player17 ($3.60 in chips) +Seat 5: Player15 ($0.97 in chips) +Seat 6: Player22 ($1.76 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.07 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Td 8d] +Player3: folds +Player9: calls $0.02 +Player14: folds +Player24: calls $0.02 +Player17: raises $0.16 to $0.18 +Player15: folds +Player22: folds +Player19: folds +Player9: calls $0.16 +Player24: calls $0.16 +*** FLOP *** [2d 9s Ts] +Player9: checks +Player24: checks +Player17: bets $0.42 +Player9: folds +Player24: folds +Uncalled bet ($0.42) returned to Player17 +Player17 collected $0.57 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.57 | Rake $0 +Board [2d 9s Ts] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Flop +Seat 4: Player17 collected ($0.57) +Seat 5: Player15 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded before Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($3.99 in chips) +Seat 5: Player15 ($0.97 in chips) +Seat 6: Player22 ($1.75 in chips) +Seat 7: Player19 ($2.31 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.89 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5s 7d] +Player20 joins the table at seat #1 +Player9: calls $0.02 +Player14: folds +Player24: folds +Player17: folds +Player15: folds +Player15 leaves the table +Player22: calls $0.02 +Player19: raises $0.04 to $0.06 +Player3: folds +Player9: calls $0.04 +Player22: calls $0.04 +*** FLOP *** [8d Jh 7c] +Player19: bets $0.10 +Player12 joins the table at seat #5 +Player9: calls $0.10 +Player22: calls $0.10 +*** TURN *** [8d Jh 7c] [5c] +Player19: bets $0.30 +Player9: calls $0.30 +Player22: folds +*** RIVER *** [8d Jh 7c 5c] [Qc] +Player19: bets $0.22 +Player9: raises $2.21 to $2.43 and is all-in +Player19 has timed out +Player19: folds +Uncalled bet ($2.21) returned to Player9 +Player9 collected $1.49 from pot +*** SUMMARY *** +Total pot $1.54 | Rake $0.05 +Board [8d Jh 7c 5c Qc] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player15 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded on the Turn +Seat 7: Player19 (small blind) folded on the River +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 collected ($1.49) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($3.99 in chips) +Seat 5: Player12 ($1 in chips) +Seat 6: Player22 ($1.59 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.70 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +Player20: sits out +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 2c] +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.07 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.07) +Seat 5: Player12 folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5 in chips) +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($4.04 in chips) +Seat 5: Player12 ($0.98 in chips) +Seat 6: Player22 ($1.59 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.68 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9d Tc] +Player14: folds +Player24: folds +Player14 leaves the table +Player17: folds +Player12: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.01 +Player20: checks +*** FLOP *** [7d 4h Qs] +Player9: checks +Player20: checks +Player22: checks +*** TURN *** [7d 4h Qs] [3c] +Player9: bets $0.02 +Player20: calls $0.02 +Player22: calls $0.02 +*** RIVER *** [7d 4h Qs 3c] [Kd] +Player9: bets $0.04 +Player20: folds +Player22: raises $0.05 to $0.09 +Player9: calls $0.05 +*** SHOW DOWN *** +Player22: shows [Ts Kh] (a pair of Kings) +Player9: mucks hand +Player22 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [7d 4h Qs 3c Kd] +Seat 1: Player20 (big blind) folded on the River +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 showed [Ts Kh] and won ($0.30) with a pair of Kings +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) mucked [Jh Qd] + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($4.96 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($4.04 in chips) +Seat 5: Player12 ($0.98 in chips) +Seat 6: Player22 ($1.76 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.55 in chips) +Player20: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2h 7h] +Player17: raises $0.04 to $0.06 +Player12: calls $0.06 +Player22: calls $0.06 +Player19: folds +Player3: folds +Player9: calls $0.06 +Player2 joins the table at seat #2 +Player20: folds +Player24: calls $0.04 +*** FLOP *** [2d 4s 5d] +Player24: checks +Player17: checks +Player12: checks +Player22: bets $0.06 +Player9: calls $0.06 +Player24: folds +Player17: calls $0.06 +Player12: folds +*** TURN *** [2d 4s 5d] [Kc] +Player17: checks +Player22: checks +Player9: checks +*** RIVER *** [2d 4s 5d Kc] [Ks] +Player17: checks +Player22: checks +Player9: bets $0.40 +Player17: folds +Player22: folds +Uncalled bet ($0.40) returned to Player9 +Player9 collected $0.49 from pot +*** SUMMARY *** +Total pot $0.49 | Rake $0 +Board [2d 4s 5d Kc Ks] +Seat 1: Player20 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 folded on the River +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded on the River +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) collected ($0.49) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($4.95 in chips) +Seat 3: Player24 ($1.55 in chips) +Seat 4: Player17 ($3.92 in chips) +Seat 5: Player12 ($0.92 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.92 in chips) +Player2 will be allowed to play after the button +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8h Qd] +Player12: calls $0.02 +Player22: folds +Player19: folds +Player19 leaves the table +Player3: folds +Player9: calls $0.02 +Player20: raises $0.10 to $0.12 +Player24: folds +Player17: folds +Player12: calls $0.10 +Player9: folds +*** FLOP *** [3h Js Td] +Player12: checks +Player20: bets $0.20 +Player12: folds +Uncalled bet ($0.20) returned to Player20 +Player20 collected $0.29 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.29 | Rake $0 +Board [3h Js Td] +Seat 1: Player20 (button) collected ($0.29) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded before Flop +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.12 in chips) +Seat 2: Player2 ($1 in chips) +Seat 3: Player24 ($1.54 in chips) +Seat 4: Player17 ($3.90 in chips) +Seat 5: Player12 ($0.80 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.90 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jh Ah] +Player22: folds +Player3: folds +Player9: calls $0.02 +Player20: folds +Player2: checks +Player8 joins the table at seat #7 +Player24: calls $0.02 +Player17: raises $0.08 to $0.10 +Player12: folds +Player9: folds +Player2: folds +Player24: folds +Uncalled bet ($0.08) returned to Player17 +Player17 collected $0.10 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player2 folded before Flop +Seat 3: Player24 (button) folded before Flop +Seat 4: Player17 (small blind) collected ($0.10) +Seat 5: Player12 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.12 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.78 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 7: Player8 ($1.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.88 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player8: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jc 2h] +Player8: checks +Player3: folds +Player9: calls $0.02 +Player20: calls $0.02 +Player2: folds +Player24: folds +Player17: folds +Player12: calls $0.01 +Player22: checks +*** FLOP *** [Jh Tc 2d] +Player12: checks +Player22: bets $0.02 +Player8: calls $0.02 +Player9: folds +Player20: calls $0.02 +Player12: calls $0.02 +*** TURN *** [Jh Tc 2d] [Js] +Player12: checks +Player22: bets $0.08 +Player8: folds +Player20: folds +Player12: folds +Uncalled bet ($0.08) returned to Player22 +Player22 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Jh Tc 2d Js] +Seat 1: Player20 folded on the Turn +Seat 2: Player2 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded on the Turn +Seat 6: Player22 (big blind) collected ($0.18) +Seat 7: Player8 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.08 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.74 in chips) +Seat 6: Player22 ($1.78 in chips) +Seat 7: Player8 ($1.07 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.86 in chips) +Player22: posts small blind $0.01 +Player8: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kc 7s] +Player3: folds +Player9: folds +Player20: calls $0.02 +Player2: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player8: checks +*** FLOP *** [Th 5d 7h] +Player8: checks +Player20: checks +Player12: checks +*** TURN *** [Th 5d 7h] [6s] +Player8: checks +Player20: checks +Player12: checks +*** RIVER *** [Th 5d 7h 6s] [8s] +Player8: checks +Player20: bets $0.04 +Player12: folds +Player8: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.07 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [Th 5d 7h 6s 8s] +Seat 1: Player20 collected ($0.07) +Seat 2: Player2 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded on the River +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player8 (big blind) folded on the River +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.13 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.72 in chips) +Seat 6: Player22 ($1.77 in chips) +Seat 7: Player8 ($1.05 in chips) +Seat 9: Player9 ($3.86 in chips) +Player8: posts small blind $0.01 +Player3: is sitting out +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ah 2c] +Player20: folds +Player2: calls $0.02 +Player3 leaves the table +Player24: folds +Player17: folds +Player12: raises $0.06 to $0.08 +Player22: calls $0.08 +Player8: calls $0.07 +Player9: folds +Player2: calls $0.06 +*** FLOP *** [6h Js 3h] +Player8: checks +Player2: bets $0.90 and is all-in +Player12: folds +Player22: folds +Player8: calls $0.90 +*** TURN *** [6h Js 3h] [5h] +*** RIVER *** [6h Js 3h 5h] [8d] +*** SHOW DOWN *** +Player8: shows [6s 9s] (a pair of Sixes) +Player2: shows [Qc Jd] (a pair of Jacks) +Player2 collected $2.04 from pot +*** SUMMARY *** +Total pot $2.14 | Rake $0.10 +Board [6h Js 3h 5h 8d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player2 showed [Qc Jd] and won ($2.04) with a pair of Jacks +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Flop +Seat 6: Player22 (button) folded on the Flop +Seat 7: Player8 (small blind) showed [6s 9s] and lost with a pair of Sixes +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.13 in chips) +Seat 2: Player2 ($2.04 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.64 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($3.84 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks 9d] +Player2: raises $0.06 to $0.08 +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Player8: folds +Player9: calls $0.07 +Player20: folds +*** FLOP *** [Js Tc 8s] +Player9: bets $0.04 +Player2: raises $0.12 to $0.16 +Player9: calls $0.12 +*** TURN *** [Js Tc 8s] [Ad] +Player9: bets $0.10 +Player2: raises $1.70 to $1.80 and is all-in +Player9: folds +Uncalled bet ($1.70) returned to Player2 +Player2 collected $0.70 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0 +Board [Js Tc 8s Ad] +Seat 1: Player20 (big blind) folded before Flop +Seat 2: Player2 collected ($0.70) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.11 in chips) +Seat 2: Player2 ($2.40 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.64 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($3.50 in chips) +Player20: posts small blind $0.01 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 4s] +Player24: folds +Player17: raises $0.04 to $0.06 +Player12: calls $0.06 +Player22: folds +Player8: folds +Player9: calls $0.06 +Player20: folds +Player2: folds +*** FLOP *** [As 6c 5c] +Player17: bets $0.08 +Player12: calls $0.08 +Player9: raises $0.08 to $0.16 +Player17: folds +Player12: raises $0.42 to $0.58 and is all-in +Player9: calls $0.42 +*** TURN *** [As 6c 5c] [Qd] +*** RIVER *** [As 6c 5c Qd] [9d] +*** SHOW DOWN *** +Player12: shows [Ac Tc] (a pair of Aces) +Player9: mucks hand +Player12 collected $1.40 from pot +*** SUMMARY *** +Total pot $1.45 | Rake $0.05 +Board [As 6c 5c Qd 9d] +Seat 1: Player20 (small blind) folded before Flop +Seat 2: Player2 (big blind) folded before Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player12 showed [Ac Tc] and won ($1.40) with a pair of Aces +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 (button) mucked [8d Ah] + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.10 in chips) +Seat 2: Player2 ($2.38 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.84 in chips) +Seat 5: Player12 ($1.40 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($2.86 in chips) +Player2: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5c 5d] +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player8: folds +Player9: folds +Player20: calls $0.06 +Player2: folds +Player24: folds +*** FLOP *** [7d 4s 8h] +Player2 leaves the table +Player17: checks +Player20: checks +*** TURN *** [7d 4s 8h] [Th] +Player17: checks +Player13 joins the table at seat #8 +Player20: bets $0.08 +Player17: raises $0.12 to $0.20 +Player20: calls $0.12 +*** RIVER *** [7d 4s 8h Th] [4h] +Player17: checks +Player20: checks +*** SHOW DOWN *** +Player17: shows [5c 5d] (two pair, Fives and Fours) +Player20: shows [Jc Tc] (two pair, Tens and Fours) +Player20 collected $0.55 from pot +*** SUMMARY *** +Total pot $0.55 | Rake $0 +Board [7d 4s 8h Th 4h] +Seat 1: Player20 (button) showed [Jc Tc] and won ($0.55) with two pair, Tens and Fours +Seat 2: Player2 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 showed [5c 5d] and lost with two pair, Fives and Fours +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 3: Player24 ($1.50 in chips) +Seat 4: Player17 ($3.58 in chips) +Seat 5: Player12 ($1.40 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($2.86 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player13: sits out +*** HOLE CARDS *** +Dealt to Player17 [Kd 7d] +Player22: calls $0.02 +Player8: folds +Player10 joins the table at seat #2 +Player9: folds +Player20: folds +Player24: calls $0.02 +Player17: calls $0.01 +Player12: checks +*** FLOP *** [6s 9d 6d] +Player17: bets $0.08 +Player12: folds +Player22: calls $0.08 +Player24: folds +*** TURN *** [6s 9d 6d] [2c] +Player17: checks +Player22: checks +*** RIVER *** [6s 9d 6d 2c] [8h] +Player17: checks +Player22: checks +*** SHOW DOWN *** +Player17: shows [Kd 7d] (a pair of Sixes) +Player22: shows [5h 5s] (two pair, Sixes and Fives) +Player22 collected $0.24 from pot +*** SUMMARY *** +Total pot $0.24 | Rake $0 +Board [6s 9d 6d 2c 8h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded on the Flop +Seat 4: Player17 (small blind) showed [Kd 7d] and lost with a pair of Sixes +Seat 5: Player12 (big blind) folded on the Flop +Seat 6: Player22 showed [5h 5s] and won ($0.24) with two pair, Sixes and Fives +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.48 in chips) +Seat 5: Player12 ($1.38 in chips) +Seat 6: Player22 ($1.83 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 8: Player13 ($5 in chips) +Seat 9: Player9 ($2.86 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player13: posts big blind $0.02 +Player10: sits out +*** HOLE CARDS *** +Dealt to Player17 [5d 7c] +Player8: folds +Player13: checks +Player9: folds +Player20: folds +Player24: folds +Player17: calls $0.02 +Player12: calls $0.01 +Player22: checks +*** FLOP *** [7d Kd Jh] +Player12: checks +Player22: checks +Player13: checks +Player17: checks +*** TURN *** [7d Kd Jh] [7s] +Player12: checks +Player22: checks +Player13: checks +Player17: bets $0.08 +Player12: folds +Player22: folds +Player13: folds +Uncalled bet ($0.08) returned to Player17 +Player17 collected $0.08 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [7d Kd Jh 7s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) collected ($0.08) +Seat 5: Player12 (small blind) folded on the Turn +Seat 6: Player22 (big blind) folded on the Turn +Seat 7: Player8 folded before Flop (didn't bet) +Seat 8: Player13 folded on the Turn +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.29 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.54 in chips) +Seat 5: Player12 ($1.36 in chips) +Seat 6: Player22 ($1.81 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 8: Player13 ($4.98 in chips) +Seat 9: Player9 ($2.86 in chips) +Player22: posts small blind $0.01 +Player8: posts big blind $0.02 +Player10: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d Js] +Player13: folds +Player9: folds +Player20: folds +Player10: checks +Player24: folds +Player17: raises $0.06 to $0.08 +Player12: calls $0.08 +Player22: calls $0.07 +Player8: calls $0.05 and is all-in +Player10: calls $0.06 +*** FLOP *** [9c 9s Ah] +Player22: bets $0.04 +Player10: folds +Player17: folds +Player12: calls $0.04 +*** TURN *** [9c 9s Ah] [Td] +Player22: bets $0.08 +Player12: folds +Uncalled bet ($0.08) returned to Player22 +*** RIVER *** [9c 9s Ah Td] [3d] +*** SHOW DOWN *** +Player22: shows [Ac 6c] (two pair, Aces and Nines) +Player22 collected $0.12 from side pot +Player8: shows [Kh Th] (two pair, Tens and Nines) +Player22 collected $0.35 from main pot +*** SUMMARY *** +Total pot $0.47 Main pot $0.35. Side pot $0.12. | Rake $0 +Board [9c 9s Ah Td 3d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player12 (button) folded on the Turn +Seat 6: Player22 (small blind) showed [Ac 6c] and won ($0.47) with two pair, Aces and Nines +Seat 7: Player8 (big blind) showed [Kh Th] and lost with two pair, Tens and Nines +Seat 8: Player13 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.21 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.46 in chips) +Seat 5: Player12 ($1.24 in chips) +Seat 6: Player22 ($2.16 in chips) +Seat 8: Player13 ($4.98 in chips) +Seat 9: Player9 ($2.86 in chips) +Player13: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [7s 5h] +Player20: folds +Player10: calls $0.02 +Player8 leaves the table +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: folds +Player13: folds +Player9: checks +*** FLOP *** [5s 8d Kc] +Player9: checks +Player10: bets $0.06 +Player17: raises $0.08 to $0.14 +Player12: folds +Player9: folds +Player10: calls $0.08 +*** TURN *** [5s 8d Kc] [4c] +Player10: checks +Player13 leaves the table +Player17: checks +*** RIVER *** [5s 8d Kc 4c] [3s] +Player10: checks +Player7 joins the table at seat #8 +Player17: checks +*** SHOW DOWN *** +Player10: shows [2c 2h] (a pair of Deuces) +Player17: shows [7s 5h] (a pair of Fives) +Player17 collected $0.37 from pot +*** SUMMARY *** +Total pot $0.37 | Rake $0 +Board [5s 8d Kc 4c 3s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 showed [2c 2h] and lost with a pair of Deuces +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [7s 5h] and won ($0.37) with a pair of Fives +Seat 5: Player12 folded on the Flop +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 8: Player13 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.05 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.67 in chips) +Seat 5: Player12 ($1.22 in chips) +Seat 9: Player9 ($2.84 in chips) +Player20: posts small blind $0.01 +Player10: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [Js 6c] +Player24: folds +Player17: folds +Player12: folds +Player9: calls $0.02 +Player20: raises $0.04 to $0.06 +Player10: raises $0.04 to $0.10 +Player9: calls $0.08 +Player20: raises $0.30 to $0.40 +Player10: raises $0.30 to $0.70 +Player9: calls $0.60 +Player20: raises $4.69 to $5.39 and is all-in +Player10: calls $0.35 and is all-in +Player9: calls $2.14 and is all-in +Uncalled bet ($2.55) returned to Player20 +*** FLOP *** [2c 2s Ts] +*** TURN *** [2c 2s Ts] [Kd] +*** RIVER *** [2c 2s Ts Kd] [9s] +*** SHOW DOWN *** +Player20: shows [Ad Ah] (two pair, Aces and Deuces) +Player9: shows [Qs 7h] (a pair of Deuces) +Player20 collected $3.43 from side pot +Player10: shows [Kh Ks] (a full house, Kings full of Deuces) +Player10 collected $3 from main pot +*** SUMMARY *** +Total pot $6.73 Main pot $3. Side pot $3.43. | Rake $0.30 +Board [2c 2s Ts Kd 9s] +Seat 1: Player20 (small blind) showed [Ad Ah] and won ($3.43) with two pair, Aces and Deuces +Seat 2: Player10 (big blind) showed [Kh Ks] and won ($3) with a full house, Kings full of Deuces +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.98 in chips) +Seat 2: Player10 ($3 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.67 in chips) +Seat 5: Player12 ($1.22 in chips) +Player10: posts small blind $0.01 +Player24: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [6c Tc] +Player17: raises $0.04 to $0.06 +Player12: folds +Player16 joins the table at seat #7 +Player20 said, "lol everytime" +Player20: folds +Player10: raises $0.04 to $0.10 +Player24: folds +Player17: calls $0.04 +*** FLOP *** [5c Kc Jh] +Player10: checks +Player17: bets $0.08 +Player10: calls $0.08 +*** TURN *** [5c Kc Jh] [5h] +Player10: checks +Player17: checks +*** RIVER *** [5c Kc Jh 5h] [Ts] +Player10: checks +Player17: checks +*** SHOW DOWN *** +Player10: shows [Ad Ac] (two pair, Aces and Fives) +Player17: mucks hand +Player10 collected $0.38 from pot +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [5c Kc Jh 5h Ts] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player10 (small blind) showed [Ad Ac] and won ($0.38) with two pair, Aces and Fives +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 mucked [6c Tc] +Seat 5: Player12 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.98 in chips) +Seat 2: Player10 ($3.20 in chips) +Seat 3: Player24 ($1.46 in chips) +Seat 4: Player17 ($3.49 in chips) +Seat 5: Player12 ($1.22 in chips) +Seat 9: Player9 ($1.80 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [As 7h] +Player12: calls $0.02 +Player20 said, "haha nice" +Player9: calls $0.02 +Player20: calls $0.02 +Player10: calls $0.02 +Player24: calls $0.01 +Player17: checks +*** FLOP *** [Qs Qh Ad] +Player24: checks +Player17: bets $0.12 +Player12: folds +Player9: calls $0.12 +Player20: folds +Player10: folds +Player24: folds +*** TURN *** [Qs Qh Ad] [5h] +Player17: bets $0.10 +Player9: calls $0.10 +*** RIVER *** [Qs Qh Ad 5h] [Ah] +Player17: bets $0.12 +Player9: raises $1.44 to $1.56 and is all-in +Player17: calls $1.44 +*** SHOW DOWN *** +Player9: shows [Kh Jh] (a flush, Ace high) +Player17: shows [As 7h] (a full house, Aces full of Queens) +Player17 collected $3.53 from pot +*** SUMMARY *** +Total pot $3.68 | Rake $0.15 +Board [Qs Qh Ad 5h Ah] +Seat 1: Player20 folded on the Flop +Seat 2: Player10 (button) folded on the Flop +Seat 3: Player24 (small blind) folded on the Flop +Seat 4: Player17 (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens +Seat 5: Player12 folded on the Flop +Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 2: Player10 ($3.18 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.22 in chips) +Seat 5: Player12 ($1.20 in chips) +Seat 6: Player22 ($2.16 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ac 7s] +Player22: folds +Player20: folds +Player10: folds +Player24: folds +Player22 said, "nh" +Player17: raises $0.08 to $0.10 +Player12: calls $0.08 +*** FLOP *** [8c 5d Qh] +Player17 said, "tyty" +Player17: checks +Player12: checks +*** TURN *** [8c 5d Qh] [Tc] +Player17: checks +Player12: bets $0.10 +Player17: folds +Uncalled bet ($0.10) returned to Player12 +Player12 collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8c 5d Qh Tc] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) folded on the Turn +Seat 5: Player12 (big blind) collected ($0.20) +Seat 6: Player22 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 2: Player10 ($3.18 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.12 in chips) +Seat 5: Player12 ($1.30 in chips) +Seat 6: Player22 ($2.16 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [As Qc] +Player20: folds +Player10: calls $0.02 +Player24: folds +Player17: calls $0.02 +Player12: calls $0.01 +Player22: checks +*** FLOP *** [8s 8h Kd] +Player12: checks +Player22: checks +Player10: checks +Player17: checks +*** TURN *** [8s 8h Kd] [9h] +Player12: bets $0.06 +Player22: folds +Player10: calls $0.06 +Player17: folds +*** RIVER *** [8s 8h Kd 9h] [6s] +Player12: bets $0.24 +Player10: folds +Uncalled bet ($0.24) returned to Player12 +Player12 collected $0.20 from pot +Player10 leaves the table +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8s 8h Kd 9h 6s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded on the River +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the Turn +Seat 5: Player12 (small blind) collected ($0.20) +Seat 6: Player22 (big blind) folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.10 in chips) +Seat 5: Player12 ($1.42 in chips) +Seat 6: Player22 ($2.14 in chips) +Seat 7: Player16 ($1.60 in chips) +Seat 9: Player9 ($1 in chips) +Player22: posts small blind $0.01 +Player16: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [5c 8c] +Player9: calls $0.02 +Player20: folds +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: folds +Player16: checks +*** FLOP *** [Ad Kd Qh] +Player16: checks +Player9: checks +Player17: checks +Player12: checks +*** TURN *** [Ad Kd Qh] [9c] +Player16: checks +Player9: bets $0.02 +Player17: folds +Player12: calls $0.02 +Player16: folds +*** RIVER *** [Ad Kd Qh 9c] [7d] +Player9: checks +Player4 joins the table at seat #2 +Player12: checks +*** SHOW DOWN *** +Player9: shows [6c Jd] (high card Ace) +Player12: shows [5h Kh] (a pair of Kings) +Player12 collected $0.13 from pot +*** SUMMARY *** +Total pot $0.13 | Rake $0 +Board [Ad Kd Qh 9c 7d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player12 (button) showed [5h Kh] and won ($0.13) with a pair of Kings +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player16 (big blind) folded on the Turn +Seat 9: Player9 showed [6c Jd] and lost with high card Ace + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.94 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.15 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($0.94 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +Player4: sits out +*** HOLE CARDS *** +Dealt to Player17 [4h As] +Player20: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: calls $0.01 +Player9: checks +*** FLOP *** [Qh 5c 9c] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** TURN *** [Qh 5c 9c] [7d] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** RIVER *** [Qh 5c 9c 7d] [Qd] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** SHOW DOWN *** +Player7: shows [4s 5s] (two pair, Queens and Fives) +Player9: mucks hand +Player12: mucks hand +Player22: mucks hand +Player7 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [Qh 5c 9c 7d Qd] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 mucked [3h 2s] +Seat 6: Player22 mucked [Ts 6s] +Seat 7: Player16 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) showed [4s 5s] and won ($0.08) with two pair, Queens and Fives +Seat 9: Player9 (big blind) mucked [6c 2d] + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.94 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.13 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2.06 in chips) +Seat 9: Player9 ($0.92 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +Player4: sits out +*** HOLE CARDS *** +Dealt to Player17 [5s Ks] +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player16: folds +Player7: calls $0.02 +Player9: calls $0.01 +Player20: checks +*** FLOP *** [Qc 9c 5h] +Player9: checks +Player20: checks +Player12: checks +Player7: bets $0.06 +Player9: calls $0.06 +Player20: folds +Player12: calls $0.06 +*** TURN *** [Qc 9c 5h] [Td] +Player9: checks +Player12: checks +Player7: checks +*** RIVER *** [Qc 9c 5h Td] [Jh] +Player9: bets $0.20 +Player12: folds +Player7: folds +Uncalled bet ($0.20) returned to Player9 +Player9 collected $0.26 from pot +*** SUMMARY *** +Total pot $0.26 | Rake $0 +Board [Qc 9c 5h Td Jh] +Seat 1: Player20 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the River +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded on the River +Seat 9: Player9 (small blind) collected ($0.26) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.92 in chips) +Seat 2: Player4 ($1 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.05 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.10 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ts 8s] +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: calls $0.02 +Player16: calls $0.02 +Player7: calls $0.02 +Player9: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [9d 3c Js] +Player20: checks +Player4: checks +Player17: checks +Player12: checks +Player22: checks +Player16: bets $0.10 +Player7: folds +Player20: calls $0.10 +Player4: calls $0.10 +Player17: calls $0.10 +Player12: folds +Player22: folds +*** TURN *** [9d 3c Js] [Qh] +Player20: checks +Player4: checks +Player17: checks +Player16: checks +*** RIVER *** [9d 3c Js Qh] [2s] +Player20: bets $0.26 +Player4: folds +Player17: calls $0.26 +Player16: folds +*** SHOW DOWN *** +Player20: shows [2h Jh] (two pair, Jacks and Deuces) +Player17: shows [Ts 8s] (a straight, Eight to Queen) +Player17 collected $1.01 from pot +*** SUMMARY *** +Total pot $1.06 | Rake $0.05 +Board [9d 3c Js Qh 2s] +Seat 1: Player20 (small blind) showed [2h Jh] and lost with two pair, Jacks and Deuces +Seat 2: Player4 (big blind) folded on the River +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded on the Flop +Seat 7: Player16 folded on the River +Seat 8: Player7 folded on the Flop +Seat 9: Player9 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.54 in chips) +Seat 2: Player4 ($0.88 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.71 in chips) +Seat 5: Player12 ($1.03 in chips) +Seat 6: Player22 ($2.52 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.10 in chips) +Player4: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5h Qh] +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: calls $0.01 +Player24: checks +*** FLOP *** [6c 7s 9h] +Player4: bets $0.02 +Player24: calls $0.02 +Player12: calls $0.02 +Player22: calls $0.02 +Player9: calls $0.02 +*** TURN *** [6c 7s 9h] [3h] +Player4: bets $0.02 +Player24: folds +Player12: folds +Player22: calls $0.02 +Player9: calls $0.02 +*** RIVER *** [6c 7s 9h 3h] [2h] +Player4: checks +Player22: checks +Player9: bets $0.02 +Player4: folds +Player22: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.26 from pot +*** SUMMARY *** +Total pot $0.26 | Rake $0 +Board [6c 7s 9h 3h 2h] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded on the River +Seat 3: Player24 (big blind) folded on the Turn +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Turn +Seat 6: Player22 folded on the River +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 collected ($0.26) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.54 in chips) +Seat 2: Player4 ($0.82 in chips) +Seat 3: Player24 ($1.40 in chips) +Seat 4: Player17 ($5.71 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.46 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.30 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 7s] +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: calls $0.02 +Player4: calls $0.02 +Player24: calls $0.01 +Player17: checks +*** FLOP *** [7c Qs Th] +Player24: checks +Player17: checks +Player12: checks +Player22: bets $0.10 +Player9: folds +Player20: folds +Player4: calls $0.10 +Player24: folds +Player17: folds +Player12: folds +*** TURN *** [7c Qs Th] [Qd] +Player22: checks +Player4: checks +*** RIVER *** [7c Qs Th Qd] [6h] +Player22: bets $0.50 +Player4: folds +Uncalled bet ($0.50) returned to Player22 +Player22 collected $0.34 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [7c Qs Th Qd 6h] +Seat 1: Player20 folded on the Flop +Seat 2: Player4 (button) folded on the River +Seat 3: Player24 (small blind) folded on the Flop +Seat 4: Player17 (big blind) folded on the Flop +Seat 5: Player12 folded on the Flop +Seat 6: Player22 collected ($0.34) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.52 in chips) +Seat 2: Player4 ($0.70 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.69 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.68 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [As Kd] +Player22: folds +Player16: folds +Player7: folds +Player9: folds +Player20: folds +Player4: raises $0.04 to $0.06 +Player24: folds +Player17: calls $0.05 +Player12: calls $0.04 +*** FLOP *** [Kh 3c Ah] +Player17: checks +Player12: checks +Player4: checks +*** TURN *** [Kh 3c Ah] [Jh] +Player17: checks +Player12: checks +Player4: checks +*** RIVER *** [Kh 3c Ah Jh] [5c] +Player17: checks +Player12: checks +Player4: checks +*** SHOW DOWN *** +Player17: shows [As Kd] (two pair, Aces and Kings) +Player12: mucks hand +Player4: mucks hand +Player17 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Kh 3c Ah Jh 5c] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 mucked [7s 8s] +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings +Seat 5: Player12 (big blind) mucked [Ts 3s] +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.52 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.91 in chips) +Seat 6: Player22 ($2.68 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9s 2d] +Player16: folds +Player7: folds +Player9 has timed out +Player9: folds +Player20: raises $0.04 to $0.06 +Player4: folds +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.05 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player20 collected ($0.05) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.90 in chips) +Seat 6: Player22 ($2.66 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player22: posts small blind $0.01 +Player16: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kh 5c] +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: calls $0.01 +Player16: checks +*** FLOP *** [8d 5s Ts] +Player22: checks +Player16: checks +Player9: checks +Player12: checks +*** TURN *** [8d 5s Ts] [9h] +Player22: bets $0.04 +Player16: folds +Player9: folds +Player12: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.08 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [8d 5s Ts 9h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded on the Turn +Seat 6: Player22 (small blind) collected ($0.08) +Seat 7: Player16 (big blind) folded on the Turn +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.88 in chips) +Seat 6: Player22 ($2.72 in chips) +Seat 7: Player16 ($1.43 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.26 in chips) +Player16: posts small blind $0.01 +Player7: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qs 6h] +Player9 has timed out +Player9: folds +Player20: folds +Player4: calls $0.02 +Player24: calls $0.02 +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: checks +*** FLOP *** [5d Th 9c] +Player7: checks +Player4: checks +Player24: checks +Player12: bets $0.02 +Player22: folds +Player7: folds +Player4: folds +Player24: calls $0.02 +*** TURN *** [5d Th 9c] [2d] +Player24: checks +Player12: checks +*** RIVER *** [5d Th 9c 2d] [9s] +Player24: checks +Player12: bets $0.06 +Player24: folds +Uncalled bet ($0.06) returned to Player12 +Player12 collected $0.15 from pot +*** SUMMARY *** +Total pot $0.15 | Rake $0 +Board [5d Th 9c 2d 9s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded on the Flop +Seat 3: Player24 folded on the River +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 collected ($0.15) +Seat 6: Player22 (button) folded on the Flop +Seat 7: Player16 (small blind) folded before Flop +Seat 8: Player7 (big blind) folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.62 in chips) +Seat 3: Player24 ($1.34 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.70 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.26 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4d 9d] +Player20: folds +Player4: folds +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Player16: folds +Player7: raises $0.06 to $0.08 +Player9 has timed out +Player9: folds +Uncalled bet ($0.06) returned to Player7 +Player7 collected $0.04 from pot +Player7: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) collected ($0.04) +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.62 in chips) +Seat 3: Player24 ($1.34 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.70 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Js 7d] +Player24: folds +Player17: folds +Player24 leaves the table +Player12: folds +Player22: calls $0.02 +Player16: folds +Player1 joins the table at seat #3 +Player7: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [Jc 2d 9d] +Player20: checks +Player4: checks +Player22: checks +*** TURN *** [Jc 2d 9d] [Ac] +Player20: checks +Player4: checks +Player22: bets $0.04 +Player20: folds +Player4: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.06 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [Jc 2d 9d Ac] +Seat 1: Player20 (small blind) folded on the Turn +Seat 2: Player4 (big blind) folded on the Turn +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 collected ($0.06) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.53 in chips) +Seat 2: Player4 ($0.60 in chips) +Seat 3: Player1 ($2 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.24 in chips) +Player4: posts small blind $0.01 +Player1: posts big blind $0.02 +Player9: posts small blind $0.01 +*** HOLE CARDS *** +Dealt to Player17 [9c 8s] +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: calls $0.01 +Player1: checks +*** FLOP *** [Td 3s Th] +Player4: checks +Player1: checks +Player12: checks +Player22: checks +Player9: checks +*** TURN *** [Td 3s Th] [9s] +Player4: checks +Player1: checks +Player12: checks +Player22: bets $0.08 +Player9: folds +Player4: folds +Player1: folds +Player12: folds +Uncalled bet ($0.08) returned to Player22 +Player22 collected $0.11 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.11 | Rake $0 +Board [Td 3s Th 9s] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded on the Turn +Seat 3: Player1 (big blind) folded on the Turn +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Turn +Seat 6: Player22 collected ($0.11) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.53 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.98 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.21 in chips) +Player1: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9d Qc] +Player12: folds +Player22: folds +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: raises $0.04 to $0.06 +Player4: folds +Player1: folds +Player17: folds +Player9: calls $0.04 +*** FLOP *** [6d 4d Qh] +Player9: checks +Player20: checks +*** TURN *** [6d 4d Qh] [Ac] +Player9: checks +Player20: checks +*** RIVER *** [6d 4d Qh Ac] [Ah] +Player9: bets $0.02 +Player20: calls $0.02 +*** SHOW DOWN *** +Player9: shows [2d Qd] (two pair, Aces and Queens) +Player20: mucks hand +Player9 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [6d 4d Qh Ac Ah] +Seat 1: Player20 mucked [Kc Jd] +Seat 2: Player4 (button) folded before Flop (didn't bet) +Seat 3: Player1 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded before Flop +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.45 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.97 in chips) +Seat 4: Player17 ($5.79 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Td 2h] +Player22: folds +Player16: raises $0.06 to $0.08 +Player7: folds +Player9: folds +Player20: folds +Player4: folds +Player1: calls $0.08 +Player17: folds +Player12: folds +*** FLOP *** [9c 7d 3h] +Player16: checks +Player1: checks +*** TURN *** [9c 7d 3h] [9h] +Player16: bets $0.06 +Player1: folds +Uncalled bet ($0.06) returned to Player16 +Player16 collected $0.19 from pot +Player16: doesn't show hand +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [9c 7d 3h 9h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 (button) folded on the Turn +Seat 4: Player17 (small blind) folded before Flop +Seat 5: Player12 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 collected ($0.19) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.45 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.89 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.95 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.53 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 6s] +Player16: folds +Player16 leaves the table +Player7: folds +Player9: folds +Player20: raises $0.04 to $0.06 +Player4: folds +Player1: folds +Player17: folds +Player12: calls $0.05 +Player22: calls $0.04 +*** FLOP *** [Ts Kc Jd] +Player6 joins the table at seat #7 +Player12: checks +Player22: bets $0.06 +Player20: folds +Player12: folds +Uncalled bet ($0.06) returned to Player22 +Player22 collected $0.18 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Ts Kc Jd] +Seat 1: Player20 folded on the Flop +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded on the Flop +Seat 6: Player22 (big blind) collected ($0.18) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.89 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($2.95 in chips) +Seat 7: Player6 ($2 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player22: posts small blind $0.01 +Player6: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks Jd] +Player7: calls $0.02 +Player9: folds +Player20: folds +Player4: calls $0.02 +Player1: raises $0.04 to $0.06 +Player17: folds +Player12: folds +Player22: calls $0.05 +Player6: calls $0.04 +Player7: calls $0.04 +Player4: calls $0.04 +*** FLOP *** [5c 3h 4s] +Player22: bets $0.04 +Player6: calls $0.04 +Player7: folds +Player4: calls $0.04 +Player1: calls $0.04 +*** TURN *** [5c 3h 4s] [Qh] +Player22: checks +Player6: checks +Player4: checks +Player1: checks +*** RIVER *** [5c 3h 4s Qh] [6h] +Player22: bets $0.04 +Player6: folds +Player4: folds +Player1: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.46 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.46 | Rake $0 +Board [5c 3h 4s Qh 6h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded on the River +Seat 3: Player1 folded on the River +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) collected ($0.46) +Seat 7: Player6 (big blind) folded on the River +Seat 8: Player7 folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.90 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.32 in chips) +Player6: posts small blind $0.01 +Player7: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qs 9s] +Player9: folds +Player20: folds +Player4: folds +Player1: folds +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player7 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.32 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4d Js] +Player20: folds +Player4: folds +Player1: folds +Player17: folds +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Uncalled bet ($0.01) returned to Player9 +Player9 collected $0.02 from pot +*** SUMMARY *** +Total pot $0.02 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) folded before Flop +Seat 9: Player9 (big blind) collected ($0.02) + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.33 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qd 2s] +Player4: folds +Player1 has timed out +Player1: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player6: folds +Player7: folds +Player9: calls $0.01 +Player20: checks +*** FLOP *** [Qs 6d 4s] +Player9: checks +Player20: checks +Player12: bets $0.02 +Player9: folds +Player20: folds +Uncalled bet ($0.02) returned to Player12 +Player12 collected $0.06 from pot +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [Qs 6d 4s] +Seat 1: Player20 (big blind) folded on the Flop +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 collected ($0.06) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded on the Flop + + + +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.37 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.93 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.31 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc 6c] +Player1: folds +Player17: folds +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Player9: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [4h 7d Td] +Player20: checks +Player4: checks +*** TURN *** [4h 7d Td] [3d] +Player20: checks +Player4: checks +*** RIVER *** [4h 7d Td 3d] [Qs] +Player20: bets $0.04 +Player4: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.04 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Board [4h 7d Td 3d Qs] +Seat 1: Player20 (small blind) collected ($0.04) +Seat 2: Player4 (big blind) folded on the River +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded before Flop (didn't bet) + + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt new file mode 100644 index 00000000..ddeaa4bb --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt @@ -0,0 +1,45 @@ +PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] +Table '999999999' 9-max Seat #1 is the button +Seat 1: Player2 ($0.88 in chips) +Seat 2: Player0 ($1.61 in chips) +Seat 3: Player5 ($5.27 in chips) +Seat 5: Player1 ($2.15 in chips) +Seat 6: Player3 ($2.55 in chips) +Seat 7: Player6 ($2.90 in chips) +Seat 9: Player4 ($1.93 in chips) +Player0: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player0 [Td Qc] +Player1: folds +Player3: calls $0.02 +Player3 said, "":D"" +Player6: folds +Player4: folds +Player2 has timed out +Player2: folds +Player0: calls $0.01 +Player5: checks +*** FLOP *** [7d 2s Jc] +Player0: checks +Player5: checks +Player3: checks +*** TURN *** [7d 2s Jc] [2h] +Player0: folds +Player5: bets $0.06 +Player3: folds +Uncalled bet ($0.06) returned to Player5 +Player5 collected $0.06 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [7d 2s Jc 2h] +Seat 1: Player2 (button) folded before Flop (didn't bet) +Seat 2: Player0 (small blind) folded on the Turn +Seat 3: Player5 (big blind) collected ($0.06) +Seat 5: Player1 folded before Flop (didn't bet) +Seat 6: Player3 folded on the Turn +Seat 7: Player6 folded before Flop (didn't bet) +Seat 9: Player4 folded before Flop (didn't bet) + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt new file mode 100644 index 00000000..98ce48d6 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt @@ -0,0 +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 *** +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 + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt new file mode 100644 index 00000000..ccc6876f --- /dev/null +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt @@ -0,0 +1,1510 @@ +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (300 in chips) +Seat 2: Player21 (300 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (300 in chips) +Seat 6: Player0 (300 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player21: posts small blind 25 +Player12: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [4s 9d] +Player11: raises 540 to 590 and is all-in +Player18: calls 290 and is all-in +Player0: folds +Player6: calls 290 and is all-in +Player21: folds +Player12: calls 240 and is all-in +Uncalled bet (300) returned to Player11 +*** FLOP *** [4c 5d Ts] +*** TURN *** [4c 5d Ts] [Js] +*** RIVER *** [4c 5d Ts Js] [7c] +*** SHOW DOWN *** +Player12: shows [3c Kh] (high card King) +Player11: shows [8h 7s] (a pair of Sevens) +Player18: shows [4s 9d] (a pair of Fours) +Player6: shows [Qc Td] (a pair of Tens) +Player6 collected 1245 from pot +Player18 re-buys and receives 600 chips for 2 FPPs +Player12 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 1245 | Rake 0 +Board [4c 5d Ts Js 7c] +Seat 1: Player6 (button) showed [Qc Td] and won (1245) with a pair of Tens +Seat 2: Player21 (small blind) folded before Flop +Seat 3: Player12 (big blind) showed [3c Kh] and lost with high card King +Seat 4: Player11 showed [8h 7s] and lost with a pair of Sevens +Seat 5: Player18 showed [4s 9d] and lost with a pair of Fours +Seat 6: Player0 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (1245 in chips) +Seat 2: Player21 (265 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (300 in chips) +Seat 5: Player18 (600 in chips) +Seat 6: Player0 (290 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player12: posts small blind 25 +Player11: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [Qs 7c] +Player18: raises 540 to 590 and is all-in +Player0: folds +Player6: raises 540 to 1130 +Player21: folds +Player12: calls 265 and is all-in +Player11: calls 240 and is all-in +Uncalled bet (540) returned to Player6 +*** FLOP *** [Jc 4c 5d] +*** TURN *** [Jc 4c 5d] [3c] +*** RIVER *** [Jc 4c 5d 3c] [3h] +*** SHOW DOWN *** +Player18: shows [Qs 7c] (a pair of Threes) +Player6: shows [Ah 8c] (a pair of Threes - Ace kicker) +Player6 collected 600 from side pot +Player12: shows [8s Qd] (a pair of Threes - lower kicker) +Player11: shows [2c Jh] (two pair, Jacks and Threes) +Player11 collected 1220 from main pot +Player18 re-buys and receives 600 chips for 2 FPPs +Player12 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 1820 Main pot 1220. Side pot 600. | Rake 0 +Board [Jc 4c 5d 3c 3h] +Seat 1: Player6 showed [Ah 8c] and won (600) with a pair of Threes +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player12 (small blind) showed [8s Qd] and lost with a pair of Threes +Seat 4: Player11 (big blind) showed [2c Jh] and won (1220) with two pair, Jacks and Threes +Seat 5: Player18 showed [Qs 7c] and lost with a pair of Threes +Seat 6: Player0 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (1245 in chips) +Seat 2: Player21 (255 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (1220 in chips) +Seat 5: Player18 (600 in chips) +Seat 6: Player0 (280 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player11: posts small blind 25 +Player18: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [2h Qd] +Player0: raises 150 to 200 +Player6: folds +Player21: folds +Player12: folds +Player11: folds +Player18: raises 350 to 550 +Player0: calls 70 and is all-in +Uncalled bet (280) returned to Player18 +*** FLOP *** [9s Ks Th] +*** TURN *** [9s Ks Th] [Jc] +*** RIVER *** [9s Ks Th Jc] [5h] +*** SHOW DOWN *** +Player18: shows [2h Qd] (a straight, Nine to King) +Player0: shows [As Jd] (a pair of Jacks) +Player18 collected 625 from pot +Player0 finished the tournament in 273rd place +*** SUMMARY *** +Total pot 625 | Rake 0 +Board [9s Ks Th Jc 5h] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player12 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) folded before Flop +Seat 5: Player18 (big blind) showed [2h Qd] and won (625) with a straight, Nine to King +Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (1235 in chips) +Seat 2: Player21 (245 in chips) +Seat 3: Player12 (290 in chips) +Seat 4: Player11 (1185 in chips) +Seat 5: Player18 (945 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player18: posts small blind 25 +Player6: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [6d Jc] +Player21: raises 185 to 235 and is all-in +Player12: folds +Player11: calls 235 +Player18: raises 185 to 420 +Player6: raises 805 to 1225 and is all-in +Player11: calls 940 and is all-in +Player18: calls 515 and is all-in +Uncalled bet (50) returned to Player6 +Player13 is connected +*** FLOP *** [5c As Ts] +*** TURN *** [5c As Ts] [6c] +*** RIVER *** [5c As Ts 6c] [6h] +*** SHOW DOWN *** +Player6: shows [8h 9d] (a pair of Sixes) +Player11: shows [2h 2s] (two pair, Sixes and Deuces) +Player11 collected 480 from side pot-2 +Player18: shows [6d Jc] (three of a kind, Sixes) +Player18 collected 2100 from side pot-1 +Player21: shows [Tc Ah] (two pair, Aces and Tens) +Player18 collected 990 from main pot +Player21 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 3570 Main pot 990. Side pot-1 2100. Side pot-2 480. | Rake 0 +Board [5c As Ts 6c 6h] +Seat 1: Player6 (big blind) showed [8h 9d] and lost with a pair of Sixes +Seat 2: Player21 showed [Tc Ah] and lost with two pair, Aces and Tens +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 (button) showed [2h 2s] and won (480) with two pair, Sixes and Deuces +Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (50 in chips) +Seat 2: Player21 (300 in chips) +Seat 3: Player12 (280 in chips) +Seat 4: Player11 (480 in chips) +Seat 5: Player18 (3090 in chips) +Seat 6: Player13 (1475 in chips) out of hand (moved from another table into small blind) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player6: posts small blind 25 +Player21: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [9h Qd] +Player6 re-buys and receives 300 chips for 1 FPPs +Player12: raises 220 to 270 and is all-in +Player11: folds +Player18: raises 1230 to 1500 +Player6: calls 15 and is all-in +Player21: folds +Uncalled bet (1230) returned to Player18 +*** FLOP *** [2h 8c 5h] +*** TURN *** [2h 8c 5h] [Ac] +*** RIVER *** [2h 8c 5h Ac] [2s] +*** SHOW DOWN *** +Player12: shows [Kh 6h] (a pair of Deuces) +Player18: shows [9h Qd] (a pair of Deuces - lower kicker) +Player12 collected 470 from side pot +Player6: shows [As 8s] (two pair, Aces and Eights) +Player12 is sitting out +Player6 collected 210 from main pot +*** SUMMARY *** +Total pot 680 Main pot 210. Side pot 470. | Rake 0 +Board [2h 8c 5h Ac 2s] +Seat 1: Player6 (small blind) showed [As 8s] and won (210) with two pair, Aces and Eights +Seat 2: Player21 (big blind) folded before Flop +Seat 3: Player12 showed [Kh 6h] and won (470) with a pair of Deuces +Seat 4: Player11 folded before Flop (didn't bet) +Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (510 in chips) +Seat 2: Player21 (240 in chips) +Seat 3: Player12 (470 in chips) is sitting out +Seat 4: Player11 (470 in chips) +Seat 5: Player18 (2810 in chips) +Seat 6: Player13 (1475 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player21: posts small blind 50 +Player12: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [Jc Td] +Player11: raises 350 to 450 and is all-in +Player18: raises 2340 to 2790 and is all-in +Player13: folds +Player6: calls 490 and is all-in +Player21: folds +Player12: folds +Uncalled bet (2300) returned to Player18 +*** FLOP *** [2c 4h 3c] +*** TURN *** [2c 4h 3c] [Ac] +*** RIVER *** [2c 4h 3c Ac] [9c] +*** SHOW DOWN *** +Player18: shows [Jc Td] (a flush, Ace high) +Player6: shows [Th Ks] (high card Ace) +Player18 collected 80 from side pot +Player11: shows [8h 9d] (a pair of Nines) +Player18 collected 1620 from main pot +Player11 re-buys and receives 600 chips for 2 FPPs +Player6 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1700 Main pot 1620. Side pot 80. | Rake 0 +Board [2c 4h 3c Ac 9c] +Seat 1: Player6 (button) showed [Th Ks] and lost with high card Ace +Seat 2: Player21 (small blind) folded before Flop +Seat 3: Player12 (big blind) folded before Flop +Seat 4: Player11 showed [8h 9d] and lost with a pair of Nines +Seat 5: Player18 showed [Jc Td] and won (1700) with a flush, Ace high +Seat 6: Player13 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (600 in chips) +Seat 2: Player21 (170 in chips) +Seat 3: Player12 (350 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (4000 in chips) +Seat 6: Player13 (1455 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player12: posts small blind 50 +Player11: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [Jd 6s] +Player18: raises 3880 to 3980 and is all-in +Player13: calls 1435 and is all-in +Player6: folds +Player21: folds +Player12: folds +Player11: calls 480 and is all-in +Uncalled bet (2545) returned to Player18 +*** FLOP *** [Kd 9s Qh] +*** TURN *** [Kd 9s Qh] [Ts] +*** RIVER *** [Kd 9s Qh Ts] [7c] +*** SHOW DOWN *** +Player18: shows [Jd 6s] (a straight, Nine to King) +Player13: shows [Kc As] (a pair of Kings) +Player18 collected 1710 from side pot +Player11: shows [8s 4h] (high card King) +Player18 collected 1910 from main pot +Player13 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3620 Main pot 1910. Side pot 1710. | Rake 0 +Board [Kd 9s Qh Ts 7c] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player12 (small blind) folded before Flop +Seat 4: Player11 (big blind) showed [8s 4h] and lost with high card King +Seat 5: Player18 showed [Jd 6s] and won (3620) with a straight, Nine to King +Seat 6: Player13 showed [Kc As] and lost with a pair of Kings + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (580 in chips) +Seat 2: Player21 (150 in chips) +Seat 3: Player12 (280 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (6165 in chips) +Seat 6: Player13 (600 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player11: posts small blind 50 +Player18: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [6s Kd] +Player13: raises 480 to 580 and is all-in +Player6: folds +Player21: folds +Player12: folds +Player11: calls 530 and is all-in +Player18: calls 480 +*** FLOP *** [Tc 6c 7c] +*** TURN *** [Tc 6c 7c] [2c] +*** RIVER *** [Tc 6c 7c 2c] [Qs] +*** SHOW DOWN *** +Player11: shows [Ks 3h] (high card King) +Player18: shows [6s Kd] (a pair of Sixes) +Player13: shows [9s 2d] (a pair of Deuces) +Player18 collected 1860 from pot +Player13 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1860 | Rake 0 +Board [Tc 6c 7c 2c Qs] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player12 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) showed [Ks 3h] and lost with high card King +Seat 5: Player18 (big blind) showed [6s Kd] and won (1860) with a pair of Sixes +Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (560 in chips) +Seat 2: Player21 (130 in chips) +Seat 3: Player12 (260 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (7425 in chips) +Seat 6: Player13 (600 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player18: posts small blind 50 +Player13: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [8d 9h] +Player6: raises 440 to 540 and is all-in +Player21: calls 110 and is all-in +Player12: folds +Player11: calls 540 +Player18: calls 490 +Player13: raises 40 to 580 and is all-in +Player11: calls 40 and is all-in +Player18: calls 40 +*** FLOP *** [Td 4s Th] +*** TURN *** [Td 4s Th] [Qd] +*** RIVER *** [Td 4s Th Qd] [Qs] +*** SHOW DOWN *** +Player18: shows [8d 9h] (two pair, Queens and Tens) +Player13: shows [3d 3h] (two pair, Queens and Tens - lower kicker) +Player11: shows [9c 3s] (two pair, Queens and Tens) +Player18 collected 60 from side pot-2 +Player11 collected 60 from side pot-2 +Player6: shows [Kh 7d] (two pair, Queens and Tens - King kicker) +Player6 collected 1720 from side pot-1 +Player21: shows [Kd Qc] (a full house, Queens full of Tens) +Player21 collected 670 from main pot +Player13 has timed out while disconnected +Player13 is sitting out +Player13 finished the tournament in 224th place +*** SUMMARY *** +Total pot 2510 Main pot 670. Side pot-1 1720. Side pot-2 120. | Rake 0 +Board [Td 4s Th Qd Qs] +Seat 1: Player6 showed [Kh 7d] and won (1720) with two pair, Queens and Tens +Seat 2: Player21 showed [Kd Qc] and won (670) with a full house, Queens full of Tens +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 (button) showed [9c 3s] and won (60) with two pair, Queens and Tens +Seat 5: Player18 (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens +Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and Tens + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (1720 in chips) +Seat 2: Player21 (670 in chips) +Seat 3: Player12 (240 in chips) is sitting out +Seat 4: Player11 (60 in chips) +Seat 5: Player18 (6885 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player12: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player6: posts small blind 100 +Player21: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Td 9d] +Player12: folds +Player11: calls 20 and is all-in +Player7 is connected +Player18: raises 6645 to 6845 and is all-in +Player6: folds +Player21: folds +Uncalled bet (6645) returned to Player18 +*** FLOP *** [9s As 2s] +*** TURN *** [9s As 2s] [4h] +*** RIVER *** [9s As 2s 4h] [5h] +*** SHOW DOWN *** +Player18: shows [Td 9d] (a pair of Nines) +Player18 collected 440 from side pot +Player11: shows [Jh 7s] (high card Ace) +Player18 collected 280 from main pot +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 720 Main pot 280. Side pot 440. | Rake 0 +Board [9s As 2s 4h 5h] +Seat 1: Player6 (small blind) folded before Flop +Seat 2: Player21 (big blind) folded before Flop +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 showed [Jh 7s] and lost with high card Ace +Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (1580 in chips) +Seat 2: Player21 (430 in chips) +Seat 3: Player12 (200 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (7365 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player12: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player21: posts small blind 100 +Player12: posts big blind 160 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [2c 4d] +Player11: raises 400 to 560 and is all-in +Player18: raises 6765 to 7325 and is all-in +Player7: calls 560 and is all-in +Player6: folds +Player21: calls 290 and is all-in +Player12: folds +Uncalled bet (6765) returned to Player18 +*** FLOP *** [3s Js 5c] +*** TURN *** [3s Js 5c] [9c] +*** RIVER *** [3s Js 5c 9c] [7d] +*** SHOW DOWN *** +Player11: shows [Qc Jc] (a pair of Jacks) +Player18: shows [2c 4d] (high card Jack) +Player7: shows [Qd Jh] (a pair of Jacks) +Player11 collected 255 from side pot-2 +Player7 collected 255 from side pot-2 +Player21: shows [As Ac] (a pair of Aces) +Player21 collected 920 from side pot-1 +Player21 collected 1040 from main pot +Player12 finished the tournament in 214th place +*** SUMMARY *** +Total pot 2470 Main pot 1040. Side pot-1 920. Side pot-2 510. | Rake 0 +Board [3s Js 5c 9c 7d] +Seat 1: Player6 (button) folded before Flop (didn't bet) +Seat 2: Player21 (small blind) showed [As Ac] and won (1960) with a pair of Aces +Seat 3: Player12 (big blind) folded before Flop +Seat 4: Player11 showed [Qc Jc] and won (255) with a pair of Jacks +Seat 5: Player18 showed [2c 4d] and lost with high card Jack +Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (1540 in chips) +Seat 2: Player21 (1960 in chips) +Seat 4: Player11 (255 in chips) +Seat 5: Player18 (6765 in chips) +Seat 6: Player7 (255 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player11: posts small blind 100 +Player18: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Ts 9h] +Player7: raises 15 to 215 and is all-in +Player6: calls 215 +Player21: folds +Player11: calls 115 and is all-in +Player16 is connected +Player18: calls 15 +*** FLOP *** [8h Td 7s] +Player18: checks +Player6: bets 400 +Player18: raises 800 to 1200 +Player6: raises 85 to 1285 and is all-in +Player18: calls 85 +*** TURN *** [8h Td 7s] [6s] +*** RIVER *** [8h Td 7s 6s] [Kd] +*** SHOW DOWN *** +Player18: shows [Ts 9h] (a straight, Six to Ten) +Player6: shows [Jh Tc] (a pair of Tens) +Player18 collected 2570 from side pot +Player7: shows [Ah 9d] (a straight, Six to Ten) +Player11: shows [9s Qd] (a straight, Six to Ten) +Player11 collected 354 from main pot +Player18 collected 353 from main pot +Player7 collected 353 from main pot +Player6 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3630 Main pot 1060. Side pot 2570. | Rake 0 +Board [8h Td 7s 6s Kd] +Seat 1: Player6 showed [Jh Tc] and lost with a pair of Tens +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) showed [9s Qd] and won (354) with a straight, Six to Ten +Seat 5: Player18 (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten +Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (600 in chips) +Seat 2: Player21 (1920 in chips) +Seat 3: Player16 (3020 in chips) +Seat 4: Player11 (354 in chips) +Seat 5: Player18 (8148 in chips) +Seat 6: Player7 (353 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player16: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player18: posts small blind 100 +Player7: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Ks 4c] +Player6 said, "dikhead" +Player6: folds +Player18 said, "chatban" +Player21: folds +Player16: raises 200 to 400 +Player11: calls 314 and is all-in +Player18: calls 300 +Player7: calls 113 and is all-in +*** FLOP *** [9c 5d 2d] +Player18: checks +Player16: checks +*** TURN *** [9c 5d 2d] [Kh] +Player18: checks +Player16: checks +*** RIVER *** [9c 5d 2d Kh] [9d] +Player18: checks +Player16: checks +*** SHOW DOWN *** +Player18: shows [Ks 4c] (two pair, Kings and Nines) +Player16: mucks hand +Player18 collected 172 from side pot-2 +Player11: mucks hand +Player6 said, "cok face dip shiit" +Player18 collected 3 from side pot-1 +Player7: mucks hand +Player18 collected 1492 from main pot +Player7 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1667 Main pot 1492. Side pot-1 3. Side pot-2 172. | Rake 0 +Board [9c 5d 2d Kh 9d] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player16 mucked [Ad 5c] +Seat 4: Player11 (button) mucked [4h 4d] +Seat 5: Player18 (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines +Seat 6: Player7 (big blind) mucked [Qh 2s] + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (560 in chips) +Seat 2: Player21 (1880 in chips) +Seat 3: Player16 (2580 in chips) +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (9375 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player11: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player7: posts small blind 200 +Player6: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [As Ad] +Player18 said, "chatban" +Player21: raises 1400 to 1800 and is all-in +Player16: folds +Player11: calls 520 and is all-in +Player18: raises 7495 to 9295 and is all-in +Player7: calls 320 and is all-in +Player6: calls 80 and is all-in +Uncalled bet (7495) returned to Player18 +*** FLOP *** [6h 8d 2c] +*** TURN *** [6h 8d 2c] [8s] +Player11 is disconnected +*** RIVER *** [6h 8d 2c 8s] [8h] +*** SHOW DOWN *** +Player21: shows [5d 5s] (a full house, Eights full of Fives) +Player18: shows [As Ad] (a full house, Eights full of Aces) +Player6 said, "cok face dik sucker" +Player18 collected 2560 from side pot-2 +Player7: shows [3h Jh] (three of a kind, Eights) +Player11: shows [5h Kd] (three of a kind, Eights) +Player18 collected 160 from side pot-1 +Player6: shows [3d Tc] (three of a kind, Eights) +Player18 collected 2880 from main pot +Player6 said, "cok head" +Player7 re-buys and receives 600 chips for 2 FPPs +Player18 said, "lol" +Player6 said, "dik" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dikd" +Player6 said, "idk" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dik" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "hahahahaha" +Player6 said, "dik" +Player6 said, "dio" +Player11 has timed out while disconnected +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 re-buys and receives 300 chips for 1 FPPs +Player11 finished the tournament in 185th place +*** SUMMARY *** +Total pot 5600 Main pot 2880. Side pot-1 160. Side pot-2 2560. | Rake 0 +Board [6h 8d 2c 8s 8h] +Seat 1: Player6 (big blind) showed [3d Tc] and lost with three of a kind, Eights +Seat 2: Player21 showed [5d 5s] and lost with a full house, Eights full of Fives +Seat 3: Player16 folded before Flop (didn't bet) +Seat 4: Player11 showed [5h Kd] and lost with three of a kind, Eights +Seat 5: Player18 (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces +Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eights + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player6 (300 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (2500 in chips) +Seat 5: Player18 (13095 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player6: posts small blind 200 +Player21: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [3s 4d] +Player16: folds +Player18: raises 400 to 800 +Player7: folds +Player6: calls 20 and is all-in +Player21: calls 120 and is all-in +Uncalled bet (280) returned to Player18 +*** FLOP *** [Kh Jc 7c] +*** TURN *** [Kh Jc 7c] [Kd] +*** RIVER *** [Kh Jc 7c Kd] [3c] +*** SHOW DOWN *** +Player21: shows [5h Qc] (a pair of Kings) +Player18: shows [3s 4d] (two pair, Kings and Threes) +Player1 is connected +Player6 said, "haha dik" +Player18 collected 600 from side pot +Player6: shows [4s 7d] (two pair, Kings and Sevens) +Player6 collected 1060 from main pot +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 said, "dik head" +*** SUMMARY *** +Total pot 1660 Main pot 1060. Side pot 600. | Rake 0 +Board [Kh Jc 7c Kd 3c] +Seat 1: Player6 (small blind) showed [4s 7d] and won (1060) with two pair, Kings and Sevens +Seat 2: Player21 (big blind) showed [5h Qc] and lost with a pair of Kings +Seat 3: Player16 folded before Flop (didn't bet) +Seat 5: Player18 showed [3s 4d] and won (600) with two pair, Kings and Threes +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (1060 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (2420 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (13095 in chips) +Seat 6: Player7 (520 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player1: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player21: posts small blind 200 +Player16: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [5d 6c] +Player18 said, "hahahaha" +Player1: raises 120 to 520 and is all-in +Player18: calls 520 +Player7: calls 440 and is all-in +Player6: folds +Player21: calls 320 and is all-in +Player16: calls 120 +*** FLOP *** [8d 8c 7d] +Player16: checks +Player18: checks +*** TURN *** [8d 8c 7d] [Qd] +Player16: checks +Player18: checks +*** RIVER *** [8d 8c 7d Qd] [Ah] +Player16: checks +Player18: checks +*** SHOW DOWN *** +Player21: shows [Th Ts] (two pair, Tens and Eights) +Player16: mucks hand +Player1: mucks hand +Player18: mucks hand +Player21 collected 320 from side pot +Player7: shows [Td Qc] (two pair, Queens and Eights) +Player6 said, "dik" +Player7 collected 2680 from main pot +Player1 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3000 Main pot 2680. Side pot 320. | Rake 0 +Board [8d 8c 7d Qd Ah] +Seat 1: Player6 (button) folded before Flop (didn't bet) +Seat 2: Player21 (small blind) showed [Th Ts] and won (320) with two pair, Tens and Eights +Seat 3: Player16 (big blind) mucked [Js 2c] +Seat 4: Player1 mucked [2h 9d] +Seat 5: Player18 mucked [5d 6c] +Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (980 in chips) +Seat 2: Player21 (320 in chips) +Seat 3: Player16 (1820 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (12495 in chips) +Seat 6: Player7 (2680 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player16: posts small blind 300 +Player1: posts big blind 480 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [2c 9h] +Player18: folds +Player7: folds +Player6: raises 380 to 860 and is all-in +Player21: folds +Player16: calls 560 +*** FLOP *** [Kd 7c Ad] +Player6 said, "bye dik head" +*** TURN *** [Kd 7c Ad] [4d] +*** RIVER *** [Kd 7c Ad 4d] [6d] +*** SHOW DOWN *** +Player16: shows [Jh 3h] (high card Ace) +Player6: shows [Jc 9c] (high card Ace - King+Jack+Nine kicker) +Player6 collected 760 from side pot +Player1: shows [Js 7h] (a pair of Sevens) +Player1 collected 2160 from main pot +*** SUMMARY *** +Total pot 2920 Main pot 2160. Side pot 760. | Rake 0 +Board [Kd 7c Ad 4d 6d] +Seat 1: Player6 showed [Jc 9c] and won (760) with high card Ace +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player16 (small blind) showed [Jh 3h] and lost with high card Ace +Seat 4: Player1 (big blind) showed [Js 7h] and won (2160) with a pair of Sevens +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (760 in chips) +Seat 2: Player21 (200 in chips) +Seat 3: Player16 (840 in chips) +Seat 4: Player1 (2160 in chips) +Seat 5: Player18 (12375 in chips) +Seat 6: Player7 (2560 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player1: posts small blind 300 +Player18: posts big blind 600 +*** HOLE CARDS *** +Dealt to Player18 [2d 4h] +Player7: folds +Player6 said, "dik face" +Player6: raises 40 to 640 and is all-in +Player21: calls 80 and is all-in +Player16: folds +Player1: folds +Player18: calls 40 +*** FLOP *** [5h 4d 9h] +Player6 said, "bye dumb shiiit" +*** TURN *** [5h 4d 9h] [6d] +*** RIVER *** [5h 4d 9h 6d] [Jd] +*** SHOW DOWN *** +Player18: shows [2d 4h] (a pair of Fours) +Player6: shows [Jc Ad] (a pair of Jacks) +Player6 collected 1340 from side pot +Player21: shows [7h 7d] (a pair of Sevens) +Player6 collected 1040 from main pot +Player6 said, "ok" +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 said, "not yet" +*** SUMMARY *** +Total pot 2380 Main pot 1040. Side pot 1340. | Rake 0 +Board [5h 4d 9h 6d Jd] +Seat 1: Player6 showed [Jc Ad] and won (2380) with a pair of Jacks +Seat 2: Player21 showed [7h 7d] and lost with a pair of Sevens +Seat 3: Player16 (button) folded before Flop (didn't bet) +Seat 4: Player1 (small blind) folded before Flop +Seat 5: Player18 (big blind) showed [2d 4h] and lost with a pair of Fours +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (2380 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (720 in chips) +Seat 4: Player1 (1740 in chips) +Seat 5: Player18 (11615 in chips) +Seat 6: Player7 (2440 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player18: posts small blind 300 +Player7: posts big blind 600 +*** HOLE CARDS *** +Dealt to Player18 [Jd Js] +Player6: raises 1660 to 2260 and is all-in +Player21: folds +Player16: calls 600 and is all-in +Player1: calls 1620 and is all-in +Player18: calls 1960 +Player7: folds +*** FLOP *** [Kc 8d Qh] +Player6 said, "comn dik face omg ur so **** dik heads" +*** TURN *** [Kc 8d Qh] [5s] +*** RIVER *** [Kc 8d Qh 5s] [9s] +*** SHOW DOWN *** +Player18: shows [Jd Js] (a pair of Jacks) +Player6: shows [4c 4s] (a pair of Fours) +Player18 collected 1280 from side pot-2 +Player1: shows [As 4d] (high card Ace) +Player18 collected 3060 from side pot-1 +Player16: shows [Td Ks] (a pair of Kings) +Player6 said, "bye **** head" +Player16 collected 3720 from main pot +Player18 said, "byebye" +Player1 re-buys and receives 600 chips for 2 FPPs +Player6 finished the tournament in 155th place +*** SUMMARY *** +Total pot 8060 Main pot 3720. Side pot-1 3060. Side pot-2 1280. | Rake 0 +Board [Kc 8d Qh 5s 9s] +Seat 1: Player6 showed [4c 4s] and lost with a pair of Fours +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player16 showed [Td Ks] and won (3720) with a pair of Kings +Seat 4: Player1 (button) showed [As 4d] and lost with high card Ace +Seat 5: Player18 (small blind) showed [Jd Js] and won (4340) with a pair of Jacks +Seat 6: Player7 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 2: Player21 (480 in chips) +Seat 3: Player16 (3720 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (13575 in chips) +Seat 6: Player7 (1720 in chips) +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player7: posts small blind 300 +Player21: posts big blind 360 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [Qh 3s] +Player16: folds +Player1: calls 480 and is all-in +Player18: folds +Player7: calls 180 +*** FLOP *** [8h 5c 3d] +*** TURN *** [8h 5c 3d] [7d] +*** RIVER *** [8h 5c 3d 7d] [2s] +*** SHOW DOWN *** +Player7: shows [9s Ac] (high card Ace) +Player1: shows [5h Qs] (a pair of Fives) +Player1 collected 240 from side pot +Player21: shows [6c Ks] (high card King) +Player1 collected 1680 from main pot +Player5 is connected +Player21 finished the tournament in 148th place +*** SUMMARY *** +Total pot 1920 Main pot 1680. Side pot 240. | Rake 0 +Board [8h 5c 3d 7d 2s] +Seat 2: Player21 (big blind) showed [6c Ks] and lost with high card King +Seat 3: Player16 folded before Flop (didn't bet) +Seat 4: Player1 showed [5h Qs] and won (1920) with a pair of Fives +Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind) +Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) +Seat 3: Player16 (4100 in chips) +Seat 4: Player1 (2420 in chips) +Seat 5: Player18 (13955 in chips) +Seat 6: Player7 (1620 in chips) +Player16: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player16: posts small blind 400 +Player1: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [Qs 4h] +Player18: folds +Player7: folds +Player16: raises 3140 to 3940 and is all-in +Player1: calls 1460 and is all-in +Uncalled bet (1680) returned to Player16 +*** FLOP *** [2d 7c Jh] +*** TURN *** [2d 7c Jh] [3c] +*** RIVER *** [2d 7c Jh 3c] [5h] +*** SHOW DOWN *** +Player16: shows [Ah Kh] (high card Ace) +Player1: shows [Tc 5s] (a pair of Fives) +Player1 collected 5160 from pot +*** SUMMARY *** +Total pot 5160 | Rake 0 +Board [2d 7c Jh 3c 5h] +Seat 3: Player16 (small blind) showed [Ah Kh] and lost with high card Ace +Seat 4: Player1 (big blind) showed [Tc 5s] and won (5160) with a pair of Fives +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player5 (1940 in chips) +Seat 2: Player4 (3540 in chips) +Seat 3: Player16 (1680 in chips) +Seat 4: Player1 (5160 in chips) +Seat 5: Player18 (13795 in chips) +Seat 6: Player7 (1460 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player16: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player1: posts small blind 400 +Player18: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [Ac Th] +Player7: folds +Player5: folds +Player4: folds +Player16: raises 720 to 1520 and is all-in +Player1: raises 3480 to 5000 and is all-in +Player18: folds +Uncalled bet (3480) returned to Player1 +*** FLOP *** [4s 3c Kc] +*** TURN *** [4s 3c Kc] [7s] +*** RIVER *** [4s 3c Kc 7s] [9s] +*** SHOW DOWN *** +Player1: shows [Qs Kh] (a pair of Kings) +Player16: shows [9d Qc] (a pair of Nines) +Player1 collected 4800 from pot +Player16 finished the tournament in 120th place +*** SUMMARY *** +Total pot 4800 | Rake 0 +Board [4s 3c Kc 7s 9s] +Seat 1: Player5 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player16 (button) showed [9d Qc] and lost with a pair of Nines +Seat 4: Player1 (small blind) showed [Qs Kh] and won (4800) with a pair of Kings +Seat 5: Player18 (big blind) folded before Flop +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player5 (1780 in chips) +Seat 2: Player4 (3380 in chips) +Seat 4: Player1 (8280 in chips) +Seat 5: Player18 (12835 in chips) +Seat 6: Player7 (1300 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player18: posts small blind 400 +Player7: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [9d 7d] +Player5: folds +Player4: folds +Player1: calls 800 +Player9 is connected +Player18: calls 400 +Player7: checks +*** FLOP *** [Tc Qd 9c] +Player18: checks +Player7: bets 340 and is all-in +Player1: calls 340 +Player18: calls 340 +*** TURN *** [Tc Qd 9c] [Td] +Player18: checks +Player1: checks +*** RIVER *** [Tc Qd 9c Td] [Jh] +Player18: checks +Player1: bets 2400 +Player18: folds +Uncalled bet (2400) returned to Player1 +*** SHOW DOWN *** +Player1: shows [6c 8d] (a straight, Eight to Queen) +Player7: shows [Jc 8c] (a straight, Eight to Queen) +Player7 collected 2110 from pot +Player1 collected 2110 from pot +*** SUMMARY *** +Total pot 4220 | Rake 0 +Board [Tc Qd 9c Td Jh] +Seat 1: Player5 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 4: Player1 (button) showed [6c 8d] and won (2110) with a straight, Eight to Queen +Seat 5: Player18 (small blind) folded on the River +Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight to Queen + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player5 (1620 in chips) +Seat 2: Player4 (3220 in chips) +Seat 3: Player9 (3065 in chips) +Seat 4: Player1 (9090 in chips) +Seat 5: Player18 (11535 in chips) +Seat 6: Player7 (2110 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player7: posts small blind 400 +Player5: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [3c Kd] +Player4: folds +Player9: folds +Player1: folds +Player18: folds +Player7: folds +Uncalled bet (400) returned to Player5 +Player5 collected 1760 from pot +*** SUMMARY *** +Total pot 1760 | Rake 0 +Seat 1: Player5 (big blind) collected (1760) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player9 folded before Flop (didn't bet) +Seat 4: Player1 folded before Flop (didn't bet) +Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 6: Player7 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player5 (2820 in chips) +Seat 2: Player4 (3060 in chips) +Seat 3: Player9 (2905 in chips) +Seat 4: Player1 (8930 in chips) +Seat 5: Player18 (11375 in chips) +Seat 6: Player7 (1550 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player5: posts small blind 400 +Player4: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [2h Qc] +Player9: folds +Player1: folds +Player18: folds +Player7: folds +Player5: calls 400 +Player4: checks +*** FLOP *** [9c 6d Td] +Player5: checks +Player4: checks +*** TURN *** [9c 6d Td] [4d] +Player5: checks +Player4: bets 2100 and is all-in +Player5: folds +Uncalled bet (2100) returned to Player4 +Player4 collected 2560 from pot +Player4: doesn't show hand +*** SUMMARY *** +Total pot 2560 | Rake 0 +Board [9c 6d Td 4d] +Seat 1: Player5 (small blind) folded on the Turn +Seat 2: Player4 (big blind) collected (2560) +Seat 3: Player9 folded before Flop (didn't bet) +Seat 4: Player1 folded before Flop (didn't bet) +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player5 (1860 in chips) +Seat 2: Player4 (4660 in chips) +Seat 3: Player9 (2745 in chips) +Seat 4: Player1 (8770 in chips) +Seat 5: Player18 (11215 in chips) +Seat 6: Player7 (1390 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player4: posts small blind 400 +Player9: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [3s 3c] +Player1: raises 4800 to 5600 +Player18: folds +Player7: folds +Player5: folds +Player4: folds +Player9: folds +Uncalled bet (4800) returned to Player1 +Player1 collected 2960 from pot +*** SUMMARY *** +Total pot 2960 | Rake 0 +Seat 1: Player5 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded before Flop +Seat 3: Player9 (big blind) folded before Flop +Seat 4: Player1 collected (2960) +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player5 (1700 in chips) +Seat 2: Player4 (4100 in chips) +Seat 3: Player9 (1785 in chips) +Seat 4: Player1 (10770 in chips) +Seat 5: Player18 (11055 in chips) +Seat 6: Player7 (1230 in chips) +Player5: posts the ante 240 +Player4: posts the ante 240 +Player9: posts the ante 240 +Player1: posts the ante 240 +Player18: posts the ante 240 +Player7: posts the ante 240 +Player9: posts small blind 600 +Player1: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2c 6d] +Player18: folds +Player7: calls 990 and is all-in +Player5: raises 260 to 1460 and is all-in +Player4: folds +Player9: folds +Player1: calls 260 +*** FLOP *** [Ts 7d Js] +*** TURN *** [Ts 7d Js] [4c] +*** RIVER *** [Ts 7d Js 4c] [3d] +*** SHOW DOWN *** +Player1: shows [2h 9s] (high card Jack) +Player5: shows [Jc Jd] (three of a kind, Jacks) +Player5 collected 940 from side pot +Player7: shows [4d Ac] (a pair of Fours) +Player5 collected 5010 from main pot +*** SUMMARY *** +Total pot 5950 Main pot 5010. Side pot 940. | Rake 0 +Board [Ts 7d Js 4c 3d] +Seat 1: Player5 showed [Jc Jd] and won (5950) with three of a kind, Jacks +Seat 2: Player4 (button) folded before Flop (didn't bet) +Seat 3: Player9 (small blind) folded before Flop +Seat 4: Player1 (big blind) showed [2h 9s] and lost with high card Jack +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] +Table '999999998 48' 6-max Seat #1 is the button +Seat 1: Player17 (14798 in chips) +Seat 2: Player3 (7215 in chips) +Seat 3: Player15 (6378 in chips) +Seat 4: Player18 (10815 in chips) +Seat 5: Player2 (8520 in chips) +Seat 6: Player22 (11935 in chips) +Player17: posts the ante 240 +Player3: posts the ante 240 +Player15: posts the ante 240 +Player18: posts the ante 240 +Player2: posts the ante 240 +Player22: posts the ante 240 +Player3: posts small blind 600 +Player15: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2s Td] +Player18: folds +Player2: raises 7080 to 8280 and is all-in +Player22: calls 8280 +Player17: folds +Player3: folds +Player15: calls 4938 and is all-in +*** FLOP *** [Ac Th 9d] +*** TURN *** [Ac Th 9d] [3c] +*** RIVER *** [Ac Th 9d 3c] [4d] +*** SHOW DOWN *** +Player2: shows [Kd 5s] (high card Ace) +Player22: shows [2c Ah] (a pair of Aces) +Player22 collected 4284 from side pot +Player15: shows [7d 7c] (a pair of Sevens) +Player22 collected 20454 from main pot +Player2 finished the tournament in 74th place +Player15 finished the tournament in 75th place +*** SUMMARY *** +Total pot 24738 Main pot 20454. Side pot 4284. | Rake 0 +Board [Ac Th 9d 3c 4d] +Seat 1: Player17 (button) folded before Flop (didn't bet) +Seat 2: Player3 (small blind) folded before Flop +Seat 3: Player15 (big blind) showed [7d 7c] and lost with a pair of Sevens +Seat 4: Player18 folded before Flop (didn't bet) +Seat 5: Player2 showed [Kd 5s] and lost with high card Ace +Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] +Table '999999998 48' 6-max Seat #2 is the button +Seat 1: Player17 (14558 in chips) +Seat 2: Player3 (6375 in chips) +Seat 4: Player18 (10575 in chips) +Seat 6: Player22 (28153 in chips) +Player17: posts the ante 240 +Player3: posts the ante 240 +Player18: posts the ante 240 +Player22: posts the ante 240 +Player18: posts small blind 600 +Player22: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [6h Jd] +Player17: folds +Player3: raises 4935 to 6135 and is all-in +Player18: folds +Player19 is connected +Player22: calls 4935 +Player10 is connected +*** FLOP *** [2s Kh 9s] +*** TURN *** [2s Kh 9s] [Kc] +*** RIVER *** [2s Kh 9s Kc] [3c] +*** SHOW DOWN *** +Player22: shows [Ah Tc] (a pair of Kings) +Player3: shows [5h As] (a pair of Kings - lower kicker) +Player22 collected 13830 from pot +Player3 finished the tournament in 70th place +*** SUMMARY *** +Total pot 13830 | Rake 0 +Board [2s Kh 9s Kc 3c] +Seat 1: Player17 folded before Flop (didn't bet) +Seat 2: Player3 (button) showed [5h As] and lost with a pair of Kings +Seat 4: Player18 (small blind) folded before Flop +Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] +Table '999999998 48' 6-max Seat #4 is the button +Seat 1: Player17 (14318 in chips) +Seat 3: Player19 (1508 in chips) +Seat 4: Player18 (9735 in chips) +Seat 5: Player10 (5690 in chips) out of hand (moved from another table into small blind) +Seat 6: Player22 (35608 in chips) +Player17: posts the ante 240 +Player19: posts the ante 240 +Player18: posts the ante 240 +Player22: posts the ante 240 +Player22: posts small blind 600 +Player17: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2s Ac] +Player19: folds +Player18: raises 8295 to 9495 and is all-in +Player22: folds +Player17: calls 8295 +*** FLOP *** [Kc 5d 3d] +*** TURN *** [Kc 5d 3d] [6c] +*** RIVER *** [Kc 5d 3d 6c] [Ad] +*** SHOW DOWN *** +Player17: shows [Jh Qd] (high card Ace) +Player18: shows [2s Ac] (a pair of Aces) +Player18 collected 20550 from pot +*** SUMMARY *** +Total pot 20550 | Rake 0 +Board [Kc 5d 3d 6c Ad] +Seat 1: Player17 (big blind) showed [Jh Qd] and lost with high card Ace +Seat 3: Player19 folded before Flop (didn't bet) +Seat 4: Player18 (button) showed [2s Ac] and won (20550) with a pair of Aces +Seat 6: Player22 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] +Table '999999998 48' 6-max Seat #6 is the button +Seat 1: Player17 (4583 in chips) +Seat 3: Player19 (1268 in chips) +Seat 4: Player18 (20550 in chips) +Seat 5: Player10 (5690 in chips) +Seat 6: Player22 (34768 in chips) +Player17: posts the ante 240 +Player19: posts the ante 240 +Player18: posts the ante 240 +Player10: posts the ante 240 +Player22: posts the ante 240 +Player17: posts small blind 600 +Player19: posts big blind 1028 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [3d 6c] +Player18: folds +Player10: folds +Player22: raises 1372 to 2400 +Player17: calls 1800 +*** FLOP *** [9c 4s Ac] +Player17: checks +Player22: bets 1200 +Player17: folds +Uncalled bet (1200) returned to Player22 +*** TURN *** [9c 4s Ac] [Kc] +*** RIVER *** [9c 4s Ac Kc] [Qs] +*** SHOW DOWN *** +Player22: shows [Jd Qd] (a pair of Queens) +Player22 collected 2744 from side pot +Player19: shows [7s 4c] (a pair of Fours) +Player22 collected 4284 from main pot +*** SUMMARY *** +Total pot 7028 Main pot 4284. Side pot 2744. | Rake 0 +Board [9c 4s Ac Kc Qs] +Seat 1: Player17 (small blind) folded on the Flop +Seat 3: Player19 (big blind) showed [7s 4c] and lost with a pair of Fours +Seat 4: Player18 folded before Flop (didn't bet) +Seat 5: Player10 folded before Flop (didn't bet) +Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens + + + +PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] +Table '999999998 5' 6-max Seat #4 is the button +Seat 1: Player14 (5780 in chips) +Seat 2: Player17 (1943 in chips) +Seat 3: Player18 (20310 in chips) +Seat 4: Player20 (23421 in chips) +Seat 5: Player8 (19258 in chips) +Seat 6: Player23 (26326 in chips) +Player14: posts the ante 240 +Player17: posts the ante 240 +Player18: posts the ante 240 +Player20: posts the ante 240 +Player8: posts the ante 240 +Player23: posts the ante 240 +Player8: posts small blind 600 +Player23: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [7d As] +Player14: folds +Player17: folds +Player18: raises 18000 to 19200 +Player20: raises 3981 to 23181 and is all-in +Player8: folds +Player23: folds +Player18: calls 870 and is all-in +Uncalled bet (3111) returned to Player20 +*** FLOP *** [7h 4h 3s] +*** TURN *** [7h 4h 3s] [Th] +*** RIVER *** [7h 4h 3s Th] [Ah] +*** SHOW DOWN *** +Player18: shows [7d As] (two pair, Aces and Sevens) +Player20: shows [Ad Kh] (a flush, Ace high) +Player20 collected 43380 from pot +Player18 finished the tournament in 54th place +*** SUMMARY *** +Total pot 43380 | Rake 0 +Board [7h 4h 3s Th Ah] +Seat 1: Player14 folded before Flop (didn't bet) +Seat 2: Player17 folded before Flop (didn't bet) +Seat 3: Player18 showed [7d As] and lost with two pair, Aces and Sevens +Seat 4: Player20 (button) showed [Ad Kh] and won (43380) with a flush, Ace high +Seat 5: Player8 (small blind) folded before Flop +Seat 6: Player23 (big blind) folded before Flop + + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt new file mode 100644 index 00000000..951fd0c7 --- /dev/null +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt @@ -0,0 +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) + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt new file mode 100644 index 00000000..41034169 --- /dev/null +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt @@ -0,0 +1,2867 @@ +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1500 in chips) +Seat 3: Player3 (1500 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1500 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player1: posts small blind 10 +Player3: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [4c 7d] +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player9: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (10) returned to Player3 +Player3 collected 20 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 20 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) collected (20) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1490 in chips) +Seat 3: Player3 (1510 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1500 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player3: posts small blind 10 +Player4: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [8h Jh] +Player5: folds +Player2: folds +Player6: folds +Player0: raises 40 to 60 +Player9: folds +Player8: folds +Player7: folds +Player1: calls 60 +Player3: folds +Player4: folds +*** FLOP *** [2h 7c Th] +Player0: bets 80 +Player1: calls 80 +*** TURN *** [2h 7c Th] [5s] +Player0: checks +Player1: bets 217 +Player0: calls 217 +*** RIVER *** [2h 7c Th 5s] [Jd] +Player0: checks +Player1: checks +*** SHOW DOWN *** +Player0: shows [8h Jh] (a pair of Jacks) +Player1: mucks hand +Player0 collected 744 from pot +*** SUMMARY *** +Total pot 744 | Rake 0 +Board [2h 7c Th 5s Jd] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) mucked [9c 9s] +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 showed [8h Jh] and won (744) with a pair of Jacks +Seat 9: Player9 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1500 in chips) +Seat 4: Player4 (1480 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player4: posts small blind 10 +Player5: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [Ks 8s] +Player2: folds +Player6: folds +Player0: folds +Player9: calls 20 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: folds +Player5: folds +Player9: folds +Uncalled bet (60) returned to Player3 +Player3 collected 70 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 70 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) collected (70) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1550 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1480 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1480 in chips) +Seat 10: Player8 (1500 in chips) +Player5: posts small blind 10 +Player2: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [7c 5c] +Player6: folds +Player0: folds +Player9: calls 20 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: folds +Player5: folds +Player2: folds +Player9: calls 60 +*** FLOP *** [Ks Qc Td] +Player9: bets 80 +Player3: folds +Uncalled bet (80) returned to Player9 +Player9 collected 190 from pot +*** SUMMARY *** +Total pot 190 | Rake 0 +Board [Ks Qc Td] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Flop +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 collected (190) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1470 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1480 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1590 in chips) +Seat 10: Player8 (1500 in chips) +Player2: posts small blind 10 +Player6: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [Jh Qc] +Player0: folds +Player9: raises 40 to 60 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 100 to 160 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player9: calls 100 +*** FLOP *** [8h Qd Js] +Player9: bets 160 +Player3: raises 160 to 320 +Player9: raises 280 to 600 +Player3: raises 710 to 1310 and is all-in +Player9: calls 710 +*** TURN *** [8h Qd Js] [8s] +*** RIVER *** [8h Qd Js 8s] [2h] +*** SHOW DOWN *** +Player9: shows [Qs Kd] (two pair, Queens and Eights) +Player3: shows [Kc Ks] (two pair, Kings and Eights) +Player3 collected 2970 from pot +*** SUMMARY *** +Total pot 2970 | Rake 0 +Board [8h Qd Js 8s 2h] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 showed [Kc Ks] and won (2970) with two pair, Kings and Eights +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 showed [Qs Kd] and lost with two pair, Queens and Eights +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2970 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1480 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (120 in chips) +Seat 10: Player8 (1500 in chips) +Player6: posts small blind 10 +Player0: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [7h 8c] +Player9: raises 100 to 120 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: calls 100 +*** FLOP *** [4h 9h 3s] +*** TURN *** [4h 9h 3s] [Ks] +*** RIVER *** [4h 9h 3s Ks] [9s] +*** SHOW DOWN *** +Player0: shows [7h 8c] (a pair of Nines) +Player9: shows [2d 2c] (two pair, Nines and Deuces) +Player9 collected 250 from pot +*** SUMMARY *** +Total pot 250 | Rake 0 +Board [4h 9h 3s Ks 9s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) showed [7h 8c] and lost with a pair of Nines +Seat 9: Player9 showed [2d 2c] and won (250) with two pair, Nines and Deuces +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2970 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1470 in chips) +Seat 8: Player0 (1767 in chips) +Seat 9: Player9 (250 in chips) +Seat 10: Player8 (1500 in chips) +Player0: posts small blind 10 +Player9: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [2d 4s] +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: calls 80 +Player5: folds +Player2: folds +Player6: calls 80 +Player0: folds +Player9: folds +*** FLOP *** [Ks 8s 8c] +Player3: checks +Player4: checks +Player6: checks +*** TURN *** [Ks 8s 8c] [2c] +Player3: checks +Player4: checks +Player6: bets 140 +Player3: folds +Player4: folds +Uncalled bet (140) returned to Player6 +Player6 collected 270 from pot +*** SUMMARY *** +Total pot 270 | Rake 0 +Board [Ks 8s 8c 2c] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Turn +Seat 4: Player4 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 (button) collected (270) +Seat 8: Player0 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2890 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1757 in chips) +Seat 9: Player9 (230 in chips) +Seat 10: Player8 (1500 in chips) +Player9: posts small blind 15 +Player8: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Th Kd] +Player7: folds +Player1: folds +Player3: raises 90 to 120 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player9: raises 110 to 230 and is all-in +Player8: folds +Player3: calls 110 +*** FLOP *** [5s 5d 6s] +*** TURN *** [5s 5d 6s] [Qs] +*** RIVER *** [5s 5d 6s Qs] [Jc] +*** SHOW DOWN *** +Player9: shows [Ks 8d] (a pair of Fives) +Player3: shows [Ac Qc] (two pair, Queens and Fives) +Player3 collected 490 from pot +Player9 finished the tournament in 10th place +*** SUMMARY *** +Total pot 490 | Rake 0 +Board [5s 5d 6s Qs Jc] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 showed [Ac Qc] and won (490) with two pair, Queens and Fives +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) showed [Ks 8d] and lost with a pair of Fives +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (3150 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1757 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts small blind 15 +Player1: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Ah Td] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: raises 90 to 120 +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (90) returned to Player0 +Player0 collected 75 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 75 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 collected (75) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1103 in chips) +Seat 3: Player3 (3150 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player1: posts small blind 15 +Player3: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Js Qs] +Player4: folds +Player5: folds +Player2: raises 30 to 60 +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: calls 45 +Player3: folds +*** FLOP *** [2d 7d 4s] +Player1: bets 120 +Player2: raises 150 to 270 +Player1: calls 150 +*** TURN *** [2d 7d 4s] [3c] +Player1: checks +Player2: checks +*** RIVER *** [2d 7d 4s 3c] [5d] +Player1: bets 773 and is all-in +Player2: folds +Uncalled bet (773) returned to Player1 +Player1 collected 690 from pot +*** SUMMARY *** +Total pot 690 | Rake 0 +Board [2d 7d 4s 3c 5d] +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) collected (690) +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded on the River +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3120 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player3: posts small blind 15 +Player4: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [6h Kc] +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (15) returned to Player4 +Player4 collected 30 from pot +*** SUMMARY *** +Total pot 30 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) collected (30) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1405 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player4: posts small blind 15 +Player5: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Td 9c] +Player2: raises 60 to 90 +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (60) returned to Player2 +Player2 collected 75 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 75 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 collected (75) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1440 in chips) +Seat 6: Player2 (1185 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player5: posts small blind 15 +Player2: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [4c Ts] +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (15) returned to Player2 +Player2 collected 30 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 30 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) collected (30) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1425 in chips) +Seat 6: Player2 (1200 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player2: posts small blind 25 +Player6: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [3c Th] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 3050 to 3100 and is all-in +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (3050) returned to Player3 +Player3 collected 170 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (170) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (1458 in chips) +Seat 3: Player3 (3220 in chips) +Seat 4: Player4 (1385 in chips) +Seat 5: Player5 (1420 in chips) +Seat 6: Player2 (1170 in chips) +Seat 7: Player6 (1605 in chips) +Seat 8: Player0 (1797 in chips) +Seat 10: Player8 (1465 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player6: posts small blind 25 +Player0: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Ad 3h] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: raises 150 to 200 +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Uncalled bet (150) returned to Player4 +Player4 collected 170 from pot +Player4: shows [Th Td] (a pair of Tens) +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 collected (170) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1475 in chips) +Seat 2: Player1 (1453 in chips) +Seat 3: Player3 (3215 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1415 in chips) +Seat 6: Player2 (1165 in chips) +Seat 7: Player6 (1575 in chips) +Seat 8: Player0 (1742 in chips) +Seat 10: Player8 (1460 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player0: posts small blind 25 +Player8: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [4c 3d] +Player7: folds +Player1: folds +Player3: raises 50 to 100 +Player4: folds +Player5: folds +Player2: folds +Player6: calls 100 +Player0: folds +Player8: folds +*** FLOP *** [As 7h Td] +Player3: bets 3110 and is all-in +Player6: folds +Uncalled bet (3110) returned to Player3 +Player3 collected 320 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 320 | Rake 0 +Board [As 7h Td] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (320) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded on the Flop +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1470 in chips) +Seat 2: Player1 (1448 in chips) +Seat 3: Player3 (3430 in chips) +Seat 4: Player4 (1495 in chips) +Seat 5: Player5 (1410 in chips) +Seat 6: Player2 (1160 in chips) +Seat 7: Player6 (1470 in chips) +Seat 8: Player0 (1712 in chips) +Seat 10: Player8 (1405 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player8: posts small blind 25 +Player7: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Js Qd] +Player1: folds +Player3: raises 50 to 100 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (50) returned to Player3 +Player3 collected 170 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (170) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1415 in chips) +Seat 2: Player1 (1443 in chips) +Seat 3: Player3 (3545 in chips) +Seat 4: Player4 (1490 in chips) +Seat 5: Player5 (1405 in chips) +Seat 6: Player2 (1155 in chips) +Seat 7: Player6 (1465 in chips) +Seat 8: Player0 (1707 in chips) +Seat 10: Player8 (1375 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player7: posts small blind 25 +Player1: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [4h Qh] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: raises 100 to 150 +Player7: folds +Player1: folds +Uncalled bet (100) returned to Player8 +Player8 collected 170 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (170) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1385 in chips) +Seat 2: Player1 (1388 in chips) +Seat 3: Player3 (3540 in chips) +Seat 4: Player4 (1485 in chips) +Seat 5: Player5 (1400 in chips) +Seat 6: Player2 (1150 in chips) +Seat 7: Player6 (1460 in chips) +Seat 8: Player0 (1702 in chips) +Seat 10: Player8 (1490 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player1: posts small blind 25 +Player3: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Td 7c] +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (25) returned to Player3 +Player3 collected 95 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 95 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) collected (95) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1380 in chips) +Seat 2: Player1 (1358 in chips) +Seat 3: Player3 (3605 in chips) +Seat 4: Player4 (1480 in chips) +Seat 5: Player5 (1395 in chips) +Seat 6: Player2 (1145 in chips) +Seat 7: Player6 (1455 in chips) +Seat 8: Player0 (1697 in chips) +Seat 10: Player8 (1485 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player3: posts small blind 25 +Player4: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [8s 7h] +Player5: raises 100 to 150 +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (100) returned to Player5 +Player5 collected 170 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 collected (170) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1375 in chips) +Seat 2: Player1 (1353 in chips) +Seat 3: Player3 (3575 in chips) +Seat 4: Player4 (1425 in chips) +Seat 5: Player5 (1510 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1450 in chips) +Seat 8: Player0 (1692 in chips) +Seat 10: Player8 (1480 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player4: posts small blind 50 +Player5: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Ts As] +Player2: folds +Player6: folds +Player0: raises 200 to 300 +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (200) returned to Player0 +Player0 collected 340 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 collected (340) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1365 in chips) +Seat 2: Player1 (1343 in chips) +Seat 3: Player3 (3565 in chips) +Seat 4: Player4 (1365 in chips) +Seat 5: Player5 (1400 in chips) +Seat 6: Player2 (1130 in chips) +Seat 7: Player6 (1440 in chips) +Seat 8: Player0 (1922 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player5: posts small blind 50 +Player2: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Th 7d] +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 100 to 200 +Player4: folds +Player5: folds +Player2: calls 100 +*** FLOP *** [Ts 6c 5s] +Player2: checks +Player3: bets 200 +Player2: calls 200 +*** TURN *** [Ts 6c 5s] [7s] +Player2: bets 300 +Player3: folds +Uncalled bet (300) returned to Player2 +Player2 collected 940 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 940 | Rake 0 +Board [Ts 6c 5s 7s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Turn +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) collected (940) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1355 in chips) +Seat 2: Player1 (1333 in chips) +Seat 3: Player3 (3155 in chips) +Seat 4: Player4 (1355 in chips) +Seat 5: Player5 (1340 in chips) +Seat 6: Player2 (1660 in chips) +Seat 7: Player6 (1430 in chips) +Seat 8: Player0 (1912 in chips) +Seat 10: Player8 (1460 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player2: posts small blind 50 +Player6: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Tc 4c] +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1223 to 1323 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (1223) returned to Player1 +Player1 collected 340 from pot +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 collected (340) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1345 in chips) +Seat 2: Player1 (1563 in chips) +Seat 3: Player3 (3145 in chips) +Seat 4: Player4 (1345 in chips) +Seat 5: Player5 (1330 in chips) +Seat 6: Player2 (1600 in chips) +Seat 7: Player6 (1320 in chips) +Seat 8: Player0 (1902 in chips) +Seat 10: Player8 (1450 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player6: posts small blind 50 +Player0: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [7s 2h] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (50) returned to Player0 +Player0 collected 190 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 190 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (190) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1335 in chips) +Seat 2: Player1 (1553 in chips) +Seat 3: Player3 (3135 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1320 in chips) +Seat 6: Player2 (1590 in chips) +Seat 7: Player6 (1260 in chips) +Seat 8: Player0 (2032 in chips) +Seat 10: Player8 (1440 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player0: posts small blind 50 +Player8: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Jc 6h] +Player7: folds +Player1: folds +Player3: folds +Player4: raises 100 to 200 +Player5: folds +Player2: raises 300 to 500 +Player6: raises 750 to 1250 and is all-in +Player0: folds +Player8: folds +Player4: folds +Player2: calls 750 +*** FLOP *** [5s 9s 2c] +*** TURN *** [5s 9s 2c] [6d] +*** RIVER *** [5s 9s 2c 6d] [Qd] +*** SHOW DOWN *** +Player2: shows [Js Jd] (a pair of Jacks) +Player6: shows [Kc Ad] (high card Ace) +Player2 collected 2940 from pot +Player6 finished the tournament in 9th place +*** SUMMARY *** +Total pot 2940 | Rake 0 +Board [5s 9s 2c 6d Qd] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 showed [Js Jd] and won (2940) with a pair of Jacks +Seat 7: Player6 (button) showed [Kc Ad] and lost with high card Ace +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1325 in chips) +Seat 2: Player1 (1543 in chips) +Seat 3: Player3 (3125 in chips) +Seat 4: Player4 (1125 in chips) +Seat 5: Player5 (1310 in chips) +Seat 6: Player2 (3270 in chips) +Seat 8: Player0 (1972 in chips) +Seat 10: Player8 (1330 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player8: posts small blind 50 +Player7: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Tc Kd] +Player4 said, "Hey Newfyboy,, you were ragging everyone about fishing at our last table,,,,what about you shoving all in to me with Q 10 in the small blind position and me busting you with KK" +Player1: raises 1433 to 1533 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1433) returned to Player1 +Player1 collected 330 from pot +*** SUMMARY *** +Total pot 330 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 collected (330) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1215 in chips) +Seat 2: Player1 (1763 in chips) +Seat 3: Player3 (3115 in chips) +Seat 4: Player4 (1115 in chips) +Seat 5: Player5 (1300 in chips) +Seat 6: Player2 (3260 in chips) +Seat 8: Player0 (1962 in chips) +Seat 10: Player8 (1270 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player7: posts small blind 50 +Player1: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [2s Js] +Player3: folds +Player4: raises 200 to 300 +Player0 is connected +Player5 said, "i wasnt ragging everyone..just the guy that donked me in a couple trnys" +Player5: folds +Player2: folds +Player4 said, "oh,,," +Player0: folds +Player0 is sitting out +Player8: folds +Player7: folds +Player0 has returned +Player1: folds +Uncalled bet (200) returned to Player4 +Player4 collected 330 from pot +Player4: shows [Ah Ac] (a pair of Aces) +*** SUMMARY *** +Total pot 330 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 collected (330) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1155 in chips) +Seat 2: Player1 (1653 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1290 in chips) +Seat 6: Player2 (3250 in chips) +Seat 8: Player0 (1952 in chips) +Seat 10: Player8 (1260 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player1: posts small blind 75 +Player3: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [9d Tc] +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: raises 990 to 1140 and is all-in +Player1: folds +Player3: folds +Uncalled bet (990) returned to Player7 +Player7 collected 495 from pot +Player7: doesn't show hand +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (button) collected (495) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1563 in chips) +Seat 3: Player3 (2940 in chips) +Seat 4: Player4 (1320 in chips) +Seat 5: Player5 (1275 in chips) +Seat 6: Player2 (3235 in chips) +Seat 8: Player0 (1937 in chips) +Seat 10: Player8 (1245 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player3: posts small blind 75 +Player4: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Jh 7d] +Player4 said, "just unlucky timing is all" +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: raises 1320 to 1470 and is all-in +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (1320) returned to Player7 +Player7 collected 495 from pot +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 collected (495) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1815 in chips) +Seat 2: Player1 (1548 in chips) +Seat 3: Player3 (2850 in chips) +Seat 4: Player4 (1155 in chips) +Seat 5: Player5 (1260 in chips) +Seat 6: Player2 (3220 in chips) +Seat 8: Player0 (1922 in chips) +Seat 10: Player8 (1230 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player4: posts small blind 75 +Player5: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Td 6d] +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: calls 75 +Player5: checks +*** FLOP *** [9h 3s 7d] +Player4: bets 450 +Player5: folds +Uncalled bet (450) returned to Player4 +Player4 collected 420 from pot +Player4: shows [Kc 9c] (a pair of Nines) +*** SUMMARY *** +Total pot 420 | Rake 0 +Board [9h 3s 7d] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) collected (420) +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1800 in chips) +Seat 2: Player1 (1533 in chips) +Seat 3: Player3 (2835 in chips) +Seat 4: Player4 (1410 in chips) +Seat 5: Player5 (1095 in chips) +Seat 6: Player2 (3205 in chips) +Seat 8: Player0 (1907 in chips) +Seat 10: Player8 (1215 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player5: posts small blind 75 +Player2: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [3c 5h] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: raises 930 to 1080 and is all-in +Player2: folds +Uncalled bet (930) returned to Player5 +Player5 collected 420 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 420 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) collected (420) +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1785 in chips) +Seat 2: Player1 (1518 in chips) +Seat 3: Player3 (2820 in chips) +Seat 4: Player4 (1395 in chips) +Seat 5: Player5 (1350 in chips) +Seat 6: Player2 (3040 in chips) +Seat 8: Player0 (1892 in chips) +Seat 10: Player8 (1200 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player2: posts small blind 75 +Player0: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Tc 8s] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player5 said, "3 outered once again..had k 10" +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (75) returned to Player0 +Player0 collected 270 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 270 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (270) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1770 in chips) +Seat 2: Player1 (1503 in chips) +Seat 3: Player3 (2805 in chips) +Seat 4: Player4 (1380 in chips) +Seat 5: Player5 (1335 in chips) +Seat 6: Player2 (2950 in chips) +Seat 8: Player0 (2072 in chips) +Seat 10: Player8 (1185 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player0: posts small blind 75 +Player8: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [2c 6h] +Player7: folds +Player4 said, "i showed,,,,you see K 9" +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Uncalled bet (75) returned to Player8 +Player8 collected 270 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 270 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) collected (270) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1755 in chips) +Seat 2: Player1 (1488 in chips) +Seat 3: Player3 (2790 in chips) +Seat 4: Player4 (1365 in chips) +Seat 5: Player5 (1320 in chips) +Seat 6: Player2 (2935 in chips) +Seat 8: Player0 (1982 in chips) +Seat 10: Player8 (1365 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player8: posts small blind 75 +Player7: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Js 6d] +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 1817 to 1967 and is all-in +Player8: folds +Player7: folds +Uncalled bet (1817) returned to Player0 +Player0 collected 495 from pot +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) collected (495) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1590 in chips) +Seat 2: Player1 (1473 in chips) +Seat 3: Player3 (2775 in chips) +Seat 4: Player4 (1350 in chips) +Seat 5: Player5 (1305 in chips) +Seat 6: Player2 (2920 in chips) +Seat 8: Player0 (2312 in chips) +Seat 10: Player8 (1275 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player7: posts small blind 75 +Player1: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [4s Ks] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: raises 1110 to 1260 and is all-in +Player7: folds +Player1: folds +Uncalled bet (1110) returned to Player8 +Player8 collected 495 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (495) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1308 in chips) +Seat 3: Player3 (2760 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1290 in chips) +Seat 6: Player2 (2905 in chips) +Seat 8: Player0 (2297 in chips) +Seat 10: Player8 (1605 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player1: posts small blind 100 +Player3: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [5d Ac] +Player4: raises 600 to 800 +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (600) returned to Player4 +Player4 collected 660 from pot +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 collected (660) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (1188 in chips) +Seat 3: Player3 (2540 in chips) +Seat 4: Player4 (1775 in chips) +Seat 5: Player5 (1270 in chips) +Seat 6: Player2 (2885 in chips) +Seat 8: Player0 (2277 in chips) +Seat 10: Player8 (1585 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player3: posts small blind 100 +Player4: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Qc Ac] +Player5: folds +Player2: folds +Player0: raises 2057 to 2257 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (2057) returned to Player0 +Player0 collected 660 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (660) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1460 in chips) +Seat 2: Player1 (1168 in chips) +Seat 3: Player3 (2420 in chips) +Seat 4: Player4 (1555 in chips) +Seat 5: Player5 (1250 in chips) +Seat 6: Player2 (2865 in chips) +Seat 8: Player0 (2717 in chips) +Seat 10: Player8 (1565 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player4: posts small blind 100 +Player5: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [4d 8d] +Player2: folds +Player0: folds +Player8: raises 1345 to 1545 and is all-in +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (1345) returned to Player8 +Player8 collected 660 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 collected (660) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1440 in chips) +Seat 2: Player1 (1148 in chips) +Seat 3: Player3 (2400 in chips) +Seat 4: Player4 (1435 in chips) +Seat 5: Player5 (1030 in chips) +Seat 6: Player2 (2845 in chips) +Seat 8: Player0 (2697 in chips) +Seat 10: Player8 (2005 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player5: posts small blind 100 +Player2: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Tc 9d] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 2180 to 2380 and is all-in +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (2180) returned to Player3 +Player3 collected 660 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (660) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1420 in chips) +Seat 2: Player1 (1128 in chips) +Seat 3: Player3 (2840 in chips) +Seat 4: Player4 (1415 in chips) +Seat 5: Player5 (910 in chips) +Seat 6: Player2 (2625 in chips) +Seat 8: Player0 (2677 in chips) +Seat 10: Player8 (1985 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player2: posts small blind 100 +Player0: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Th Jd] +Player8: folds +Player7: raises 1200 to 1400 and is all-in +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Uncalled bet (1200) returned to Player7 +Player7 collected 660 from pot +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 collected (660) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1860 in chips) +Seat 2: Player1 (1108 in chips) +Seat 3: Player3 (2820 in chips) +Seat 4: Player4 (1395 in chips) +Seat 5: Player5 (890 in chips) +Seat 6: Player2 (2505 in chips) +Seat 8: Player0 (2457 in chips) +Seat 10: Player8 (1965 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player0: posts small blind 100 +Player8: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Kc 8s] +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 1200 to 1400 +Player8: folds +Uncalled bet (1200) returned to Player0 +Player0 collected 560 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 560 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (560) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1840 in chips) +Seat 2: Player1 (1088 in chips) +Seat 3: Player3 (2800 in chips) +Seat 4: Player4 (1375 in chips) +Seat 5: Player5 (870 in chips) +Seat 6: Player2 (2485 in chips) +Seat 8: Player0 (2797 in chips) +Seat 10: Player8 (1745 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player8: posts small blind 100 +Player7: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [9h 4h] +Player1: raises 868 to 1068 and is all-in +Player3: raises 1712 to 2780 and is all-in +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1712) returned to Player3 +*** FLOP *** [4s 7h 7s] +*** TURN *** [4s 7h 7s] [4c] +*** RIVER *** [4s 7h 7s 4c] [9s] +*** SHOW DOWN *** +Player1: shows [Ts Ks] (a flush, King high) +Player3: shows [Qh Ad] (two pair, Sevens and Fours) +Player1 collected 2596 from pot +*** SUMMARY *** +Total pot 2596 | Rake 0 +Board [4s 7h 7s 4c 9s] +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 showed [Ts Ks] and won (2596) with a flush, King high +Seat 3: Player3 showed [Qh Ad] and lost with two pair, Sevens and Fours +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1620 in chips) +Seat 2: Player1 (2596 in chips) +Seat 3: Player3 (1712 in chips) +Seat 4: Player4 (1355 in chips) +Seat 5: Player5 (850 in chips) +Seat 6: Player2 (2465 in chips) +Seat 8: Player0 (2777 in chips) +Seat 10: Player8 (1625 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player7: posts small blind 100 +Player1: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [9c 6h] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: raises 1405 to 1605 and is all-in +Player7: folds +Player1: folds +Uncalled bet (1405) returned to Player8 +Player8 collected 660 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (660) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (2376 in chips) +Seat 3: Player3 (1692 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (830 in chips) +Seat 6: Player2 (2445 in chips) +Seat 8: Player0 (2757 in chips) +Seat 10: Player8 (2065 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player1: posts small blind 100 +Player3: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Qh 3h] +Player4: folds +Player5: raises 610 to 810 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (610) returned to Player5 +Player5 collected 660 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 collected (660) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (2256 in chips) +Seat 3: Player3 (1472 in chips) +Seat 4: Player4 (1315 in chips) +Seat 5: Player5 (1270 in chips) +Seat 6: Player2 (2425 in chips) +Seat 8: Player0 (2737 in chips) +Seat 10: Player8 (2045 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player3: posts small blind 125 +Player4: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [7c 9c] +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 250 to 500 +Player4: raises 500 to 1000 +Player3: folds +Uncalled bet (500) returned to Player4 +Player4 collected 1200 from pot +Player4: shows [Ad As] (a pair of Aces) +*** SUMMARY *** +Total pot 1200 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) collected (1200) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1455 in chips) +Seat 2: Player1 (2231 in chips) +Seat 3: Player3 (947 in chips) +Seat 4: Player4 (1990 in chips) +Seat 5: Player5 (1245 in chips) +Seat 6: Player2 (2400 in chips) +Seat 8: Player0 (2712 in chips) +Seat 10: Player8 (2020 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player4: posts small blind 125 +Player5: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [8h Js] +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1956 to 2206 and is all-in +Player3: calls 922 and is all-in +Player4: folds +Player5: folds +Uncalled bet (1284) returned to Player1 +*** FLOP *** [4s 6h 5s] +*** TURN *** [4s 6h 5s] [5c] +*** RIVER *** [4s 6h 5s 5c] [9d] +*** SHOW DOWN *** +Player1: shows [Jd Qh] (a pair of Fives) +Player3: shows [Ah Ad] (two pair, Aces and Fives) +Player3 collected 2419 from pot +*** SUMMARY *** +Total pot 2419 | Rake 0 +Board [4s 6h 5s 5c 9d] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 showed [Jd Qh] and lost with a pair of Fives +Seat 3: Player3 (button) showed [Ah Ad] and won (2419) with two pair, Aces and Fives +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1430 in chips) +Seat 2: Player1 (1284 in chips) +Seat 3: Player3 (2419 in chips) +Seat 4: Player4 (1840 in chips) +Seat 5: Player5 (970 in chips) +Seat 6: Player2 (2375 in chips) +Seat 8: Player0 (2687 in chips) +Seat 10: Player8 (1995 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player5: posts small blind 125 +Player2: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [5c Ks] +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1009 to 1259 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (1009) returned to Player1 +Player1 collected 825 from pot +*** SUMMARY *** +Total pot 825 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 collected (825) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1405 in chips) +Seat 2: Player1 (1834 in chips) +Seat 3: Player3 (2394 in chips) +Seat 4: Player4 (1815 in chips) +Seat 5: Player5 (820 in chips) +Seat 6: Player2 (2100 in chips) +Seat 8: Player0 (2662 in chips) +Seat 10: Player8 (1970 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player2: posts small blind 125 +Player0: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [4s Ks] +Player8: folds +Player4 said, "gamlet,,,A 10,,,nice suck out" +Player7: folds +Player1: folds +Player4 said, "you lucked out" +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (125) returned to Player0 +Player0 collected 450 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 450 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (450) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1380 in chips) +Seat 2: Player1 (1809 in chips) +Seat 3: Player3 (2369 in chips) +Seat 4: Player4 (1790 in chips) +Seat 5: Player5 (795 in chips) +Seat 6: Player2 (1950 in chips) +Seat 8: Player0 (2962 in chips) +Seat 10: Player8 (1945 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player0: posts small blind 125 +Player8: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [3d 7s] +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 2687 to 2937 and is all-in +Player8: folds +Uncalled bet (2687) returned to Player0 +Player0 collected 700 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 700 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (700) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1355 in chips) +Seat 2: Player1 (1784 in chips) +Seat 3: Player3 (2344 in chips) +Seat 4: Player4 (1765 in chips) +Seat 5: Player5 (770 in chips) +Seat 6: Player2 (1925 in chips) +Seat 8: Player0 (3387 in chips) +Seat 10: Player8 (1670 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player8: posts small blind 125 +Player7: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [2d As] +Player1: raises 1509 to 1759 and is all-in +Player3: folds +Player4: folds +Player5: calls 745 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1014) returned to Player1 +*** FLOP *** [3c 2c Ks] +*** TURN *** [3c 2c Ks] [7c] +*** RIVER *** [3c 2c Ks 7c] [5s] +*** SHOW DOWN *** +Player1: shows [Tc Ac] (a flush, Ace high) +Player5: shows [Ts Td] (a pair of Tens) +Player1 collected 2065 from pot +Player5 finished the tournament in 8th place +*** SUMMARY *** +Total pot 2065 | Rake 0 +Board [3c 2c Ks 7c 5s] +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 showed [Tc Ac] and won (2065) with a flush, Ace high +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 showed [Ts Td] and lost with a pair of Tens +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1080 in chips) +Seat 2: Player1 (3079 in chips) +Seat 3: Player3 (2319 in chips) +Seat 4: Player4 (1740 in chips) +Seat 6: Player2 (1900 in chips) +Seat 8: Player0 (3362 in chips) +Seat 10: Player8 (1520 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player7: posts small blind 125 +Player1: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [Qh 2s] +Player3: raises 250 to 500 +Player4: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (250) returned to Player3 +Player3 collected 800 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 800 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 collected (800) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (930 in chips) +Seat 2: Player1 (2804 in chips) +Seat 3: Player3 (2844 in chips) +Seat 4: Player4 (1715 in chips) +Seat 6: Player2 (1875 in chips) +Seat 8: Player0 (3337 in chips) +Seat 10: Player8 (1495 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player1: posts small blind 125 +Player3: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [Ad Ts] +Player4: folds +Player2: folds +Player0: raises 500 to 750 +Player8: folds +Player7: raises 155 to 905 and is all-in +Player1: folds +Player3: folds +Player0: calls 155 +*** FLOP *** [5h 7h As] +*** TURN *** [5h 7h As] [8h] +*** RIVER *** [5h 7h As 8h] [Jh] +*** SHOW DOWN *** +Player0: shows [Ad Ts] (a pair of Aces) +Player7: shows [Kh Kc] (a flush, King high) +Player7 collected 2360 from pot +*** SUMMARY *** +Total pot 2360 | Rake 0 +Board [5h 7h As 8h Jh] +Seat 1: Player7 (button) showed [Kh Kc] and won (2360) with a flush, King high +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 showed [Ad Ts] and lost with a pair of Aces +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (2360 in chips) +Seat 2: Player1 (2654 in chips) +Seat 3: Player3 (2569 in chips) +Seat 4: Player4 (1690 in chips) +Seat 6: Player2 (1850 in chips) +Seat 8: Player0 (2407 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player3: posts small blind 150 +Player4: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [As Kc] +Player2: folds +Player0: raises 2077 to 2377 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (2077) returned to Player0 +Player0 collected 960 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (960) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (2330 in chips) +Seat 2: Player1 (2624 in chips) +Seat 3: Player3 (2389 in chips) +Seat 4: Player4 (1360 in chips) +Seat 6: Player2 (1820 in chips) +Seat 8: Player0 (3037 in chips) +Seat 10: Player8 (1440 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player4: posts small blind 150 +Player2: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [2s 2d] +Player0: raises 2707 to 3007 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player2: folds +Uncalled bet (2707) returned to Player0 +Player0 collected 960 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 collected (960) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (2300 in chips) +Seat 2: Player1 (2594 in chips) +Seat 3: Player3 (2359 in chips) +Seat 4: Player4 (1180 in chips) +Seat 6: Player2 (1490 in chips) +Seat 8: Player0 (3667 in chips) +Seat 10: Player8 (1410 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player2: posts small blind 150 +Player0: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Th Td] +Player8: folds +Player7: folds +Player1: raises 2264 to 2564 and is all-in +Player3: folds +Player4: folds +Player2: folds +Player0: calls 2264 +*** FLOP *** [Ad Kc 7c] +*** TURN *** [Ad Kc 7c] [9s] +*** RIVER *** [Ad Kc 7c 9s] [Qs] +*** SHOW DOWN *** +Player0: shows [Th Td] (a pair of Tens) +Player1: shows [Tc 9c] (a pair of Nines) +Player0 collected 5488 from pot +Player1 finished the tournament in 7th place +*** SUMMARY *** +Total pot 5488 | Rake 0 +Board [Ad Kc 7c 9s Qs] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 showed [Tc 9c] and lost with a pair of Nines +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) showed [Th Td] and won (5488) with a pair of Tens +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (2270 in chips) +Seat 3: Player3 (2329 in chips) +Seat 4: Player4 (1150 in chips) +Seat 6: Player2 (1310 in chips) +Seat 8: Player0 (6561 in chips) +Seat 10: Player8 (1380 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player0: posts small blind 150 +Player8: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [6d 7s] +Player7: folds +Player3: folds +Player4: folds +Player2: folds +Player0: raises 1800 to 2100 +Player8: folds +Uncalled bet (1800) returned to Player0 +Player0 collected 780 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 780 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (780) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (2240 in chips) +Seat 3: Player3 (2299 in chips) +Seat 4: Player4 (1120 in chips) +Seat 6: Player2 (1280 in chips) +Seat 8: Player0 (7011 in chips) +Seat 10: Player8 (1050 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player8: posts small blind 150 +Player7: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Kc Jc] +Player3: raises 300 to 600 +Player4: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (300) returned to Player3 +Player3 collected 930 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 3: Player3 collected (930) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1910 in chips) +Seat 3: Player3 (2899 in chips) +Seat 4: Player4 (1090 in chips) +Seat 6: Player2 (1250 in chips) +Seat 8: Player0 (6981 in chips) +Seat 10: Player8 (870 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player7: posts small blind 150 +Player3: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [9c 4d] +Player4: raises 760 to 1060 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player3: folds +Uncalled bet (760) returned to Player4 +Player4 collected 930 from pot +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 collected (930) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1730 in chips) +Seat 3: Player3 (2569 in chips) +Seat 4: Player4 (1690 in chips) +Seat 6: Player2 (1220 in chips) +Seat 8: Player0 (6951 in chips) +Seat 10: Player8 (840 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player3: posts small blind 150 +Player4: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [4d Ac] +Player2: folds +Player0: raises 600 to 900 +Player8: folds +Player7: folds +Player3: folds +Player4: folds +Uncalled bet (600) returned to Player0 +Player0 collected 930 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (930) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1700 in chips) +Seat 3: Player3 (2389 in chips) +Seat 4: Player4 (1360 in chips) +Seat 6: Player2 (1190 in chips) +Seat 8: Player0 (7551 in chips) +Seat 10: Player8 (810 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player4: posts small blind 150 +Player2: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [9d 6s] +Player0: folds +Player8: raises 450 to 750 +Player7: folds +Player3: folds +Player4: folds +Player2: folds +Uncalled bet (450) returned to Player8 +Player8 collected 930 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 collected (930) + + + +PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1670 in chips) +Seat 3: Player3 (2359 in chips) +Seat 4: Player4 (1180 in chips) +Seat 6: Player2 (860 in chips) +Seat 8: Player0 (7521 in chips) +Seat 10: Player8 (1410 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player2: posts small blind 150 +Player0: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Kd 7c] +Player8: folds +Player7: folds +Player3: folds +Player4: folds +Player2: raises 530 to 830 and is all-in +Player0: calls 530 +*** FLOP *** [7s Kc 3s] +*** TURN *** [7s Kc 3s] [9c] +*** RIVER *** [7s Kc 3s 9c] [6s] +*** SHOW DOWN *** +Player2: shows [Ah 6c] (a pair of Sixes) +Player0: shows [Kd 7c] (two pair, Kings and Sevens) +Player0 collected 1840 from pot +Player2 finished the tournament in 6th place +Player7 finished the tournament in 1st place and received $40.00. +Player3 finished the tournament in 1st place and received $40.00. +Player4 finished the tournament in 1st place and received $40.00. +Player0 finished the tournament in 1st place and received $40.00. +Player8 finished the tournament in 1st place and received $40.00. +*** SUMMARY *** +Total pot 1840 | Rake 0 +Board [7s Kc 3s 9c 6s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) showed [Ah 6c] and lost with a pair of Sixes +Seat 8: Player0 (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens +Seat 10: Player8 folded before Flop (didn't bet) + + + + From e349dad1b2ccce797ebecdfb1407ffa4114a22e5 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 7 Jun 2010 03:03:52 +0200 Subject: [PATCH 048/253] Revert "dirty but working patch to make it load utf8 files (specifically, FTP)" This reverts commit 12e89306b5bccdef08aea2ea56101465ba4985fd. --- pyfpdb/HandHistoryConverter.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index aedd2191..5b65b955 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -98,13 +98,6 @@ follow : whether to tail -f the input""" self.status = True self.parsedObjectType = "HH" #default behaviour : parsing HH files, can be "Summary" if the parsing encounters a Summary File - - found=False - for item in self.codepage: - if item=="utf-8": - found=True - if not found: - self.codepage.append("utf-8") if autostart: self.start() From 8e0fb785705acdbef54939a244ce95a01d96c1ce Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Mon, 7 Jun 2010 19:29:59 +0100 Subject: [PATCH 049/253] further refinements to .py -> .pyw and python -> pythonw change --- pyfpdb/fpdb.py | 2 +- run_fpdb.py | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index db9050c7..37491505 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -27,5 +27,5 @@ import sys sys.stdout.write('fpdb.py has been renamed to fpdb.pyw - now calling fpdb.pyw ...\n\n') sys.stdout.flush() -os.execvpe('python.exe', ('python.exe', 'fpdb.pyw', '-r'), os.environ) +os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) diff --git a/run_fpdb.py b/run_fpdb.py index 570b7dc5..e77d789f 100644 --- a/run_fpdb.py +++ b/run_fpdb.py @@ -21,13 +21,10 @@ import sys # sys.path[0] holds the directory run_fpdb.py is in sys.path[0] = sys.path[0]+os.sep+"pyfpdb" +# cd to pyfpdb subdir os.chdir(sys.path[0]) #print "sys.path[0] =", sys.path[0], "cwd =", os.getcwd() -import fpdb - -if __name__ == "__main__": - me = fpdb.fpdb() - me.main() - exit() +os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) +# first arg is ignored (name of program being run) From fb811ca38863274993b549afab93850c108d7a37 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Mon, 7 Jun 2010 21:58:04 +0100 Subject: [PATCH 050/253] minor heading change in Preferences dialog --- pyfpdb/GuiPrefs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiPrefs.py b/pyfpdb/GuiPrefs.py index b85b3f6a..e5458cc7 100755 --- a/pyfpdb/GuiPrefs.py +++ b/pyfpdb/GuiPrefs.py @@ -60,7 +60,7 @@ class GuiPrefs: configColumn.pack_start(cRender, True) configColumn.add_attribute(cRender, 'text', 1) - configColumn = gtk.TreeViewColumn("Value") + configColumn = gtk.TreeViewColumn("Value (double-click to change)") self.configView.append_column(configColumn) cRender = gtk.CellRendererText() configColumn.pack_start(cRender, True) From d26b0f3a9fe59f0dfc1bf1a320eb378c2ecdab9f Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Mon, 7 Jun 2010 21:59:01 +0100 Subject: [PATCH 051/253] another python -> pythonw change --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 3d9db3d7..0594a805 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -35,7 +35,7 @@ if os.name == 'nt' and sys.version[0:3] not in ('2.5', '2.6') and '-r' not in sy os.environ['PATH'] = tmppath print "Python " + sys.version[0:3] + ' - press return to continue\n' sys.stdin.readline() - os.execvpe('python.exe', ('python.exe', 'fpdb.py', '-r'), os.environ) # first arg is ignored (name of program being run) + os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) else: print "\npython 2.5 not found, please install python 2.5 or 2.6 for fpdb\n" raw_input("Press ENTER to continue.") From a926f7b19fc6238bc58e741a49e6bfa04eb07c5c Mon Sep 17 00:00:00 2001 From: gimick Date: Tue, 8 Jun 2010 01:40:09 +0100 Subject: [PATCH 052/253] Histories updated with random hand numbers, to avoid duplicates. PLO example added with sidepots --- ...NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt | 12 +- ...LHE-FR-USD-0.01-0.02-201005.microgrind.txt | 192 +++++++++--------- ...FR-USD-0.01-0.02-201006.foldsoutofturn.txt | 2 +- .../PLO-FR-USD-0.01-0.02-201006.sidepots.txt | 158 ++++++++++++++ .../NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt | 64 +++--- .../Flop/NLHE-USD-STT-20-201006.DONturbo.txt | 122 +++++------ 6 files changed, 354 insertions(+), 196 deletions(-) create mode 100644 pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt index 75aabe75..7ffad80f 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt @@ -1,4 +1,4 @@ -PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET] +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) @@ -26,7 +26,7 @@ Seat 2: Player1 (big blind) folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET] +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) @@ -46,7 +46,7 @@ Seat 2: Player1 (button) (small blind) collected ($1) -PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET] +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) @@ -65,7 +65,7 @@ Seat 2: Player1 (big blind) collected ($0.50) -PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET] +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) @@ -97,7 +97,7 @@ Seat 2: Player1 (button) (small blind) mucked [6c 5s] -PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET] +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) @@ -116,7 +116,7 @@ Seat 2: Player1 (big blind) collected ($0.50) -PokerStars Game #99999999999: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] +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) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt index 93002684..8b1fbab3 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt @@ -1,4 +1,4 @@ -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] +PokerStars Game #31900318973: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] Table '99999999' 9-max Seat #5 is the button Seat 2: Player14 ($0.97 in chips) Seat 3: Player23 ($1.53 in chips) @@ -47,7 +47,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] +PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] Table '99999999' 9-max Seat #6 is the button Seat 2: Player14 ($0.89 in chips) Seat 3: Player23 ($1.51 in chips) @@ -91,7 +91,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] +PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] Table '99999999' 9-max Seat #7 is the button Seat 2: Player14 ($0.89 in chips) Seat 3: Player23 ($1.51 in chips) @@ -130,7 +130,7 @@ Seat 9: Player21 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] +PokerStars Game #20107261170: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player11 ($1.60 in chips) Seat 2: Player14 ($0.89 in chips) @@ -175,7 +175,7 @@ Seat 9: Player21 (small blind) collected ($0.04) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] +PokerStars Game #30246290211: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player11 ($1.58 in chips) Seat 2: Player14 ($0.89 in chips) @@ -230,7 +230,7 @@ Seat 9: Player21 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] +PokerStars Game #31761373829: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player11 ($1.44 in chips) Seat 2: Player14 ($1.19 in chips) @@ -278,7 +278,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] +PokerStars Game #30758254721: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.18 in chips) @@ -333,7 +333,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] +PokerStars Game #88562623320: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) @@ -380,7 +380,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] +PokerStars Game #16687242396: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) @@ -428,7 +428,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] +PokerStars Game #20006229758: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) @@ -478,7 +478,7 @@ Seat 9: Player21 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] +PokerStars Game #27303244902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player11 ($1.81 in chips) Seat 2: Player14 ($1.38 in chips) @@ -526,7 +526,7 @@ Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] +PokerStars Game #13363166481: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player11 ($1.23 in chips) Seat 2: Player14 ($1.38 in chips) @@ -581,7 +581,7 @@ Seat 9: Player21 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] +PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] Table '99999999' 9-max Seat #8 is the button Seat 2: Player14 ($1.38 in chips) Seat 3: Player23 ($2.37 in chips) @@ -628,7 +628,7 @@ Seat 9: Player21 (small blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] +PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] Table '99999999' 9-max Seat #9 is the button Seat 2: Player14 ($1.43 in chips) Seat 3: Player23 ($2.37 in chips) @@ -683,7 +683,7 @@ Seat 9: Player21 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] +PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] Table '99999999' 9-max Seat #2 is the button Seat 2: Player14 ($1.29 in chips) Seat 3: Player23 ($2.57 in chips) @@ -722,7 +722,7 @@ Seat 8: Player3 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] +PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] Table '99999999' 9-max Seat #3 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) @@ -759,7 +759,7 @@ Seat 8: Player3 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] +PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] Table '99999999' 9-max Seat #4 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) @@ -814,7 +814,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] +PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] Table '99999999' 9-max Seat #5 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) @@ -866,7 +866,7 @@ Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] +PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] Table '99999999' 9-max Seat #6 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) @@ -921,7 +921,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] +PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] Table '99999999' 9-max Seat #7 is the button Seat 2: Player14 ($1.27 in chips) Seat 3: Player23 ($2.55 in chips) @@ -960,7 +960,7 @@ Seat 9: Player9 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] +PokerStars Game #31790741684: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.80 in chips) Seat 2: Player14 ($1.27 in chips) @@ -1001,7 +1001,7 @@ Seat 9: Player9 (small blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] +PokerStars Game #23618143313: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.78 in chips) Seat 2: Player14 ($1.27 in chips) @@ -1069,7 +1069,7 @@ Seat 9: Player9 (button) collected ($0.18) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] +PokerStars Game #20255202813: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.23 in chips) @@ -1128,7 +1128,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] +PokerStars Game #14690416916: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1178,7 +1178,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] +PokerStars Game #13559160472: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1234,7 +1234,7 @@ Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] +PokerStars Game #16011540019: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1282,7 +1282,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] +PokerStars Game #16588282642: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1324,7 +1324,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] +PokerStars Game #22736406243: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1366,7 +1366,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] +PokerStars Game #19953154592: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1418,7 +1418,7 @@ Seat 9: Player9 (big blind) folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] +PokerStars Game #74551611118: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.74 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1465,7 +1465,7 @@ Seat 9: Player9 (small blind) collected ($0.08) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] +PokerStars Game #64594322241: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.70 in chips) Seat 2: Player14 ($1.61 in chips) @@ -1516,7 +1516,7 @@ Seat 9: Player9 (button) folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] +PokerStars Game #20220303142: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.59 in chips) @@ -1567,7 +1567,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] +PokerStars Game #15797308302: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1615,7 +1615,7 @@ Seat 9: Player9 folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] +PokerStars Game #22202259791: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1662,7 +1662,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] +PokerStars Game #23635931413: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1713,7 +1713,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] +PokerStars Game #16301246877: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1771,7 +1771,7 @@ Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] +PokerStars Game #21693130641: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1823,7 +1823,7 @@ Seat 9: Player9 folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] +PokerStars Game #80731798515: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1865,7 +1865,7 @@ Seat 9: Player9 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] +PokerStars Game #12041521491: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.69 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1923,7 +1923,7 @@ Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] +PokerStars Game #32267943121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.67 in chips) Seat 2: Player14 ($1.58 in chips) @@ -1984,7 +1984,7 @@ Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] +PokerStars Game #21796253433: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.52 in chips) @@ -2032,7 +2032,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] +PokerStars Game #20106934129: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.51 in chips) @@ -2094,7 +2094,7 @@ Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] +PokerStars Game #69512225343: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.51 in chips) @@ -2153,7 +2153,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] +PokerStars Game #69681723765: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) @@ -2211,7 +2211,7 @@ Seat 9: Player9 mucked [Ts Qs] -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] +PokerStars Game #30142164314: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) @@ -2271,7 +2271,7 @@ Seat 9: Player9 showed [Ah Kh] and lost with high card Ace -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] +PokerStars Game #10018305383: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) @@ -2328,7 +2328,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] +PokerStars Game #45323247626: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) @@ -2373,7 +2373,7 @@ Seat 9: Player9 (big blind) collected ($0.05) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] +PokerStars Game #56232290155: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player18 ($0.66 in chips) Seat 2: Player14 ($1.49 in chips) @@ -2417,7 +2417,7 @@ Seat 9: Player9 (small blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] +PokerStars Game #32171206783: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player18 ($0.64 in chips) Seat 2: Player14 ($1.49 in chips) @@ -2462,7 +2462,7 @@ Seat 9: Player9 (button) folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] +PokerStars Game #58591999729: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player18 ($0.63 in chips) Seat 2: Player14 ($1.47 in chips) @@ -2512,7 +2512,7 @@ Seat 9: Player9 collected ($0.11) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] +PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] Table '99999999' 9-max Seat #2 is the button Seat 2: Player14 ($1.46 in chips) Seat 3: Player24 ($1.87 in chips) @@ -2554,7 +2554,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] +PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] Table '99999999' 9-max Seat #3 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.85 in chips) @@ -2593,7 +2593,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] +PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] Table '99999999' 9-max Seat #4 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.85 in chips) @@ -2644,7 +2644,7 @@ Seat 9: Player9 folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] +PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] Table '99999999' 9-max Seat #5 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.79 in chips) @@ -2691,7 +2691,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] +PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] Table '99999999' 9-max Seat #6 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.61 in chips) @@ -2747,7 +2747,7 @@ Seat 9: Player9 collected ($1.49) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] +PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] Table '99999999' 9-max Seat #7 is the button Seat 2: Player14 ($1.62 in chips) Seat 3: Player24 ($1.61 in chips) @@ -2787,7 +2787,7 @@ Seat 9: Player9 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] +PokerStars Game #99425634223: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5 in chips) Seat 2: Player14 ($1.62 in chips) @@ -2844,7 +2844,7 @@ Seat 9: Player9 (small blind) mucked [Jh Qd] -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] +PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($4.96 in chips) Seat 3: Player24 ($1.61 in chips) @@ -2902,7 +2902,7 @@ Seat 9: Player9 (button) collected ($0.49) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] +PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($4.95 in chips) Seat 3: Player24 ($1.55 in chips) @@ -2949,7 +2949,7 @@ Seat 9: Player9 folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] +PokerStars Game #11849119171: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.12 in chips) Seat 2: Player2 ($1 in chips) @@ -2992,7 +2992,7 @@ Seat 9: Player9 folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] +PokerStars Game #71932031318: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.12 in chips) Seat 2: Player2 ($0.98 in chips) @@ -3047,7 +3047,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] +PokerStars Game #24227136121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.08 in chips) Seat 2: Player2 ($0.98 in chips) @@ -3102,7 +3102,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] +PokerStars Game #31395250833: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.13 in chips) Seat 2: Player2 ($0.98 in chips) @@ -3153,7 +3153,7 @@ Seat 9: Player9 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] +PokerStars Game #12179306192: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.13 in chips) Seat 2: Player2 ($2.04 in chips) @@ -3199,7 +3199,7 @@ Seat 9: Player9 (small blind) folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] +PokerStars Game #51091236980: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.11 in chips) Seat 2: Player2 ($2.40 in chips) @@ -3248,7 +3248,7 @@ Seat 9: Player9 (button) mucked [8d Ah] -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] +PokerStars Game #27086240062: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.10 in chips) Seat 2: Player2 ($2.38 in chips) @@ -3301,7 +3301,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] +PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.39 in chips) Seat 3: Player24 ($1.50 in chips) @@ -3351,7 +3351,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] +PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.39 in chips) Seat 3: Player24 ($1.48 in chips) @@ -3405,7 +3405,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] +PokerStars Game #76511550927: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player10 ($1.29 in chips) @@ -3461,7 +3461,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] +PokerStars Game #28012101373: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player10 ($1.21 in chips) @@ -3517,7 +3517,7 @@ Seat 9: Player9 (big blind) folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] +PokerStars Game #41511921426: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player10 ($1.05 in chips) @@ -3565,7 +3565,7 @@ Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] +PokerStars Game #28359136208: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.98 in chips) Seat 2: Player10 ($3 in chips) @@ -3610,7 +3610,7 @@ Seat 5: Player12 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] +PokerStars Game #70913060022: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player20 ($5.98 in chips) Seat 2: Player10 ($3.20 in chips) @@ -3662,7 +3662,7 @@ Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] +PokerStars Game #20264306210: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.96 in chips) Seat 2: Player10 ($3.18 in chips) @@ -3705,7 +3705,7 @@ Seat 6: Player22 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] +PokerStars Game #27816107382: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.96 in chips) Seat 2: Player10 ($3.18 in chips) @@ -3753,7 +3753,7 @@ Seat 6: Player22 (big blind) folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] +PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.96 in chips) Seat 3: Player24 ($1.44 in chips) @@ -3806,7 +3806,7 @@ Seat 9: Player9 showed [6c Jd] and lost with high card Ace -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] +PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.94 in chips) Seat 3: Player24 ($1.44 in chips) @@ -3864,7 +3864,7 @@ Seat 9: Player9 (big blind) mucked [6c 2d] -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] +PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5.94 in chips) Seat 3: Player24 ($1.44 in chips) @@ -3919,7 +3919,7 @@ Seat 9: Player9 (small blind) collected ($0.26) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] +PokerStars Game #50092600346: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.92 in chips) Seat 2: Player4 ($1 in chips) @@ -3985,7 +3985,7 @@ Seat 9: Player9 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] +PokerStars Game #24708132405: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.54 in chips) Seat 2: Player4 ($0.88 in chips) @@ -4044,7 +4044,7 @@ Seat 9: Player9 collected ($0.26) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] +PokerStars Game #16013874820: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player20 ($5.54 in chips) Seat 2: Player4 ($0.82 in chips) @@ -4103,7 +4103,7 @@ Seat 9: Player9 folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] +PokerStars Game #81348282228: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.52 in chips) Seat 2: Player4 ($0.70 in chips) @@ -4159,7 +4159,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] +PokerStars Game #12247201631: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.52 in chips) Seat 2: Player4 ($0.64 in chips) @@ -4201,7 +4201,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] +PokerStars Game #18249303862: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.64 in chips) @@ -4253,7 +4253,7 @@ Seat 9: Player9 folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] +PokerStars Game #79095206106: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.64 in chips) @@ -4311,7 +4311,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] +PokerStars Game #23803281942: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.62 in chips) @@ -4353,7 +4353,7 @@ Seat 9: Player9 (big blind) folded before Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] +PokerStars Game #29640307323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5.55 in chips) Seat 2: Player4 ($0.62 in chips) @@ -4404,7 +4404,7 @@ Seat 8: Player7 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] +PokerStars Game #22991200661: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] Table '99999999' 9-max Seat #1 is the button Seat 1: Player20 ($5.53 in chips) Seat 2: Player4 ($0.60 in chips) @@ -4462,7 +4462,7 @@ Seat 9: Player9 folded on the Turn -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] +PokerStars Game #22198294871: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] Table '99999999' 9-max Seat #2 is the button Seat 1: Player20 ($5.53 in chips) Seat 2: Player4 ($0.58 in chips) @@ -4515,7 +4515,7 @@ Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] +PokerStars Game #97422269929: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] Table '99999999' 9-max Seat #3 is the button Seat 1: Player20 ($5.45 in chips) Seat 2: Player4 ($0.58 in chips) @@ -4563,7 +4563,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] +PokerStars Game #18011288181: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] Table '99999999' 9-max Seat #4 is the button Seat 1: Player20 ($5.45 in chips) Seat 2: Player4 ($0.58 in chips) @@ -4612,7 +4612,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] +PokerStars Game #45432821411: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] Table '99999999' 9-max Seat #5 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.58 in chips) @@ -4672,7 +4672,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] +PokerStars Game #10551491588: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] Table '99999999' 9-max Seat #6 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.48 in chips) @@ -4713,7 +4713,7 @@ Seat 9: Player9 folded before Flop (didn't bet) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] +PokerStars Game #19037115169: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] Table '99999999' 9-max Seat #7 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.48 in chips) @@ -4752,7 +4752,7 @@ Seat 9: Player9 (big blind) collected ($0.02) -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] +PokerStars Game #26447108451: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] Table '99999999' 9-max Seat #8 is the button Seat 1: Player20 ($5.39 in chips) Seat 2: Player4 ($0.48 in chips) @@ -4800,7 +4800,7 @@ Seat 9: Player9 (small blind) folded on the Flop -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] +PokerStars Game #16631106221: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] Table '99999999' 9-max Seat #9 is the button Seat 1: Player20 ($5.37 in chips) Seat 2: Player4 ($0.48 in chips) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt index ddeaa4bb..543c3f1e 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt @@ -1,4 +1,4 @@ -PokerStars Game #99999999999: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] +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) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt new file mode 100644 index 00000000..8ca829fe --- /dev/null +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt @@ -0,0 +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 + + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt index ccc6876f..2674d01d 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt @@ -1,4 +1,4 @@ -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] +PokerStars Game #20107222971: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] Table '999999998 11' 6-max Seat #1 is the button Seat 1: Player6 (300 in chips) Seat 2: Player21 (300 in chips) @@ -46,7 +46,7 @@ Seat 6: Player0 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] +PokerStars Game #26543131325: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] Table '999999998 11' 6-max Seat #2 is the button Seat 1: Player6 (1245 in chips) Seat 2: Player21 (265 in chips) @@ -95,7 +95,7 @@ Seat 6: Player0 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] +PokerStars Game #76601810212: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] Table '999999998 11' 6-max Seat #3 is the button Seat 1: Player6 (1245 in chips) Seat 2: Player21 (255 in chips) @@ -141,7 +141,7 @@ Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] +PokerStars Game #28346217223: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] Table '999999998 11' 6-max Seat #4 is the button Seat 1: Player6 (1235 in chips) Seat 2: Player21 (245 in chips) @@ -189,7 +189,7 @@ Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kin -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] +PokerStars Game #53469813066: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] Table '999999998 11' 6-max Seat #5 is the button Seat 1: Player6 (50 in chips) Seat 2: Player21 (300 in chips) @@ -234,7 +234,7 @@ Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] +PokerStars Game #17659192331: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] Table '999999998 11' 6-max Seat #1 is the button Seat 1: Player6 (510 in chips) Seat 2: Player21 (240 in chips) @@ -282,7 +282,7 @@ Seat 6: Player13 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] +PokerStars Game #15161114072: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] Table '999999998 11' 6-max Seat #2 is the button Seat 1: Player6 (600 in chips) Seat 2: Player21 (170 in chips) @@ -330,7 +330,7 @@ Seat 6: Player13 showed [Kc As] and lost with a pair of Kings -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] +PokerStars Game #57039811101: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] Table '999999998 11' 6-max Seat #3 is the button Seat 1: Player6 (580 in chips) Seat 2: Player21 (150 in chips) @@ -376,7 +376,7 @@ Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] +PokerStars Game #90281799521: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] Table '999999998 11' 6-max Seat #4 is the button Seat 1: Player6 (560 in chips) Seat 2: Player21 (130 in chips) @@ -430,7 +430,7 @@ Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and T -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] +PokerStars Game #21189900419: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] Table '999999998 11' 6-max Seat #5 is the button Seat 1: Player6 (1720 in chips) Seat 2: Player21 (670 in chips) @@ -473,7 +473,7 @@ Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] +PokerStars Game #16652117062: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] Table '999999998 11' 6-max Seat #1 is the button Seat 1: Player6 (1580 in chips) Seat 2: Player21 (430 in chips) @@ -523,7 +523,7 @@ Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] +PokerStars Game #18934320061: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] Table '999999998 11' 6-max Seat #2 is the button Seat 1: Player6 (1540 in chips) Seat 2: Player21 (1960 in chips) @@ -574,7 +574,7 @@ Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] +PokerStars Game #14415194893: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] Table '999999998 11' 6-max Seat #4 is the button Seat 1: Player6 (600 in chips) Seat 2: Player21 (1920 in chips) @@ -632,7 +632,7 @@ Seat 6: Player7 (big blind) mucked [Qh 2s] -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] +PokerStars Game #48839292212: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] Table '999999998 11' 6-max Seat #5 is the button Seat 1: Player6 (560 in chips) Seat 2: Player21 (1880 in chips) @@ -708,7 +708,7 @@ Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eigh -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] +PokerStars Game #15911190352: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] Table '999999998 11' 6-max Seat #6 is the button Seat 1: Player6 (300 in chips) Seat 2: Player21 (600 in chips) @@ -754,7 +754,7 @@ Seat 6: Player7 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] +PokerStars Game #31048178850: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] Table '999999998 11' 6-max Seat #1 is the button Seat 1: Player6 (1060 in chips) Seat 2: Player21 (600 in chips) @@ -810,7 +810,7 @@ Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] +PokerStars Game #61011805711: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] Table '999999998 11' 6-max Seat #2 is the button Seat 1: Player6 (980 in chips) Seat 2: Player21 (320 in chips) @@ -855,7 +855,7 @@ Seat 6: Player7 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] +PokerStars Game #41541235827: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] Table '999999998 11' 6-max Seat #3 is the button Seat 1: Player6 (760 in chips) Seat 2: Player21 (200 in chips) @@ -905,7 +905,7 @@ Seat 6: Player7 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] +PokerStars Game #27976721395: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] Table '999999998 11' 6-max Seat #4 is the button Seat 1: Player6 (2380 in chips) Seat 2: Player21 (600 in chips) @@ -957,7 +957,7 @@ Seat 6: Player7 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] +PokerStars Game #25234313412: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] Table '999999998 11' 6-max Seat #5 is the button Seat 2: Player21 (480 in chips) Seat 3: Player16 (3720 in chips) @@ -999,7 +999,7 @@ Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] +PokerStars Game #95143913174: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] Table '999999998 11' 6-max Seat #6 is the button Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind) Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) @@ -1037,7 +1037,7 @@ Seat 6: Player7 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] +PokerStars Game #50411262384: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] Table '999999998 11' 6-max Seat #3 is the button Seat 1: Player5 (1940 in chips) Seat 2: Player4 (3540 in chips) @@ -1082,7 +1082,7 @@ Seat 6: Player7 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] +PokerStars Game #16124236191: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] Table '999999998 11' 6-max Seat #4 is the button Seat 1: Player5 (1780 in chips) Seat 2: Player4 (3380 in chips) @@ -1133,7 +1133,7 @@ Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] +PokerStars Game #20501244423: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] Table '999999998 11' 6-max Seat #5 is the button Seat 1: Player5 (1620 in chips) Seat 2: Player4 (3220 in chips) @@ -1169,7 +1169,7 @@ Seat 6: Player7 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] +PokerStars Game #18390596592: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] Table '999999998 11' 6-max Seat #6 is the button Seat 1: Player5 (2820 in chips) Seat 2: Player4 (3060 in chips) @@ -1215,7 +1215,7 @@ Seat 6: Player7 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] +PokerStars Game #52768090525: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] Table '999999998 11' 6-max Seat #1 is the button Seat 1: Player5 (1860 in chips) Seat 2: Player4 (4660 in chips) @@ -1252,7 +1252,7 @@ Seat 6: Player7 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] +PokerStars Game #23011819420: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] Table '999999998 11' 6-max Seat #2 is the button Seat 1: Player5 (1700 in chips) Seat 2: Player4 (4100 in chips) @@ -1297,7 +1297,7 @@ Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] +PokerStars Game #24661247813: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] Table '999999998 48' 6-max Seat #1 is the button Seat 1: Player17 (14798 in chips) Seat 2: Player3 (7215 in chips) @@ -1344,7 +1344,7 @@ Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] +PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] Table '999999998 48' 6-max Seat #2 is the button Seat 1: Player17 (14558 in chips) Seat 2: Player3 (6375 in chips) @@ -1382,7 +1382,7 @@ Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] +PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] Table '999999998 48' 6-max Seat #4 is the button Seat 1: Player17 (14318 in chips) Seat 3: Player19 (1508 in chips) @@ -1418,7 +1418,7 @@ Seat 6: Player22 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] +PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] Table '999999998 48' 6-max Seat #6 is the button Seat 1: Player17 (4583 in chips) Seat 3: Player19 (1268 in chips) @@ -1461,7 +1461,7 @@ Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens -PokerStars Game #99999999999: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] +PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] Table '999999998 5' 6-max Seat #4 is the button Seat 1: Player14 (5780 in chips) Seat 2: Player17 (1943 in chips) diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt index 41034169..6bf36f9f 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt @@ -1,4 +1,4 @@ -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] +PokerStars Game #62678213223: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1500 in chips) @@ -41,7 +41,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] +PokerStars Game #32163049071: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1490 in chips) @@ -97,7 +97,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] +PokerStars Game #32288202831: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -142,7 +142,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] +PokerStars Game #42832402272: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -190,7 +190,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] +PokerStars Game #23213683913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] Table '999999993 1' 10-max Seat #5 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -245,7 +245,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] +PokerStars Game #63032690445: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -294,7 +294,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] +PokerStars Game #26424166162: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] Table '999999993 1' 10-max Seat #7 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -348,7 +348,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] +PokerStars Game #17689229111: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -399,7 +399,7 @@ Seat 10: Player8 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] +PokerStars Game #24859173248: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1133 in chips) @@ -440,7 +440,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] +PokerStars Game #23369170253: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1485 in chips) Seat 2: Player1 (1103 in chips) @@ -491,7 +491,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] +PokerStars Game #10078346175: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (1485 in chips) Seat 2: Player1 (1463 in chips) @@ -530,7 +530,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] +PokerStars Game #14493477081: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1485 in chips) Seat 2: Player1 (1463 in chips) @@ -571,7 +571,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] +PokerStars Game #17974129386: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1485 in chips) Seat 2: Player1 (1463 in chips) @@ -611,7 +611,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] +PokerStars Game #21963114551: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] Table '999999993 1' 10-max Seat #5 is the button Seat 1: Player7 (1485 in chips) Seat 2: Player1 (1463 in chips) @@ -661,7 +661,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] +PokerStars Game #67720495136: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (1480 in chips) Seat 2: Player1 (1458 in chips) @@ -711,7 +711,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] +PokerStars Game #82492925521: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] Table '999999993 1' 10-max Seat #7 is the button Seat 1: Player7 (1475 in chips) Seat 2: Player1 (1453 in chips) @@ -765,7 +765,7 @@ Seat 10: Player8 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] +PokerStars Game #21093287397: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (1470 in chips) Seat 2: Player1 (1448 in chips) @@ -815,7 +815,7 @@ Seat 10: Player8 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] +PokerStars Game #71563601774: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1415 in chips) Seat 2: Player1 (1443 in chips) @@ -865,7 +865,7 @@ Seat 10: Player8 (button) collected (170) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] +PokerStars Game #28530256453: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1385 in chips) Seat 2: Player1 (1388 in chips) @@ -914,7 +914,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] +PokerStars Game #30086223433: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (1380 in chips) Seat 2: Player1 (1358 in chips) @@ -964,7 +964,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] +PokerStars Game #24072342623: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1375 in chips) Seat 2: Player1 (1353 in chips) @@ -1014,7 +1014,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] +PokerStars Game #48301138530: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1365 in chips) Seat 2: Player1 (1343 in chips) @@ -1072,7 +1072,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] +PokerStars Game #24109969712: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] Table '999999993 1' 10-max Seat #5 is the button Seat 1: Player7 (1355 in chips) Seat 2: Player1 (1333 in chips) @@ -1121,7 +1121,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] +PokerStars Game #30792250485: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (1345 in chips) Seat 2: Player1 (1563 in chips) @@ -1170,7 +1170,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] +PokerStars Game #13065275367: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] Table '999999993 1' 10-max Seat #7 is the button Seat 1: Player7 (1335 in chips) Seat 2: Player1 (1553 in chips) @@ -1228,7 +1228,7 @@ Seat 10: Player8 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] +PokerStars Game #21787227501: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (1325 in chips) Seat 2: Player1 (1543 in chips) @@ -1274,7 +1274,7 @@ Seat 10: Player8 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] +PokerStars Game #97333030912: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1215 in chips) Seat 2: Player1 (1763 in chips) @@ -1325,7 +1325,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] +PokerStars Game #15498191522: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1155 in chips) Seat 2: Player1 (1653 in chips) @@ -1371,7 +1371,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] +PokerStars Game #14585315141: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (1485 in chips) Seat 2: Player1 (1563 in chips) @@ -1417,7 +1417,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] +PokerStars Game #11948180943: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1815 in chips) Seat 2: Player1 (1548 in chips) @@ -1467,7 +1467,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] +PokerStars Game #17624911842: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1800 in chips) Seat 2: Player1 (1533 in chips) @@ -1513,7 +1513,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] +PokerStars Game #23032927970: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] Table '999999993 1' 10-max Seat #5 is the button Seat 1: Player7 (1785 in chips) Seat 2: Player1 (1518 in chips) @@ -1559,7 +1559,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] +PokerStars Game #23986188992: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (1770 in chips) Seat 2: Player1 (1503 in chips) @@ -1605,7 +1605,7 @@ Seat 10: Player8 (big blind) collected (270) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] +PokerStars Game #56828726239: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (1755 in chips) Seat 2: Player1 (1488 in chips) @@ -1650,7 +1650,7 @@ Seat 10: Player8 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] +PokerStars Game #38112793216: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1590 in chips) Seat 2: Player1 (1473 in chips) @@ -1696,7 +1696,7 @@ Seat 10: Player8 (button) collected (495) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] +PokerStars Game #31069130752: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (1308 in chips) @@ -1741,7 +1741,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] +PokerStars Game #32482731311: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (1480 in chips) Seat 2: Player1 (1188 in chips) @@ -1787,7 +1787,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] +PokerStars Game #88351539130: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1460 in chips) Seat 2: Player1 (1168 in chips) @@ -1833,7 +1833,7 @@ Seat 10: Player8 collected (660) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] +PokerStars Game #17361301211: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1440 in chips) Seat 2: Player1 (1148 in chips) @@ -1879,7 +1879,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] +PokerStars Game #97221803271: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] Table '999999993 1' 10-max Seat #5 is the button Seat 1: Player7 (1420 in chips) Seat 2: Player1 (1128 in chips) @@ -1924,7 +1924,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] +PokerStars Game #15548756265: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (1860 in chips) Seat 2: Player1 (1108 in chips) @@ -1970,7 +1970,7 @@ Seat 10: Player8 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] +PokerStars Game #12086528146: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (1840 in chips) Seat 2: Player1 (1088 in chips) @@ -2022,7 +2022,7 @@ Seat 10: Player8 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] +PokerStars Game #13697312495: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1620 in chips) Seat 2: Player1 (2596 in chips) @@ -2068,7 +2068,7 @@ Seat 10: Player8 (button) collected (660) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] +PokerStars Game #13761146921: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1500 in chips) Seat 2: Player1 (2376 in chips) @@ -2114,7 +2114,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] +PokerStars Game #30422752324: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (1480 in chips) Seat 2: Player1 (2256 in chips) @@ -2161,7 +2161,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] +PokerStars Game #24883115542: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1455 in chips) Seat 2: Player1 (2231 in chips) @@ -2213,7 +2213,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] +PokerStars Game #22311473630: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1430 in chips) Seat 2: Player1 (1284 in chips) @@ -2258,7 +2258,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] +PokerStars Game #21725324525: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] Table '999999993 1' 10-max Seat #5 is the button Seat 1: Player7 (1405 in chips) Seat 2: Player1 (1834 in chips) @@ -2305,7 +2305,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] +PokerStars Game #25457310702: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (1380 in chips) Seat 2: Player1 (1809 in chips) @@ -2351,7 +2351,7 @@ Seat 10: Player8 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] +PokerStars Game #16450285998: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (1355 in chips) Seat 2: Player1 (1784 in chips) @@ -2404,7 +2404,7 @@ Seat 10: Player8 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] +PokerStars Game #29432277481: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1080 in chips) Seat 2: Player1 (3079 in chips) @@ -2446,7 +2446,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] +PokerStars Game #14663167952: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (930 in chips) Seat 2: Player1 (2804 in chips) @@ -2494,7 +2494,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] +PokerStars Game #25038217401: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] Table '999999993 1' 10-max Seat #2 is the button Seat 1: Player7 (2360 in chips) Seat 2: Player1 (2654 in chips) @@ -2536,7 +2536,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] +PokerStars Game #16107184333: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (2330 in chips) Seat 2: Player1 (2624 in chips) @@ -2578,7 +2578,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] +PokerStars Game #97952060720: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (2300 in chips) Seat 2: Player1 (2594 in chips) @@ -2626,7 +2626,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] +PokerStars Game #32542183913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] Table '999999993 1' 10-max Seat #6 is the button Seat 1: Player7 (2270 in chips) Seat 3: Player3 (2329 in chips) @@ -2664,7 +2664,7 @@ Seat 10: Player8 (big blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] +PokerStars Game #13633150393: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] Table '999999993 1' 10-max Seat #8 is the button Seat 1: Player7 (2240 in chips) Seat 3: Player3 (2299 in chips) @@ -2702,7 +2702,7 @@ Seat 10: Player8 (small blind) folded before Flop -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] +PokerStars Game #29869218603: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] Table '999999993 1' 10-max Seat #10 is the button Seat 1: Player7 (1910 in chips) Seat 3: Player3 (2899 in chips) @@ -2739,7 +2739,7 @@ Seat 10: Player8 (button) folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] +PokerStars Game #31933493206: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] Table '999999993 1' 10-max Seat #1 is the button Seat 1: Player7 (1730 in chips) Seat 3: Player3 (2569 in chips) @@ -2777,7 +2777,7 @@ Seat 10: Player8 folded before Flop (didn't bet) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] +PokerStars Game #27455183722: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] Table '999999993 1' 10-max Seat #3 is the button Seat 1: Player7 (1700 in chips) Seat 3: Player3 (2389 in chips) @@ -2815,7 +2815,7 @@ Seat 10: Player8 collected (930) -PokerStars Game #99999999999: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] +PokerStars Game #12858227913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] Table '999999993 1' 10-max Seat #4 is the button Seat 1: Player7 (1670 in chips) Seat 3: Player3 (2359 in chips) From 5aadfde2df34b1bd379786c58e2854bf76dec348 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 02:52:41 +0200 Subject: [PATCH 053/253] renamed test scripts to make their purpose clearer --- pyfpdb/{test1.py => test_Python.py} | 0 pyfpdb/{test2.py => test_Python_Libs.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename pyfpdb/{test1.py => test_Python.py} (100%) rename pyfpdb/{test2.py => test_Python_Libs.py} (100%) diff --git a/pyfpdb/test1.py b/pyfpdb/test_Python.py similarity index 100% rename from pyfpdb/test1.py rename to pyfpdb/test_Python.py diff --git a/pyfpdb/test2.py b/pyfpdb/test_Python_Libs.py similarity index 100% rename from pyfpdb/test2.py rename to pyfpdb/test_Python_Libs.py From 816be22833a79e12131297ff08990cafa315fcdd Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 04:30:10 +0200 Subject: [PATCH 054/253] moved test_Python* to root folder so they don't collide with py.test and because it fits better there anyways --- pyfpdb/test_Python.py => test_Python.py | 0 pyfpdb/test_Python_Libs.py => test_Python_Libs.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename pyfpdb/test_Python.py => test_Python.py (100%) rename pyfpdb/test_Python_Libs.py => test_Python_Libs.py (100%) diff --git a/pyfpdb/test_Python.py b/test_Python.py similarity index 100% rename from pyfpdb/test_Python.py rename to test_Python.py diff --git a/pyfpdb/test_Python_Libs.py b/test_Python_Libs.py similarity index 100% rename from pyfpdb/test_Python_Libs.py rename to test_Python_Libs.py From 7a7ab098fac2efeb26fa12437540562ec7f1a08c Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 04:32:10 +0200 Subject: [PATCH 055/253] changed run_fpdb.py permissions to executable --- run_fpdb.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 run_fpdb.py diff --git a/run_fpdb.py b/run_fpdb.py old mode 100644 new mode 100755 From aed767ef4b8bcd23226937abd4f4abf16f5b65ef Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 04:33:27 +0200 Subject: [PATCH 056/253] add warning dialogue to restart after recreate as i encountered bugs under some circumstances if I didn't but it doesn't seem worth investigating --- pyfpdb/fpdb.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 3d9db3d7..29613d35 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- #Copyright 2008 Steffen Jobbagy-Felso #This program is free software: you can redistribute it and/or modify @@ -412,6 +413,14 @@ class fpdb: #else: # for other dbs use same connection as holds global lock # self.fdb_lock.fdb.recreate_tables() + # TODO: figure out why this seems to be necessary + dia_restart = gtk.MessageDialog(parent=None, flags=0, type=gtk.MESSAGE_WARNING, + buttons=(gtk.BUTTONS_OK), message_format="Restart fpdb") + diastring = "You should now restart fpdb." + dia_restart.format_secondary_text(diastring) + + dia_restart.run() + dia_restart.destroy() elif response == gtk.RESPONSE_NO: print 'User cancelled recreating tables' #if not lock_released: From 5803933ba066ed8f72c505399b662f7f286e0720 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Wed, 9 Jun 2010 20:58:05 +0100 Subject: [PATCH 057/253] update py2exe instructions --- pyfpdb/py2exe_setup.py | 53 ++++++++++++++++++++++++++++-------------- 1 file changed, 36 insertions(+), 17 deletions(-) diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index 15c834b5..97c24526 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -39,16 +39,14 @@ Py2exe script for fpdb. # MSVCP90.dll. These are somewhere in your windows install, so you # can just copy them to your working folder. (or just assume other # person will have them? any copyright issues with including them?) -#- [ If it works, you'll have 3 new folders, build and dist and gfx. Build is -# working space and should be deleted. Dist and gfx contain the files to be -# distributed. ] -# If it works, you'll have a new dir fpdb-XXX-YYYYMMDD-exe which should +#- If it works, you'll have a new dir fpdb-YYYYMMDD-exe which should # contain 2 dirs; gfx and pyfpdb and run_fpdb.bat -#- Last, you must copy the etc/, lib/ and share/ folders from your -# gtk/bin/ (just /gtk/?) folder to the pyfpdb folder. (the whole folders, -# not just the contents) +#- [ This bit is now automated: +# Last, you must copy the etc/, lib/ and share/ folders from your +# gtk/bin/ (just /gtk/?) folder to the pyfpdb folder. (the whole folders, +# not just the contents) ] #- You can (should) then prune the etc/, lib/ and share/ folders to -# remove components we don't need. +# remove components we don't need. (see output at end of program run) # sqlcoder notes: this worked for me with the following notes: #- I used the following versions: @@ -116,11 +114,11 @@ test_and_remove('build') today = date.today().strftime('%Y%m%d') -print "\n" + r"Output will be created in \pyfpdb\ and \fpdb_XXX_"+today+'\\' -print "Enter value for XXX (any length): ", # the comma means no newline -xxx = sys.stdin.readline().rstrip() -dist_dirname = r'fpdb-' + xxx + '-' + today + '-exe' -dist_dir = r'..\fpdb-' + xxx + '-' + today + '-exe' +print "\n" + r"Output will be created in \pyfpdb\ and \fpdb_"+today+'\\' +#print "Enter value for XXX (any length): ", # the comma means no newline +#xxx = sys.stdin.readline().rstrip() +dist_dirname = r'fpdb-' + today + '-exe' +dist_dir = r'..\fpdb-' + today + '-exe' print test_and_remove(dist_dir) @@ -163,10 +161,11 @@ setup( os.rename('dist', 'pyfpdb') -print '\n' + 'If py2exe was successful add the \\etc \\lib and \\share dirs ' -print 'from your gtk dir to \\%s\\pyfpdb\\\n' % dist_dirname -print 'Also copy libgobject-2.0-0.dll and libgdk-win32-2.0-0.dll from \\bin' -print 'into there' +# these instructions no longer needed: +#print '\n' + 'If py2exe was successful add the \\etc \\lib and \\share dirs ' +#print 'from your gtk dir to \\%s\\pyfpdb\\\n' % dist_dirname +#print 'Also copy libgobject-2.0-0.dll and libgdk-win32-2.0-0.dll from \\bin' +#print 'into there' dest = os.path.join(dist_dirname, 'pyfpdb') #print "try renaming pyfpdb to", dest @@ -207,4 +206,24 @@ dest_dir = os.path.join(dest, 'share') dest_dir = dest_dir.replace('\\', '\\\\') shutil.copytree( src_dir, dest_dir ) +print "\nIf py2exe was successful you should now have a new dir" +print dist_dirname+" in your pyfpdb dir" +print """ +The following dirs can probably removed to make the final package smaller: + +pyfpdb/lib/glib-2.0 +pyfpdb/lib/gtk-2.0/include +pyfpdb/lib/pkgconfig +pyfpdb/share/aclocal +pyfpdb/share/doc +pyfpdb/share/glib-2.0 +pyfpdb/share/gtk-2.0 +pyfpdb/share/gtk-doc +pyfpdb/share/locale +pyfpdb/share/man +pyfpdb/share/themes/Default + +Use 7-zip to zip up the distribution and create a self extracting archive and that's it! +""" + From fbefe1e611cf53570ba8a744ab95112d6131d8c5 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Wed, 9 Jun 2010 22:46:17 +0100 Subject: [PATCH 058/253] try to wrap long lines in config file, attributes are still sorted into alpha order :-( --- pyfpdb/Configuration.py | 30 +++++++++++++++++++++++++++++- pyfpdb/HUD_config.xml.example | 5 +++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index ee957e2d..4b5134af 100755 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -32,6 +32,7 @@ import string import traceback import shutil import locale +import re import xml.dom.minidom from xml.dom.minidom import Node @@ -662,7 +663,34 @@ class Config: pass with open(file, 'w') as f: - self.doc.writexml(f) + #self.doc.writexml(f) + f.write( self.wrap_long_lines( self.doc.toxml() ) ) + + def wrap_long_lines(self, s): + lines = [ self.wrap_long_line(l) for l in s.splitlines() ] + return('\n'.join(lines) + '\n') + + def wrap_long_line(self, l): + if 'config_wrap_len' in self.general: + wrap_len = int(self.general['config_wrap_len']) + else: + wrap_len = -1 # < 0 means no wrap + + if wrap_len >= 0 and len(l) > wrap_len: + m = re.compile('\s+\S+\s+') + mo = m.match(l) + if mo: + indent_len = mo.end() + #print "indent = %s (%s)" % (indent_len, l[0:indent_len]) + indent = '\n' + ' ' * indent_len + m = re.compile('(\S+="[^"]+"\s+)') + parts = [x for x in m.split(l[indent_len:]) if x] + if len(parts) > 1: + #print "parts =", parts + l = l[0:indent_len] + indent.join(parts) + return(l) + else: + return(l) def edit_layout(self, site_name, max, width = None, height = None, fav_seat = None, locations = None): diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index 5a72c4c6..617a34d3 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -2,6 +2,11 @@ + + day_start="5" + /> + - day_start="5" + + diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 0594a805..58a1b230 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -714,7 +714,7 @@ class fpdb: self.warning_box( "There is an error in your config file\n" + self.config.file + "\n\nError is: " + str(self.config.file_error) , diatitle="CONFIG FILE ERROR" ) - exit() + sys.exit() log = Configuration.get_logger("logging.conf", "fpdb", log_dir=self.config.dir_log) print "Logfile is " + os.path.join(self.config.dir_log, self.config.log_file) + "\n" @@ -905,7 +905,11 @@ This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt") self.window.connect("destroy", self.destroy) self.window.set_title("Free Poker DB - v%s or higher" % (VERSION, )) self.window.set_border_width(1) - self.window.set_default_size(900,720) + defx, defy = 900, 720 + sx, sy = gtk.gdk.screen_width(), gtk.gdk.screen_height() + if sx < defx: defx = sx + if sy < defy: defy = sy + self.window.set_default_size(defx, defy) self.window.set_resizable(True) self.main_vbox = gtk.VBox(False, 1) From a5a507ece798847b67dbc6f6515e1311a3f53961 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Wed, 16 Jun 2010 08:16:06 +0300 Subject: [PATCH 065/253] Update debian packaging Changelog bump for new snapshot, and executable script renames that were done for win32 setups. --- packaging/debian/changelog | 9 +++++++++ packaging/debian/links | 2 +- packaging/debian/python-fpdb.postinst | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index ebd45a53..e482e349 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,12 @@ +free-poker-tools (0.20~git20100616) unstable; urgency=low + + * Snapshot release + * Executable names have been changed to accommodate for some win32 + trouble cases; update paths + * Improved statistics + + -- Mika Bostrom Wed, 16 Jun 2010 08:10:00 +0300 + free-poker-tools (0.20~git20100305) unstable; urgency=low * New snapshot diff --git a/packaging/debian/links b/packaging/debian/links index 5a4601a7..148aad4f 100644 --- a/packaging/debian/links +++ b/packaging/debian/links @@ -1 +1 @@ -/usr/share/pyshared/fpdb/fpdb.py /usr/bin/fpdb +/usr/share/pyshared/fpdb/fpdb.pyw /usr/bin/fpdb diff --git a/packaging/debian/python-fpdb.postinst b/packaging/debian/python-fpdb.postinst index 9680be90..99d25018 100644 --- a/packaging/debian/python-fpdb.postinst +++ b/packaging/debian/python-fpdb.postinst @@ -3,4 +3,4 @@ # When installed into .../fpdb/ the script gets mode 644 # Note: "dh_fixperms -Xfpdb.py" did not work, hence this hack chmod 755 /usr/bin/fpdb -chmod 755 /usr/share/pyshared/fpdb/HUD_main.py +chmod 755 /usr/share/pyshared/fpdb/HUD_main.pyw From 5fd4c2c4436e70f21590048b3641e7262937631d Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Wed, 16 Jun 2010 17:13:05 +0200 Subject: [PATCH 066/253] import regression files --- ...NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt | 272 +- .../NLHE-FR-USD-0.01-0.02-201004.4betPF.txt | 92 +- ...LHE-FR-USD-0.01-0.02-201005.microgrind.txt | 9706 ++++++++--------- ...FR-USD-0.01-0.02-201006.foldsoutofturn.txt | 86 +- ...-0.05-0.10-201004.allinWithAmtReturned.txt | 62 +- .../PLO-FR-USD-0.01-0.02-201006.sidepots.txt | 314 +- .../NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt | 3018 ++--- .../Flop/NLHE-USD-STT-1-201004.8betPF.txt | 128 +- .../Flop/NLHE-USD-STT-20-201006.DONturbo.txt | 5732 +++++----- 9 files changed, 9705 insertions(+), 9705 deletions(-) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt index 7ffad80f..a7be25b2 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-2max-USD-0.25-0.50-201005.Hitnrun.txt @@ -1,137 +1,137 @@ -PokerStars Game #14732633821: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET] -Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($20 in chips) -Seat 2: Player1 ($50.50 in chips) -Player0: posts small blind $0.25 -Player1: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [2h Th] -Player0: calls $0.25 -Player1: checks -*** FLOP *** [4c 8c Ac] -Player1: checks -Player0: checks -*** TURN *** [4c 8c Ac] [7s] -Player1: checks -Player0: bets $1 -Player1: folds -Uncalled bet ($1) returned to Player0 -Player0 collected $0.95 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot $1 | Rake $0.05 -Board [4c 8c Ac 7s] -Seat 1: Player0 (button) (small blind) collected ($0.95) -Seat 2: Player1 (big blind) folded on the Turn - - - -PokerStars Game #28140199921: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET] -Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($20.45 in chips) -Seat 2: Player1 ($50 in chips) -Player1: posts small blind $0.25 -Player0: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [7h Kh] -Player1: raises $1 to $1.50 -Player0: folds -Uncalled bet ($1) returned to Player1 -Player1 collected $1 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $1 | Rake $0 -Seat 1: Player0 (big blind) folded before Flop -Seat 2: Player1 (button) (small blind) collected ($1) - - - -PokerStars Game #29402240709: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET] -Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($19.95 in chips) -Seat 2: Player1 ($50.50 in chips) -Player0: posts small blind $0.25 -Player1: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [5c 8c] -Player0: folds -Uncalled bet ($0.25) returned to Player1 -Player1 collected $0.50 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $0.50 | Rake $0 -Seat 1: Player0 (button) (small blind) folded before Flop -Seat 2: Player1 (big blind) collected ($0.50) - - - -PokerStars Game #31842149327: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET] -Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($19.70 in chips) -Seat 2: Player1 ($50.75 in chips) -Player1: posts small blind $0.25 -Player0: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [Ks 9c] -Player1: raises $1 to $1.50 -Player0: calls $1 -*** FLOP *** [3d As 4s] -Player0: checks -Player1: bets $2 -Player0: calls $2 -*** TURN *** [3d As 4s] [Jd] -Player0: checks -Player1: checks -*** RIVER *** [3d As 4s Jd] [3h] -Player0: checks -Player1: checks -*** SHOW DOWN *** -Player0: shows [Ks 9c] (a pair of Threes) -Player1: mucks hand -Player0 collected $6.70 from pot -*** SUMMARY *** -Total pot $7 | Rake $0.30 -Board [3d As 4s Jd 3h] -Seat 1: Player0 (big blind) showed [Ks 9c] and won ($6.70) with a pair of Threes -Seat 2: Player1 (button) (small blind) mucked [6c 5s] - - - -PokerStars Game #10697227103: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET] -Table '99999999 II' 2-max Seat #1 is the button -Seat 1: Player0 ($22.90 in chips) -Seat 2: Player1 ($50 in chips) -Player0: posts small blind $0.25 -Player1: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [Ts 3d] -Player0: folds -Uncalled bet ($0.25) returned to Player1 -Player1 collected $0.50 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $0.50 | Rake $0 -Seat 1: Player0 (button) (small blind) folded before Flop -Seat 2: Player1 (big blind) collected ($0.50) - - - -PokerStars Game #27159326072: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] -Table '99999999 II' 2-max Seat #2 is the button -Seat 1: Player0 ($22.65 in chips) -Seat 2: Player1 ($50.25 in chips) -Player1: posts small blind $0.25 -Player0: posts big blind $0.50 -*** HOLE CARDS *** -Dealt to Player0 [4h Ks] -Player1: raises $1 to $1.50 -Player0: folds -Uncalled bet ($1) returned to Player1 -Player1 collected $1 from pot -Player1: doesn't show hand -*** SUMMARY *** -Total pot $1 | Rake $0 -Seat 1: Player0 (big blind) folded before Flop -Seat 2: Player1 (button) (small blind) collected ($1) - +PokerStars Game #14732633821: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:16 WET [2010/05/23 17:39:16 ET] +Table '99999999 II' 2-max Seat #1 is the button +Seat 1: Player0 ($20 in chips) +Seat 2: Player1 ($50.50 in chips) +Player0: posts small blind $0.25 +Player1: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [2h Th] +Player0: calls $0.25 +Player1: checks +*** FLOP *** [4c 8c Ac] +Player1: checks +Player0: checks +*** TURN *** [4c 8c Ac] [7s] +Player1: checks +Player0: bets $1 +Player1: folds +Uncalled bet ($1) returned to Player0 +Player0 collected $0.95 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0.05 +Board [4c 8c Ac 7s] +Seat 1: Player0 (button) (small blind) collected ($0.95) +Seat 2: Player1 (big blind) folded on the Turn + + + +PokerStars Game #28140199921: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:39:59 WET [2010/05/23 17:39:59 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($20.45 in chips) +Seat 2: Player1 ($50 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [7h Kh] +Player1: raises $1 to $1.50 +Player0: folds +Uncalled bet ($1) returned to Player1 +Player1 collected $1 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0 +Seat 1: Player0 (big blind) folded before Flop +Seat 2: Player1 (button) (small blind) collected ($1) + + + +PokerStars Game #29402240709: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:22 WET [2010/05/23 17:40:22 ET] +Table '99999999 II' 2-max Seat #1 is the button +Seat 1: Player0 ($19.95 in chips) +Seat 2: Player1 ($50.50 in chips) +Player0: posts small blind $0.25 +Player1: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [5c 8c] +Player0: folds +Uncalled bet ($0.25) returned to Player1 +Player1 collected $0.50 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $0.50 | Rake $0 +Seat 1: Player0 (button) (small blind) folded before Flop +Seat 2: Player1 (big blind) collected ($0.50) + + + +PokerStars Game #31842149327: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:40:29 WET [2010/05/23 17:40:29 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($19.70 in chips) +Seat 2: Player1 ($50.75 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [Ks 9c] +Player1: raises $1 to $1.50 +Player0: calls $1 +*** FLOP *** [3d As 4s] +Player0: checks +Player1: bets $2 +Player0: calls $2 +*** TURN *** [3d As 4s] [Jd] +Player0: checks +Player1: checks +*** RIVER *** [3d As 4s Jd] [3h] +Player0: checks +Player1: checks +*** SHOW DOWN *** +Player0: shows [Ks 9c] (a pair of Threes) +Player1: mucks hand +Player0 collected $6.70 from pot +*** SUMMARY *** +Total pot $7 | Rake $0.30 +Board [3d As 4s Jd 3h] +Seat 1: Player0 (big blind) showed [Ks 9c] and won ($6.70) with a pair of Threes +Seat 2: Player1 (button) (small blind) mucked [6c 5s] + + + +PokerStars Game #10697227103: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:10 WET [2010/05/23 17:41:10 ET] +Table '99999999 II' 2-max Seat #1 is the button +Seat 1: Player0 ($22.90 in chips) +Seat 2: Player1 ($50 in chips) +Player0: posts small blind $0.25 +Player1: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [Ts 3d] +Player0: folds +Uncalled bet ($0.25) returned to Player1 +Player1 collected $0.50 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $0.50 | Rake $0 +Seat 1: Player0 (button) (small blind) folded before Flop +Seat 2: Player1 (big blind) collected ($0.50) + + + +PokerStars Game #27159326072: Hold'em No Limit ($0.25/$0.50 USD) - 2010/05/23 22:41:17 WET [2010/05/23 17:41:17 ET] +Table '99999999 II' 2-max Seat #2 is the button +Seat 1: Player0 ($22.65 in chips) +Seat 2: Player1 ($50.25 in chips) +Player1: posts small blind $0.25 +Player0: posts big blind $0.50 +*** HOLE CARDS *** +Dealt to Player0 [4h Ks] +Player1: raises $1 to $1.50 +Player0: folds +Uncalled bet ($1) returned to Player1 +Player1 collected $1 from pot +Player1: doesn't show hand +*** SUMMARY *** +Total pot $1 | Rake $0 +Seat 1: Player0 (big blind) folded before Flop +Seat 2: Player1 (button) (small blind) collected ($1) + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt index 9114b678..df2f01aa 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201004.4betPF.txt @@ -1,49 +1,49 @@ -PokerStars Game #42738187409: Hold'em No Limit ($0.01/$0.02 USD) - 2010/04/16 11:14:06 WET [2010/04/16 6:14:06 ET] -Table 'Circinus V' 9-max Seat #4 is the button -Seat 1: Player2 ($4.26 in chips) -Seat 2: Player1 ($0.35 in chips) -Seat 3: Player7 ($8.34 in chips) -Seat 4: Player5 ($3.70 in chips) -Seat 5: Player6 ($4.98 in chips) -Seat 7: Player3 ($2.55 in chips) -Seat 8: Player0 ($4.91 in chips) -Seat 9: Player4 ($1.31 in chips) -Player6: posts small blind $0.01 -Alehta: is sitting out -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [3d Ks] -Alehta leaves the table -Player0: calls $0.02 -Player4: raises $0.06 to $0.08 -Player2: raises $0.16 to $0.24 -AFMAT joins the table at seat #6 -Player1: folds -Player7: folds -Player5: folds -Player6: folds -Player3: folds -Player0: calls $0.22 -Player4: raises $1.07 to $1.31 and is all-in -Player2: calls $1.07 -Player0: folds -*** FLOP *** [7c Ac 6s] -*** TURN *** [7c Ac 6s] [5d] -*** RIVER *** [7c Ac 6s 5d] [Qh] -*** SHOW DOWN *** -Player4: shows [As Qs] (two pair, Aces and Queens) -Player2: shows [Jc Jd] (a pair of Jacks) -Player4 collected $2.79 from pot -*** SUMMARY *** -Total pot $2.89 | Rake $0.10 -Board [7c Ac 6s 5d Qh] -Seat 1: Player2 showed [Jc Jd] and lost with a pair of Jacks -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player7 folded before Flop (didn't bet) -Seat 4: Player5 (button) folded before Flop (didn't bet) -Seat 5: Player6 (small blind) folded before Flop -Seat 7: Player3 (big blind) folded before Flop -Seat 8: Player0 folded before Flop +PokerStars Game #42738187409: Hold'em No Limit ($0.01/$0.02 USD) - 2010/04/16 11:14:06 WET [2010/04/16 6:14:06 ET] +Table 'Circinus V' 9-max Seat #4 is the button +Seat 1: Player2 ($4.26 in chips) +Seat 2: Player1 ($0.35 in chips) +Seat 3: Player7 ($8.34 in chips) +Seat 4: Player5 ($3.70 in chips) +Seat 5: Player6 ($4.98 in chips) +Seat 7: Player3 ($2.55 in chips) +Seat 8: Player0 ($4.91 in chips) +Seat 9: Player4 ($1.31 in chips) +Player6: posts small blind $0.01 +Alehta: is sitting out +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [3d Ks] +Alehta leaves the table +Player0: calls $0.02 +Player4: raises $0.06 to $0.08 +Player2: raises $0.16 to $0.24 +AFMAT joins the table at seat #6 +Player1: folds +Player7: folds +Player5: folds +Player6: folds +Player3: folds +Player0: calls $0.22 +Player4: raises $1.07 to $1.31 and is all-in +Player2: calls $1.07 +Player0: folds +*** FLOP *** [7c Ac 6s] +*** TURN *** [7c Ac 6s] [5d] +*** RIVER *** [7c Ac 6s 5d] [Qh] +*** SHOW DOWN *** +Player4: shows [As Qs] (two pair, Aces and Queens) +Player2: shows [Jc Jd] (a pair of Jacks) +Player4 collected $2.79 from pot +*** SUMMARY *** +Total pot $2.89 | Rake $0.10 +Board [7c Ac 6s 5d Qh] +Seat 1: Player2 showed [Jc Jd] and lost with a pair of Jacks +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player7 folded before Flop (didn't bet) +Seat 4: Player5 (button) folded before Flop (didn't bet) +Seat 5: Player6 (small blind) folded before Flop +Seat 7: Player3 (big blind) folded before Flop +Seat 8: Player0 folded before Flop Seat 9: Player4 showed [As Qs] and won ($2.79) with two pair, Aces and Queens diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt index 8b1fbab3..1843bbf5 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201005.microgrind.txt @@ -1,4854 +1,4854 @@ -PokerStars Game #31900318973: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 2: Player14 ($0.97 in chips) -Seat 3: Player23 ($1.53 in chips) -Seat 4: Player17 ($1.60 in chips) -Seat 5: Player5 ($2.91 in chips) -Seat 6: Player22 ($2.45 in chips) -Seat 7: Player19 ($2.56 in chips) -Seat 8: Player3 ($3.01 in chips) -Seat 9: Player21 ($0.58 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2d Kc] -Player3: folds -Player21: folds -Player14: calls $0.02 -Player23: calls $0.02 -Player17: checks -Player5: folds -Player22: calls $0.01 -Player19: checks -*** FLOP *** [Qh 8d 7s] -Player22: bets $0.06 -Player19: folds -Player14: calls $0.06 -Player23: folds -Player17: folds -*** TURN *** [Qh 8d 7s] [3s] -Player22: bets $0.30 -Player14: folds -Uncalled bet ($0.30) returned to Player22 -Player22 collected $0.22 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.22 | Rake $0 -Board [Qh 8d 7s 3s] -Seat 2: Player14 folded on the Turn -Seat 3: Player23 folded on the Flop -Seat 4: Player17 folded on the Flop -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) collected ($0.22) -Seat 7: Player19 (big blind) folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.91 in chips) -Seat 6: Player22 ($2.59 in chips) -Seat 7: Player19 ($2.54 in chips) -Seat 8: Player3 ($3.01 in chips) -Seat 9: Player21 ($0.58 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3h Td] -Player21: folds -Player14: folds -Player23: folds -Player17: folds -Player5: raises $0.10 to $0.12 -Player22: calls $0.12 -Player11 joins the table at seat #1 -Player19: folds -Player3: folds -*** FLOP *** [Js Qh 9s] -Player5: checks -Player22: bets $0.25 -Player5: folds -Uncalled bet ($0.25) returned to Player22 -Player22 collected $0.27 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.27 | Rake $0 -Board [Js Qh 9s] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded on the Flop -Seat 6: Player22 (button) collected ($0.27) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.53 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player3: posts small blind $0.01 -Player21: posts big blind $0.02 -Player11: sits out -*** HOLE CARDS *** -Dealt to Player17 [Qc 5d] -Player14: folds -Player23: folds -Player17: raises $0.04 to $0.06 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player21 (big blind) folded before Flop - - - -PokerStars Game #20107261170: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player11 ($1.60 in chips) -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.61 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.53 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.56 in chips) -Player21: posts small blind $0.01 -Player11: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d Qc] -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: calls $0.01 -Player11: checks -*** FLOP *** [7s 3s Kd] -Player21: bets $0.02 -Player11: folds -Uncalled bet ($0.02) returned to Player21 -Player21 collected $0.04 from pot -Player21: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Board [7s 3s Kd] -Seat 1: Player11 (big blind) folded on the Flop -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player21 (small blind) collected ($0.04) - - - -PokerStars Game #30246290211: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player11 ($1.58 in chips) -Seat 2: Player14 ($0.89 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.61 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.53 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player11: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d 7d] -Player23: folds -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: calls $0.02 -Player3: folds -Player21: folds -Player11: calls $0.01 -Player14: checks -*** FLOP *** [5s 9c 4c] -Player11: bets $0.08 -Player14: calls $0.08 -Player17: calls $0.08 -Player19: folds -*** TURN *** [5s 9c 4c] [Td] -Player11: bets $0.04 -Player14: calls $0.04 -Player17: calls $0.04 -*** RIVER *** [5s 9c 4c Td] [Kh] -Player11: checks -Player14: bets $0.10 -Player17: folds -Player11: folds -Uncalled bet ($0.10) returned to Player14 -Player14 collected $0.44 from pot -*** SUMMARY *** -Total pot $0.44 | Rake $0 -Board [5s 9c 4c Td Kh] -Seat 1: Player11 (small blind) folded on the River -Seat 2: Player14 (big blind) collected ($0.44) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 (button) folded before Flop (didn't bet) - - - -PokerStars Game #31761373829: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player11 ($1.44 in chips) -Seat 2: Player14 ($1.19 in chips) -Seat 3: Player23 ($1.51 in chips) -Seat 4: Player17 ($1.47 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player14: posts small blind $0.01 -Player23: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3s 5d] -Player17: folds -Player5: folds -Player22: raises $0.02 to $0.04 -Player19: folds -Player3: folds -Player21: folds -Player11: raises $0.14 to $0.18 -Player14: folds -Player23: calls $0.16 -Player22: calls $0.14 -*** FLOP *** [4h 6d 4s] -Player23: checks -Player22: checks -Player11: bets $0.55 -Player23: folds -Player22: folds -Uncalled bet ($0.55) returned to Player11 -Player11 collected $0.55 from pot -*** SUMMARY *** -Total pot $0.55 | Rake $0 -Board [4h 6d 4s] -Seat 1: Player11 (button) collected ($0.55) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player23 (big blind) folded on the Flop -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #30758254721: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.18 in chips) -Seat 3: Player23 ($2.13 in chips) -Seat 4: Player17 ($1.47 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player23: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c 5d] -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Player11: folds -Player14: calls $0.02 -Player23: calls $0.01 -Player17: checks -*** FLOP *** [8s 4s Ah] -Player23: checks -Player17: checks -Player14: bets $0.06 -Player23: folds -Player17: calls $0.06 -*** TURN *** [8s 4s Ah] [Qs] -Player17: bets $0.10 -Player14: calls $0.10 -*** RIVER *** [8s 4s Ah Qs] [9h] -Player17: checks -Player14: checks -*** SHOW DOWN *** -Player17: shows [2c 5d] (high card Ace) -Player14: shows [Ac Jc] (a pair of Aces) -Player14 collected $0.38 from pot -*** SUMMARY *** -Total pot $0.38 | Rake $0 -Board [8s 4s Ah Qs 9h] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 (button) showed [Ac Jc] and won ($0.38) with a pair of Aces -Seat 3: Player23 (small blind) folded on the Flop -Seat 4: Player17 (big blind) showed [2c 5d] and lost with high card Ace -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #88562623320: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.11 in chips) -Seat 4: Player17 ($1.29 in chips) -Seat 5: Player5 ($2.79 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4h Qh] -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Player11: folds -Player14: folds -Player23: raises $0.04 to $0.06 -Player17: calls $0.05 -Player5: calls $0.04 -*** FLOP *** [7s 3s Ah] -Player17: bets $0.20 -Player5: folds -Player23: raises $1.85 to $2.05 and is all-in -Player17: folds -Uncalled bet ($1.85) returned to Player23 -Player23 collected $0.58 from pot -Player23: doesn't show hand -*** SUMMARY *** -Total pot $0.58 | Rake $0 -Board [7s 3s Ah] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 (button) collected ($0.58) -Seat 4: Player17 (small blind) folded on the Flop -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #16687242396: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.43 in chips) -Seat 4: Player17 ($1.03 in chips) -Seat 5: Player5 ($2.73 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Tc 4s] -Player19: folds -Player3: folds -Player21: folds -Player11: folds -Player14: folds -Player23: raises $0.04 to $0.06 -Player17: folds -Player5: folds -Player22: calls $0.04 -*** FLOP *** [2h 7d 3s] -Player22: checks -Player23: checks -*** TURN *** [2h 7d 3s] [Ks] -Player22: bets $0.04 -Player23: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.13 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.13 | Rake $0 -Board [2h 7d 3s Ks] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded on the Turn -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player22 (big blind) collected ($0.13) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #20006229758: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.83 in chips) -Seat 5: Player5 ($2.72 in chips) -Seat 6: Player22 ($2.63 in chips) -Seat 7: Player19 ($2.51 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 3s] -Player3: folds -Player21: folds -Player11: folds -Player14 has timed out -Player14: folds -Player23: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player22: folds -Player19: calls $0.06 -*** FLOP *** [6d Jd 7c] -Player19: bets $0.04 -Player17: calls $0.04 -*** TURN *** [6d Jd 7c] [Js] -Player19: checks -Player17: bets $0.26 -Player19: folds -Uncalled bet ($0.26) returned to Player17 -Player17 collected $0.25 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.25 | Rake $0 -Board [6d Jd 7c Js] -Seat 1: Player11 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.25) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 folded before Flop (didn't bet) - - - -PokerStars Game #27303244902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player11 ($1.81 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.96 in chips) -Seat 5: Player5 ($2.72 in chips) -Seat 6: Player22 ($2.62 in chips) -Seat 7: Player19 ($2.39 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($0.58 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c 8c] -Player21: raises $0.06 to $0.08 -Player11: raises $0.10 to $0.18 -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: raises $0.40 to $0.58 and is all-in -Player11: calls $0.40 -*** FLOP *** [Qs Jh 6h] -*** TURN *** [Qs Jh 6h] [Jc] -*** RIVER *** [Qs Jh 6h Jc] [4h] -*** SHOW DOWN *** -Player21: shows [Ah Qh] (a flush, Ace high) -Player11: shows [Ac Qd] (two pair, Queens and Jacks) -Player21 collected $1.14 from pot -*** SUMMARY *** -Total pot $1.19 | Rake $0.05 -Board [Qs Jh 6h Jc 4h] -Seat 1: Player11 showed [Ac Qd] and lost with two pair, Queens and Jacks -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high - - - -PokerStars Game #13363166481: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player11 ($1.23 in chips) -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.96 in chips) -Seat 5: Player5 ($2.72 in chips) -Seat 6: Player22 ($2.62 in chips) -Seat 7: Player19 ($2.38 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($1.14 in chips) -Player3: posts small blind $0.01 -Player21: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9c 4h] -Player11: raises $0.04 to $0.06 -Player14: folds -Player23: folds -Player17: calls $0.06 -Player5: calls $0.06 -Player22: calls $0.06 -Player19: raises $0.18 to $0.24 -Player3: folds -Player21: folds -Player11: calls $0.18 -Player17: calls $0.18 -Player5: folds -Player22: folds -*** FLOP *** [Th 7c 5s] -Player11: bets $0.23 -Player17: folds -Player19: raises $1.91 to $2.14 and is all-in -Player11: calls $0.76 and is all-in -Uncalled bet ($1.15) returned to Player19 -*** TURN *** [Th 7c 5s] [Td] -*** RIVER *** [Th 7c 5s Td] [4s] -*** SHOW DOWN *** -Player11: shows [Kh Qh] (a pair of Tens) -Player19: shows [As Ac] (two pair, Aces and Tens) -Player19 collected $2.75 from pot -*** SUMMARY *** -Total pot $2.85 | Rake $0.10 -Board [Th 7c 5s Td 4s] -Seat 1: Player11 showed [Kh Qh] and lost with a pair of Tens -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 5: Player5 folded before Flop -Seat 6: Player22 folded before Flop -Seat 7: Player19 (button) showed [As Ac] and won ($2.75) with two pair, Aces and Tens -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player21 (big blind) folded before Flop - - - -PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 2: Player14 ($1.38 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.72 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($1.12 in chips) -Player21: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3d 4d] -Player23: folds -Player17: calls $0.02 -Player11 leaves the table -Player5: folds -Player22: folds -Player19: folds -Player3: calls $0.02 -Player21: folds -Player14: checks -*** FLOP *** [8s Ad 8h] -Player14: checks -Player17: checks -Player3: checks -*** TURN *** [8s Ad 8h] [8c] -Player14: bets $0.06 -Player17: folds -Player3: folds -Uncalled bet ($0.06) returned to Player14 -Player14 collected $0.07 from pot -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [8s Ad 8h 8c] -Seat 2: Player14 (big blind) collected ($0.07) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded on the Turn -Seat 9: Player21 (small blind) folded before Flop - - - -PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 2: Player14 ($1.43 in chips) -Seat 3: Player23 ($2.37 in chips) -Seat 4: Player17 ($1.70 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player21 ($1.11 in chips) -Player14: posts small blind $0.01 -Player23: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad Kd] -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player21: folds -Player14: calls $0.01 -Player23: checks -*** FLOP *** [5c 9s Kh] -Player14: checks -Player23: checks -Player17: checks -*** TURN *** [5c 9s Kh] [7s] -Player14: bets $0.04 -Player23: calls $0.04 -Player21 leaves the table -Player17: calls $0.04 -*** RIVER *** [5c 9s Kh 7s] [3s] -Player14: bets $0.04 -Player23: raises $0.04 to $0.08 -Player17: folds -Player18 joins the table at seat #1 -Player14: calls $0.04 -*** SHOW DOWN *** -Player23: shows [Qs Ts] (a flush, Queen high) -Player14: mucks hand -Player23 collected $0.34 from pot -*** SUMMARY *** -Total pot $0.34 | Rake $0 -Board [5c 9s Kh 7s 3s] -Seat 2: Player14 (small blind) mucked [Kc Td] -Seat 3: Player23 (big blind) showed [Qs Ts] and won ($0.34) with a flush, Queen high -Seat 4: Player17 folded on the River -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player21 (button) folded before Flop (didn't bet) - - - -PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 2: Player14 ($1.29 in chips) -Seat 3: Player23 ($2.57 in chips) -Seat 4: Player17 ($1.64 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Player23: posts small blind $0.01 -Player17: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [4c Js] -Player5: folds -Player22: calls $0.02 -Player19: folds -Player3: folds -Player14: calls $0.02 -Player23: calls $0.01 -Player17: raises $0.12 to $0.14 -Player22: folds -Player14: folds -Player23: folds -Uncalled bet ($0.12) returned to Player17 -Player17 collected $0.08 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Seat 2: Player14 (button) folded before Flop -Seat 3: Player23 (small blind) folded before Flop -Seat 4: Player17 (big blind) collected ($0.08) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) - - - -PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.70 in chips) -Seat 5: Player5 ($2.66 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [Ts Qc] -Player9 joins the table at seat #9 -Player22: folds -Player19: folds -Player3: folds -Player14: folds -Player23: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.04 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) collected ($0.04) -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) - - - -PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.72 in chips) -Seat 5: Player5 ($2.64 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($1.85 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -Player9: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [6d Ac] -Player19: folds -Player3: folds -Player9: checks -Player14: folds -Player23: folds -Player17: calls $0.02 -Player5: folds -Player22: checks -*** FLOP *** [7s 2d 3h] -Player22: checks -Player9: checks -Player17: bets $0.04 -Player22: calls $0.04 -Player9: folds -*** TURN *** [7s 2d 3h] [5d] -Player22: checks -Player17: checks -*** RIVER *** [7s 2d 3h 5d] [7c] -Player22: bets $0.02 -Player17: raises $0.06 to $0.08 -Player22: raises $0.06 to $0.14 -Player17: folds -Uncalled bet ($0.06) returned to Player22 -Player22 collected $0.31 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.31 | Rake $0 -Board [7s 2d 3h 5d 7c] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the River -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player22 (big blind) collected ($0.31) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.71 in chips) -Seat 7: Player19 ($3.90 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($1.83 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [9s Kd] -Player3: folds -Player9: calls $0.02 -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: calls $0.01 -Player19: checks -*** FLOP *** [9c Qh Tc] -Player22: bets $0.06 -Player19: folds -Player9: calls $0.06 -*** TURN *** [9c Qh Tc] [5h] -Player22: bets $0.12 -Player9: calls $0.12 -*** RIVER *** [9c Qh Tc 5h] [2c] -Player22: bets $0.12 -Player9: raises $0.12 to $0.24 -Player22: calls $0.12 -*** SHOW DOWN *** -Player9: shows [Ac Qc] (a flush, Ace high) -Player22: mucks hand -Player9 collected $0.90 from pot -*** SUMMARY *** -Total pot $0.90 | Rake $0 -Board [9c Qh Tc 5h 2c] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) mucked [Js 8c] -Seat 7: Player19 (big blind) folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high - - - -PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.58 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.27 in chips) -Seat 7: Player19 ($3.88 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.29 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [Ts 9h] -Player9: calls $0.02 -Player14: folds -Player23: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player22: calls $0.08 -Player19: folds -Player3: folds -Player9: calls $0.06 -*** FLOP *** [Ad 8s Js] -Player9: checks -Player17: checks -Player22: bets $0.08 -Player9: folds -Player17: calls $0.08 -*** TURN *** [Ad 8s Js] [3s] -Player17: checks -Player22: bets $0.08 -Player17: calls $0.08 -*** RIVER *** [Ad 8s Js 3s] [Jh] -Player17: checks -Player22: bets $0.25 -Player17: folds -Uncalled bet ($0.25) returned to Player22 -Player22 collected $0.59 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.59 | Rake $0 -Board [Ad 8s Js 3s Jh] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 (button) collected ($0.59) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.34 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.62 in chips) -Seat 7: Player19 ($3.87 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.21 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -Player18: sits out -*** HOLE CARDS *** -Dealt to Player17 [3c Tc] -Player14: folds -Player23: folds -Player17: folds -Player5: folds -Player22: raises $0.04 to $0.06 -Player19: folds -Player3: folds -Player9: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.05 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 collected ($0.05) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #31790741684: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.80 in chips) -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($1.34 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.65 in chips) -Seat 7: Player19 ($3.87 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.19 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6c Qs] -Player14: folds -Player23: folds -Player17: raises $0.04 to $0.06 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Player18: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 (big blind) folded before Flop -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded before Flop - - - -PokerStars Game #23618143313: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.78 in chips) -Seat 2: Player14 ($1.27 in chips) -Seat 3: Player23 ($2.55 in chips) -Seat 4: Player17 ($2.17 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.65 in chips) -Seat 7: Player19 ($3.87 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.18 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6c Ac] -Player23: folds -Player17: calls $0.02 -Player5: folds -Player22: calls $0.02 -Player19: calls $0.02 -Player3: folds -Player9: calls $0.02 -Player18: calls $0.01 -Player14: checks -*** FLOP *** [3s 7s Qh] -Player18: checks -Player14: checks -Player17: checks -Player22: checks -Player19: checks -Player9: checks -*** TURN *** [3s 7s Qh] [Ah] -Player23 leaves the table -Player18: checks -Player14: checks -Player17: checks -Player22: checks -Player19: checks -Player9: bets $0.02 -Player18: calls $0.02 -Player24 joins the table at seat #3 -Player14: calls $0.02 -Player17: folds -Player22: folds -Player19: folds -*** RIVER *** [3s 7s Qh Ah] [5d] -Player18: checks -Player14: checks -Player9: bets $0.02 -Player18: folds -Player14: folds -Uncalled bet ($0.02) returned to Player9 -Player9 collected $0.18 from pot -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [3s 7s Qh Ah 5d] -Seat 1: Player18 (small blind) folded on the River -Seat 2: Player14 (big blind) folded on the River -Seat 3: Player23 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Turn -Seat 7: Player19 folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) collected ($0.18) - - - -PokerStars Game #20255202813: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.23 in chips) -Seat 3: Player24 ($2 in chips) -Seat 4: Player17 ($2.15 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.63 in chips) -Seat 7: Player19 ($3.85 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c Qc] -Player17: calls $0.02 -Player5: folds -Player22: calls $0.02 -Player19: calls $0.02 -Player3: calls $0.02 -Player9: folds -Player18: folds -Player14: calls $0.01 -Player24: checks -*** FLOP *** [5d 2s 3c] -Player14: checks -Player24: checks -Player17: bets $0.08 -Player22: folds -Player19: folds -Player3: folds -Player14: calls $0.08 -Player24: folds -*** TURN *** [5d 2s 3c] [9d] -Player14: checks -Player17: bets $0.20 -Player14: calls $0.20 -*** RIVER *** [5d 2s 3c 9d] [Jc] -Player14: checks -Player17: checks -*** SHOW DOWN *** -Player14: shows [4c 4s] (a pair of Fours) -Player17: mucks hand -Player14 collected $0.68 from pot -*** SUMMARY *** -Total pot $0.68 | Rake $0 -Board [5d 2s 3c 9d Jc] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) showed [4c 4s] and won ($0.68) with a pair of Fours -Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 mucked [2c Qc] -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded on the Flop -Seat 8: Player3 folded on the Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #14690416916: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.98 in chips) -Seat 4: Player17 ($1.85 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($3.83 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Tc Td] -Player5: folds -Player22: folds -Player19: raises $0.06 to $0.08 -Player3: folds -Player9: folds -Player18: folds -Player14: folds -Player24: calls $0.07 -Player17: raises $0.40 to $0.48 -Player19: raises $3.35 to $3.83 and is all-in -Player24: folds -Player17: calls $1.37 and is all-in -Uncalled bet ($1.98) returned to Player19 -*** FLOP *** [3s 5c 7c] -*** TURN *** [3s 5c 7c] [Th] -*** RIVER *** [3s 5c 7c Th] [Jh] -*** SHOW DOWN *** -Player17: shows [Tc Td] (three of a kind, Tens) -Player19: shows [Ac As] (a pair of Aces) -Player17 collected $3.63 from pot -*** SUMMARY *** -Total pot $3.78 | Rake $0.15 -Board [3s 5c 7c Th Jh] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 (button) folded before Flop (didn't bet) -Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 showed [Ac As] and lost with a pair of Aces -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #13559160472: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.63 in chips) -Seat 5: Player5 ($2.63 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.98 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 2s] -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.01 -Player5: checks -*** FLOP *** [6d 7h 3s] -Player17: bets $0.06 -Player5: folds -Player9: calls $0.06 -*** TURN *** [6d 7h 3s] [Kc] -Player17: checks -Player9: bets $0.04 -Player17: calls $0.04 -*** RIVER *** [6d 7h 3s Kc] [5d] -Player17: checks -Player9: bets $0.04 -Player17: raises $0.22 to $0.26 -Player9: calls $0.22 -*** SHOW DOWN *** -Player17: shows [Ad 2s] (high card Ace) -Player9: shows [Jc Js] (a pair of Jacks) -Player9 collected $0.78 from pot -*** SUMMARY *** -Total pot $0.78 | Rake $0 -Board [6d 7h 3s Kc 5d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [Ad 2s] and lost with high card Ace -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks - - - -PokerStars Game #16011540019: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.25 in chips) -Seat 5: Player5 ($2.61 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.98 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.72 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 3s] -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.02 -Player5: raises $0.10 to $0.12 -Player22: folds -Player9: calls $0.10 -Player17: calls $0.10 -*** FLOP *** [6h 2c Jd] -Player5: bets $0.29 -Player9: folds -Player17: folds -Uncalled bet ($0.29) returned to Player5 -Player5 collected $0.38 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot $0.38 | Rake $0 -Board [6h 2c Jd] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the Flop -Seat 5: Player5 (small blind) collected ($0.38) -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #16588282642: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.13 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.59 in chips) -Seat 7: Player19 ($1.98 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.60 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kd Th] -Player3: folds -Player9 said, "tu pua madre farolero" -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player22: folds -Player19: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded before Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #22736406243: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.16 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.58 in chips) -Seat 7: Player19 ($1.96 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.60 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ks 4h] -Player9 has timed out -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player5: folds -Player22: raises $0.02 to $0.04 -Player19: folds -Player3: folds -Uncalled bet ($0.02) returned to Player22 -Player22 collected $0.05 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 (button) collected ($0.05) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #19953154592: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.16 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.60 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Jd Th] -Player18: folds -Player14: folds -Player24: calls $0.02 -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: checks -*** FLOP *** [4d 7d Kh] -Player9: checks -Player24: checks -Player17: checks -*** TURN *** [4d 7d Kh] [3c] -Player9: checks -Player24: checks -Player17: bets $0.06 -Player9: folds -Player24: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.07 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [4d 7d Kh 3c] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Turn -Seat 4: Player17 collected ($0.07) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded on the Turn - - - -PokerStars Game #74551611118: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.74 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.21 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.58 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9s 3d] -Player14: folds -Player24: folds -Player17: folds -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.01 -Player18: checks -*** FLOP *** [3c Ac Kc] -Player9: bets $0.02 -Player18: calls $0.02 -*** TURN *** [3c Ac Kc] [Qc] -Player9: bets $0.04 -Player18: folds -Uncalled bet ($0.04) returned to Player9 -Player9 collected $0.08 from pot -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [3c Ac Kc Qc] -Seat 1: Player18 (big blind) folded on the Turn -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) collected ($0.08) - - - -PokerStars Game #64594322241: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.70 in chips) -Seat 2: Player14 ($1.61 in chips) -Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.21 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.61 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.62 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6h 5c] -Player24: folds -Player17: calls $0.02 -Player5: folds -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: checks -*** FLOP *** [4c 7c 6s] -Player14: checks -Player17: bets $0.08 -Player22: folds -Player9: calls $0.08 -Player14: folds -*** TURN *** [4c 7c 6s] [Th] -Player17: bets $0.32 -Player9: folds -Uncalled bet ($0.32) returned to Player17 -Player17 collected $0.25 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.25 | Rake $0 -Board [4c 7c 6s Th] -Seat 1: Player18 (small blind) folded before Flop -Seat 2: Player14 (big blind) folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.25) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) folded on the Turn - - - -PokerStars Game #20220303142: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.59 in chips) -Seat 3: Player24 ($1.88 in chips) -Seat 4: Player17 ($3.36 in chips) -Seat 5: Player5 ($2.87 in chips) -Seat 6: Player22 ($2.59 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.52 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [7c Tc] -Player17: calls $0.02 -Player5: raises $0.10 to $0.12 -Player22: calls $0.12 -Player19: folds -Player3: folds -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.10 -*** FLOP *** [Jh 6c 5d] -Player17: checks -Player5: bets $0.29 -Player22: folds -Player17: calls $0.29 -*** TURN *** [Jh 6c 5d] [9d] -Player17: bets $0.32 -Player5: folds -Uncalled bet ($0.32) returned to Player17 -Player17 collected $0.97 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.97 | Rake $0 -Board [Jh 6c 5d 9d] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 collected ($0.97) -Seat 5: Player5 folded on the Turn -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #15797308302: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.86 in chips) -Seat 4: Player17 ($3.92 in chips) -Seat 5: Player5 ($2.46 in chips) -Seat 6: Player22 ($2.47 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.52 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9c 3s] -Player5: folds -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: calls $0.01 -Player17: checks -*** FLOP *** [2s Jd Qd] -Player24: checks -Player17: folds -Player9: checks -*** TURN *** [2s Jd Qd] [7h] -Player24: bets $0.06 -Player9: folds -Uncalled bet ($0.06) returned to Player24 -Player24 collected $0.06 from pot -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [2s Jd Qd 7h] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 (button) folded before Flop (didn't bet) -Seat 3: Player24 (small blind) collected ($0.06) -Seat 4: Player17 (big blind) folded on the Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #22202259791: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.90 in chips) -Seat 5: Player5 ($2.46 in chips) -Seat 6: Player22 ($2.47 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.50 in chips) -Player17: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [As 3c] -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player5: checks -*** FLOP *** [6s Js 9d] -Player5: checks -Player22: bets $0.04 -Player9: folds -Player5: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.07 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [6s Js 9d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player22 collected ($0.07) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #23635931413: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.89 in chips) -Seat 5: Player5 ($2.44 in chips) -Seat 6: Player22 ($2.52 in chips) -Seat 7: Player19 ($1.95 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.48 in chips) -Player5: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d 6h] -Player19: raises $0.04 to $0.06 -Player3: folds -Player9: folds -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.06 -Player5: folds -Player22: folds -*** FLOP *** [5c 4h 3h] -Player19: bets $0.08 -Player17: calls $0.08 -*** TURN *** [5c 4h 3h] [5s] -Player19: bets $0.10 -Player17: calls $0.10 -*** RIVER *** [5c 4h 3h 5s] [9s] -Player19: bets $0.14 -Player17: folds -Uncalled bet ($0.14) returned to Player19 -Player19 collected $0.51 from pot -Player19: doesn't show hand -*** SUMMARY *** -Total pot $0.51 | Rake $0 -Board [5c 4h 3h 5s 9s] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the River -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player19 collected ($0.51) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #16301246877: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($1.90 in chips) -Seat 4: Player17 ($3.65 in chips) -Seat 5: Player5 ($2.43 in chips) -Seat 6: Player22 ($2.50 in chips) -Seat 7: Player19 ($2.22 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.48 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2s 4c] -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: calls $0.02 -Player17: calls $0.02 -Player5: folds -Player22: folds -Player19: checks -*** FLOP *** [Jh 9h Ac] -Player19: checks -Player9: checks -Player24: checks -Player17: checks -*** TURN *** [Jh 9h Ac] [2d] -Player19: checks -Player9: bets $0.02 -Player24: calls $0.02 -Player17: calls $0.02 -Player19: folds -*** RIVER *** [Jh 9h Ac 2d] [Kd] -Player9: bets $0.02 -Player24: calls $0.02 -Player17: folds -*** SHOW DOWN *** -Player9: shows [Qc Qd] (a pair of Queens) -Player24: shows [7d Ad] (a pair of Aces) -Player24 collected $0.19 from pot -*** SUMMARY *** -Total pot $0.19 | Rake $0 -Board [Jh 9h Ac 2d Kd] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 showed [7d Ad] and won ($0.19) with a pair of Aces -Seat 4: Player17 folded on the River -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens - - - -PokerStars Game #21693130641: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.61 in chips) -Seat 5: Player5 ($2.43 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.20 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.42 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kd 9d] -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: raises $0.04 to $0.06 -Player5: calls $0.06 -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.04 -*** FLOP *** [Tc Ts 8s] -Player9: checks -Player17: checks -Player5: checks -*** TURN *** [Tc Ts 8s] [Jh] -Player9: checks -Player17: bets $0.12 -Player5: folds -Player9: folds -Uncalled bet ($0.12) returned to Player17 -Player17 collected $0.21 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.21 | Rake $0 -Board [Tc Ts 8s Jh] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.21) -Seat 5: Player5 folded on the Turn -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #80731798515: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.76 in chips) -Seat 5: Player5 ($2.37 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.36 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ah Ad] -Player18: folds -Player14: folds -Player24: folds -Player17: raises $0.06 to $0.08 -Player5: folds -Player5 leaves the table -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Uncalled bet ($0.06) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #12041521491: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.69 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.79 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.34 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8h 8s] -Player14: folds -Player24: folds -Player17: calls $0.02 -Player22: folds -Player19: folds -Player3: calls $0.02 -Player9: calls $0.01 -Player18: checks -*** FLOP *** [Ts 5c 5h] -Player0 joins the table at seat #5 -Player9: checks -Player18: checks -Player17: checks -Player3: checks -*** TURN *** [Ts 5c 5h] [9h] -Player9: checks -Player18: checks -Player17: checks -Player3: checks -*** RIVER *** [Ts 5c 5h 9h] [2d] -Player9: checks -Player18: checks -Player17: checks -Player3: checks -*** SHOW DOWN *** -Player9: shows [8d Qh] (a pair of Fives) -Player18: mucks hand -Player17: shows [8h 8s] (two pair, Eights and Fives) -Player3: mucks hand -Player17 collected $0.08 from pot -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [Ts 5c 5h 9h 2d] -Seat 1: Player18 (big blind) mucked [Js 3h] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [8h 8s] and won ($0.08) with two pair, Eights and Fives -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) mucked [Ac 3c] -Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives - - - -PokerStars Game #32267943121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.67 in chips) -Seat 2: Player14 ($1.58 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.85 in chips) -Seat 5: Player0 ($1.60 in chips) -Seat 6: Player22 ($2.49 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.32 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -Player0: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9h Kc] -Player24: folds -Player17: folds -Player0: raises $0.04 to $0.06 -Player22: calls $0.06 -Player19: folds -Player3: folds -Player9: calls $0.06 -Player18: folds -Player14: calls $0.04 -*** FLOP *** [As 4s Js] -Player14: checks -Player0: checks -Player22: checks -Player9: bets $0.10 -Player14: folds -Player0: folds -Player22: calls $0.10 -*** TURN *** [As 4s Js] [4c] -Player22: checks -Player9: bets $0.16 -Player22: calls $0.16 -*** RIVER *** [As 4s Js 4c] [Jc] -Player22: checks -Player9: bets $0.16 -Player22: raises $0.36 to $0.52 -Player9: calls $0.36 -*** SHOW DOWN *** -Player22: shows [Ks Qd] (two pair, Jacks and Fours) -Player9: shows [Ad 8h] (two pair, Aces and Jacks) -Player9 collected $1.76 from pot -*** SUMMARY *** -Total pot $1.81 | Rake $0.05 -Board [As 4s Js 4c Jc] -Seat 1: Player18 (small blind) folded before Flop -Seat 2: Player14 (big blind) folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player0 folded on the Flop -Seat 6: Player22 showed [Ks Qd] and lost with two pair, Jacks and Fours -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and Jacks - - - -PokerStars Game #21796253433: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.52 in chips) -Seat 3: Player24 ($2.03 in chips) -Seat 4: Player17 ($3.85 in chips) -Seat 5: Player0 ($1.54 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.19 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.24 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [6h 8d] -Player17: folds -Player0: raises $0.02 to $0.04 -Player22: raises $0.04 to $0.08 -Player19: calls $0.08 -Player3: folds -Player9: calls $0.08 -Player18: folds -Player14: folds -Player24: folds -Player0: calls $0.04 -*** FLOP *** [4d Td 4s] -Player0: bets $0.22 -Player22: folds -Player19: folds -Player9: folds -Uncalled bet ($0.22) returned to Player0 -Player0 collected $0.35 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot $0.35 | Rake $0 -Board [4d Td 4s] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player0 collected ($0.35) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #20106934129: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.51 in chips) -Seat 3: Player24 ($2.01 in chips) -Seat 4: Player17 ($3.85 in chips) -Seat 5: Player0 ($1.81 in chips) -Seat 6: Player22 ($1.57 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.16 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d Jd] -Player0: folds -Player22: calls $0.02 -Player19: folds -Player3: calls $0.02 -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: calls $0.01 -Player17: raises $0.02 to $0.04 -Player22: calls $0.02 -Player3: calls $0.02 -Player9: calls $0.02 -Player24: calls $0.02 -*** FLOP *** [6d 9s 3d] -Player24: checks -Player17: bets $0.02 -Player22: folds -Player3: folds -Player9: calls $0.02 -Player24: calls $0.02 -*** TURN *** [6d 9s 3d] [3c] -Player24: checks -Player17: bets $0.02 -Player9: calls $0.02 -Player24: folds -*** RIVER *** [6d 9s 3d 3c] [5c] -Player17: bets $0.02 -Player9: calls $0.02 -*** SHOW DOWN *** -Player17: shows [8d Jd] (a pair of Threes) -Player9: shows [Ts 6s] (two pair, Sixes and Threes) -Player9 collected $0.34 from pot -*** SUMMARY *** -Total pot $0.34 | Rake $0 -Board [6d 9s 3d 3c 5c] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 (button) folded before Flop (didn't bet) -Seat 3: Player24 (small blind) folded on the Turn -Seat 4: Player17 (big blind) showed [8d Jd] and lost with a pair of Threes -Seat 5: Player0 folded before Flop (didn't bet) -Seat 6: Player22 folded on the Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded on the Flop -Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes - - - -PokerStars Game #69512225343: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.51 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.75 in chips) -Seat 5: Player0 ($1.81 in chips) -Seat 6: Player22 ($1.53 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.40 in chips) -Player17: posts small blind $0.01 -Player0: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5c As] -Player22: folds -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: calls $0.02 -Player24: folds -Player17: calls $0.01 -Player0: checks -*** FLOP *** [3s 2c 5s] -Player17: checks -Player0: bets $0.04 -Player9: calls $0.04 -Player14: folds -Player17: raises $0.22 to $0.26 -Player0: raises $0.22 to $0.48 -Player9: folds -Player17: calls $0.22 -*** TURN *** [3s 2c 5s] [2h] -Player17: bets $0.36 -Player0: calls $0.36 -*** RIVER *** [3s 2c 5s 2h] [3d] -Player17: bets $0.90 -Player0: raises $0.05 to $0.95 and is all-in -Player17: calls $0.05 -*** SHOW DOWN *** -Player0: shows [5d 3h] (a full house, Threes full of Fives) -Player17: shows [5c As] (two pair, Fives and Threes) -Player0 collected $3.55 from pot -*** SUMMARY *** -Total pot $3.70 | Rake $0.15 -Board [3s 2c 5s 2h 3d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded on the Flop -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [5c As] and lost with two pair, Fives and Threes -Seat 5: Player0 (big blind) showed [5d 3h] and won ($3.55) with a full house, Threes full of Fives -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #69681723765: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($1.94 in chips) -Seat 5: Player0 ($3.55 in chips) -Seat 6: Player22 ($1.53 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.34 in chips) -Player0: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kc 9d] -Player19: folds -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player0: calls $0.01 -Player22: checks -*** FLOP *** [6h 2s Ad] -Player9 said, "jajajaja tonto" -Player0: checks -Player22: bets $0.02 -Player9: calls $0.02 -Player0: calls $0.02 -*** TURN *** [6h 2s Ad] [9s] -Player0: checks -Player22: checks -Player9: checks -*** RIVER *** [6h 2s Ad 9s] [Jh] -Player0: checks -Player22: bets $0.06 -Player9: calls $0.06 -Player0: folds -*** SHOW DOWN *** -Player22: shows [As 5d] (a pair of Aces) -Player9: mucks hand -Player22 collected $0.24 from pot -*** SUMMARY *** -Total pot $0.24 | Rake $0 -Board [6h 2s Ad 9s Jh] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player0 (small blind) folded on the River -Seat 6: Player22 (big blind) showed [As 5d] and won ($0.24) with a pair of Aces -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 mucked [Ts Qs] - - - -PokerStars Game #30142164314: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.54 in chips) -Seat 5: Player0 ($3.51 in chips) -Seat 6: Player22 ($1.67 in chips) -Seat 7: Player19 ($2.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.24 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d 6c] -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: folds -Player17: calls $0.02 -Player0: calls $0.02 -Player22: calls $0.01 -Player19: checks -*** FLOP *** [Jh 7d 8h] -Player22: checks -Player19: checks -Player9: checks -Player17: bets $0.06 -Player0: calls $0.06 -Player22: folds -Player19: folds -Player9: calls $0.06 -*** TURN *** [Jh 7d 8h] [Qc] -Player9: checks -Player17: checks -Player0: checks -*** RIVER *** [Jh 7d 8h Qc] [5c] -Player9: bets $0.04 -Player17: folds -Player0: calls $0.04 -*** SHOW DOWN *** -Player9: shows [Ah Kh] (high card Ace) -Player0: shows [As 8s] (a pair of Eights) -Player0 collected $0.36 from pot -*** SUMMARY *** -Total pot $0.36 | Rake $0 -Board [Jh 7d 8h Qc 5c] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the River -Seat 5: Player0 (button) showed [As 8s] and won ($0.36) with a pair of Eights -Seat 6: Player22 (small blind) folded on the Flop -Seat 7: Player19 (big blind) folded on the Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 showed [Ah Kh] and lost with high card Ace - - - -PokerStars Game #10018305383: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.95 in chips) -Seat 4: Player17 ($3.46 in chips) -Seat 5: Player0 ($3.75 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.09 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.12 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kh 2h] -Player9: folds -Player18: folds -Player14: folds -Player24: calls $0.02 -Player17: calls $0.02 -Player0: raises $0.04 to $0.06 -Player22: folds -Player19: folds -Player3: folds -Player24: calls $0.04 -Player17: calls $0.04 -*** FLOP *** [2s 2d Kc] -Player24: checks -Player17: bets $0.06 -Player0: calls $0.06 -Player24: folds -*** TURN *** [2s 2d Kc] [7h] -Player17: bets $0.20 -Player0: calls $0.20 -*** RIVER *** [2s 2d Kc 7h] [5s] -Player17: bets $3.04 -Player0 said, "lol" -Player0 said, "such bs" -Player0: folds -Uncalled bet ($3.04) returned to Player17 -Player17 collected $0.73 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.73 | Rake $0 -Board [2s 2d Kc 7h 5s] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Flop -Seat 4: Player17 collected ($0.73) -Seat 5: Player0 folded on the River -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player19 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #45323247626: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.87 in chips) -Seat 5: Player0 ($3.43 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.08 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.12 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2c Ad] -Player18: folds -Player14: folds -Player24: folds -Player17: folds -Player0: folds -Player22: folds -Player19: calls $0.02 -Player3: folds -Player9: checks -*** FLOP *** [2h Kd 8d] -Player9: bets $0.02 -Player19: folds -Uncalled bet ($0.02) returned to Player9 -Player9 collected $0.05 from pot -Player0 leaves the table -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Board [2h Kd 8d] -Seat 1: Player18 folded before Flop (didn't bet) -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player0 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded on the Flop -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) collected ($0.05) - - - -PokerStars Game #56232290155: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player18 ($0.66 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.87 in chips) -Seat 6: Player22 ($1.65 in chips) -Seat 7: Player19 ($2.06 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.15 in chips) -Player9: posts small blind $0.01 -Player18: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4h Ah] -Player14: folds -Player24: folds -Player17: raises $0.04 to $0.06 -Player22: calls $0.06 -Player19: calls $0.06 -Player3: folds -Player9: folds -Player18: folds -*** FLOP *** [Qs 5c Qc] -Player17: checks -Player22: bets $0.09 -Player19: folds -Player17: folds -Uncalled bet ($0.09) returned to Player22 -Player22 collected $0.21 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.21 | Rake $0 -Board [Qs 5c Qc] -Seat 1: Player18 (big blind) folded before Flop -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 6: Player22 collected ($0.21) -Seat 7: Player19 folded on the Flop -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded before Flop - - - -PokerStars Game #32171206783: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player18 ($0.64 in chips) -Seat 2: Player14 ($1.49 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.81 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.14 in chips) -Player18: posts small blind $0.01 -Player14: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kd 6c] -Player24: folds -Player17: raises $0.06 to $0.08 -Player22: folds -Player19: calls $0.08 -Player3: folds -Player9: calls $0.08 -Player18: folds -Player14: folds -*** FLOP *** [8s 3d 7h] -Player17: bets $0.18 -Player15 joins the table at seat #5 -Player19: raises $0.18 to $0.36 -Player9: folds -Player17: folds -Uncalled bet ($0.18) returned to Player19 -Player19 collected $0.63 from pot -Player19: doesn't show hand -*** SUMMARY *** -Total pot $0.63 | Rake $0 -Board [8s 3d 7h] -Seat 1: Player18 (small blind) folded before Flop -Seat 2: Player14 (big blind) folded before Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 collected ($0.63) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) folded on the Flop - - - -PokerStars Game #58591999729: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player18 ($0.63 in chips) -Seat 2: Player14 ($1.47 in chips) -Seat 3: Player24 ($1.89 in chips) -Seat 4: Player17 ($3.55 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2.37 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.06 in chips) -Player14: posts small blind $0.01 -Player24: posts big blind $0.02 -Player15: sits out -*** HOLE CARDS *** -Dealt to Player17 [5d Ks] -Player17: folds -Player22: folds -Player19: calls $0.02 -Player3: folds -Player9: calls $0.02 -Player18: folds -Player14: folds -Player24: checks -*** FLOP *** [3h Kh 2c] -Player24: checks -Player19: bets $0.02 -Player9 said, "maumont paga botes que tonto eres" -Player9: calls $0.02 -Player18 leaves the table -Player24: folds -*** TURN *** [3h Kh 2c] [Jd] -Player19: checks -Player9: bets $0.04 -Player19: folds -Uncalled bet ($0.04) returned to Player9 -Player9 collected $0.11 from pot -*** SUMMARY *** -Total pot $0.11 | Rake $0 -Board [3h Kh 2c Jd] -Seat 1: Player18 (button) folded before Flop (didn't bet) -Seat 2: Player14 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 collected ($0.11) - - - -PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 2: Player14 ($1.46 in chips) -Seat 3: Player24 ($1.87 in chips) -Seat 4: Player17 ($3.55 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.13 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -Player15: sits out -*** HOLE CARDS *** -Dealt to Player17 [8s 2h] -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Player14: calls $0.02 -Player24: calls $0.01 -Player17: raises $0.12 to $0.14 -Player14: calls $0.12 -Player24: folds -*** FLOP *** [3h As 7h] -Player17: checks -Player14: bets $0.20 -Player17: folds -Uncalled bet ($0.20) returned to Player14 -Player14 collected $0.30 from pot -*** SUMMARY *** -Total pot $0.30 | Rake $0 -Board [3h As 7h] -Seat 2: Player14 (button) collected ($0.30) -Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.85 in chips) -Seat 4: Player17 ($3.41 in chips) -Seat 5: Player15 ($1 in chips) -Seat 6: Player22 ($1.80 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.13 in chips) -Player17: posts small blind $0.01 -Player15: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad Qh] -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: folds -Player14: folds -Player24: folds -Player17: raises $0.92 to $0.94 -Player15: folds -Player22: folds -Uncalled bet ($0.92) returned to Player17 -Player17 collected $0.06 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) collected ($0.06) -Seat 5: Player15 (big blind) folded before Flop -Seat 6: Player22 folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.85 in chips) -Seat 4: Player17 ($3.45 in chips) -Seat 5: Player15 ($0.98 in chips) -Seat 6: Player22 ($1.78 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.13 in chips) -Player15: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [3h Qh] -Player19: folds -Player3: folds -Player9: calls $0.02 -Player14: folds -Player24: calls $0.02 -Player17: raises $0.04 to $0.06 -Player15: folds -Player22: folds -Player9: calls $0.04 -Player24: calls $0.04 -*** FLOP *** [3c 4s 7h] -Player9: checks -Player24: checks -Player17: checks -*** TURN *** [3c 4s 7h] [3s] -Player9: checks -Player24: checks -Player17: bets $0.14 -Player9: folds -Player24: folds -Uncalled bet ($0.14) returned to Player17 -Player17 collected $0.21 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.21 | Rake $0 -Board [3c 4s 7h 3s] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Turn -Seat 4: Player17 (button) collected ($0.21) -Seat 5: Player15 (small blind) folded before Flop -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.79 in chips) -Seat 4: Player17 ($3.60 in chips) -Seat 5: Player15 ($0.97 in chips) -Seat 6: Player22 ($1.76 in chips) -Seat 7: Player19 ($2.33 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.07 in chips) -Player22: posts small blind $0.01 -Player19: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Td 8d] -Player3: folds -Player9: calls $0.02 -Player14: folds -Player24: calls $0.02 -Player17: raises $0.16 to $0.18 -Player15: folds -Player22: folds -Player19: folds -Player9: calls $0.16 -Player24: calls $0.16 -*** FLOP *** [2d 9s Ts] -Player9: checks -Player24: checks -Player17: bets $0.42 -Player9: folds -Player24: folds -Uncalled bet ($0.42) returned to Player17 -Player17 collected $0.57 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.57 | Rake $0 -Board [2d 9s Ts] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded on the Flop -Seat 4: Player17 collected ($0.57) -Seat 5: Player15 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player19 (big blind) folded before Flop -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($3.99 in chips) -Seat 5: Player15 ($0.97 in chips) -Seat 6: Player22 ($1.75 in chips) -Seat 7: Player19 ($2.31 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($2.89 in chips) -Player19: posts small blind $0.01 -Player3: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5s 7d] -Player20 joins the table at seat #1 -Player9: calls $0.02 -Player14: folds -Player24: folds -Player17: folds -Player15: folds -Player15 leaves the table -Player22: calls $0.02 -Player19: raises $0.04 to $0.06 -Player3: folds -Player9: calls $0.04 -Player22: calls $0.04 -*** FLOP *** [8d Jh 7c] -Player19: bets $0.10 -Player12 joins the table at seat #5 -Player9: calls $0.10 -Player22: calls $0.10 -*** TURN *** [8d Jh 7c] [5c] -Player19: bets $0.30 -Player9: calls $0.30 -Player22: folds -*** RIVER *** [8d Jh 7c 5c] [Qc] -Player19: bets $0.22 -Player9: raises $2.21 to $2.43 and is all-in -Player19 has timed out -Player19: folds -Uncalled bet ($2.21) returned to Player9 -Player9 collected $1.49 from pot -*** SUMMARY *** -Total pot $1.54 | Rake $0.05 -Board [8d Jh 7c 5c Qc] -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player15 folded before Flop (didn't bet) -Seat 6: Player22 (button) folded on the Turn -Seat 7: Player19 (small blind) folded on the River -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player9 collected ($1.49) - - - -PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($3.99 in chips) -Seat 5: Player12 ($1 in chips) -Seat 6: Player22 ($1.59 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.70 in chips) -Player3: posts small blind $0.01 -Player9: posts big blind $0.02 -Player20: sits out -Player12: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9c 2c] -Player14: folds -Player24: folds -Player17: raises $0.04 to $0.06 -Player12: folds -Player22: folds -Player19: folds -Player3: folds -Player9: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.07 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.07) -Seat 5: Player12 folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 (button) folded before Flop (didn't bet) -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #99425634223: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5 in chips) -Seat 2: Player14 ($1.62 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($4.04 in chips) -Seat 5: Player12 ($0.98 in chips) -Seat 6: Player22 ($1.59 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.68 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9d Tc] -Player14: folds -Player24: folds -Player14 leaves the table -Player17: folds -Player12: folds -Player22: calls $0.02 -Player19: folds -Player3: folds -Player9: calls $0.01 -Player20: checks -*** FLOP *** [7d 4h Qs] -Player9: checks -Player20: checks -Player22: checks -*** TURN *** [7d 4h Qs] [3c] -Player9: bets $0.02 -Player20: calls $0.02 -Player22: calls $0.02 -*** RIVER *** [7d 4h Qs 3c] [Kd] -Player9: bets $0.04 -Player20: folds -Player22: raises $0.05 to $0.09 -Player9: calls $0.05 -*** SHOW DOWN *** -Player22: shows [Ts Kh] (a pair of Kings) -Player9: mucks hand -Player22 collected $0.30 from pot -*** SUMMARY *** -Total pot $0.30 | Rake $0 -Board [7d 4h Qs 3c Kd] -Seat 1: Player20 (big blind) folded on the River -Seat 2: Player14 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 showed [Ts Kh] and won ($0.30) with a pair of Kings -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) mucked [Jh Qd] - - - -PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($4.96 in chips) -Seat 3: Player24 ($1.61 in chips) -Seat 4: Player17 ($4.04 in chips) -Seat 5: Player12 ($0.98 in chips) -Seat 6: Player22 ($1.76 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.55 in chips) -Player20: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [2h 7h] -Player17: raises $0.04 to $0.06 -Player12: calls $0.06 -Player22: calls $0.06 -Player19: folds -Player3: folds -Player9: calls $0.06 -Player2 joins the table at seat #2 -Player20: folds -Player24: calls $0.04 -*** FLOP *** [2d 4s 5d] -Player24: checks -Player17: checks -Player12: checks -Player22: bets $0.06 -Player9: calls $0.06 -Player24: folds -Player17: calls $0.06 -Player12: folds -*** TURN *** [2d 4s 5d] [Kc] -Player17: checks -Player22: checks -Player9: checks -*** RIVER *** [2d 4s 5d Kc] [Ks] -Player17: checks -Player22: checks -Player9: bets $0.40 -Player17: folds -Player22: folds -Uncalled bet ($0.40) returned to Player9 -Player9 collected $0.49 from pot -*** SUMMARY *** -Total pot $0.49 | Rake $0 -Board [2d 4s 5d Kc Ks] -Seat 1: Player20 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded on the Flop -Seat 4: Player17 folded on the River -Seat 5: Player12 folded on the Flop -Seat 6: Player22 folded on the River -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 (button) collected ($0.49) - - - -PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($4.95 in chips) -Seat 3: Player24 ($1.55 in chips) -Seat 4: Player17 ($3.92 in chips) -Seat 5: Player12 ($0.92 in chips) -Seat 6: Player22 ($1.64 in chips) -Seat 7: Player19 ($1.63 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.92 in chips) -Player2 will be allowed to play after the button -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8h Qd] -Player12: calls $0.02 -Player22: folds -Player19: folds -Player19 leaves the table -Player3: folds -Player9: calls $0.02 -Player20: raises $0.10 to $0.12 -Player24: folds -Player17: folds -Player12: calls $0.10 -Player9: folds -*** FLOP *** [3h Js Td] -Player12: checks -Player20: bets $0.20 -Player12: folds -Uncalled bet ($0.20) returned to Player20 -Player20 collected $0.29 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.29 | Rake $0 -Board [3h Js Td] -Seat 1: Player20 (button) collected ($0.29) -Seat 3: Player24 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded before Flop -Seat 5: Player12 folded on the Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player19 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop - - - -PokerStars Game #11849119171: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.12 in chips) -Seat 2: Player2 ($1 in chips) -Seat 3: Player24 ($1.54 in chips) -Seat 4: Player17 ($3.90 in chips) -Seat 5: Player12 ($0.80 in chips) -Seat 6: Player22 ($1.64 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.90 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Jh Ah] -Player22: folds -Player3: folds -Player9: calls $0.02 -Player20: folds -Player2: checks -Player8 joins the table at seat #7 -Player24: calls $0.02 -Player17: raises $0.08 to $0.10 -Player12: folds -Player9: folds -Player2: folds -Player24: folds -Uncalled bet ($0.08) returned to Player17 -Player17 collected $0.10 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.10 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player2 folded before Flop -Seat 3: Player24 (button) folded before Flop -Seat 4: Player17 (small blind) collected ($0.10) -Seat 5: Player12 (big blind) folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop - - - -PokerStars Game #71932031318: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.12 in chips) -Seat 2: Player2 ($0.98 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.78 in chips) -Seat 6: Player22 ($1.64 in chips) -Seat 7: Player8 ($1.11 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.88 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -Player8: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Jc 2h] -Player8: checks -Player3: folds -Player9: calls $0.02 -Player20: calls $0.02 -Player2: folds -Player24: folds -Player17: folds -Player12: calls $0.01 -Player22: checks -*** FLOP *** [Jh Tc 2d] -Player12: checks -Player22: bets $0.02 -Player8: calls $0.02 -Player9: folds -Player20: calls $0.02 -Player12: calls $0.02 -*** TURN *** [Jh Tc 2d] [Js] -Player12: checks -Player22: bets $0.08 -Player8: folds -Player20: folds -Player12: folds -Uncalled bet ($0.08) returned to Player22 -Player22 collected $0.18 from pot -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [Jh Tc 2d Js] -Seat 1: Player20 folded on the Turn -Seat 2: Player2 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player12 (small blind) folded on the Turn -Seat 6: Player22 (big blind) collected ($0.18) -Seat 7: Player8 folded on the Turn -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #24227136121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.08 in chips) -Seat 2: Player2 ($0.98 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.74 in chips) -Seat 6: Player22 ($1.78 in chips) -Seat 7: Player8 ($1.07 in chips) -Seat 8: Player3 ($3 in chips) -Seat 9: Player9 ($3.86 in chips) -Player22: posts small blind $0.01 -Player8: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kc 7s] -Player3: folds -Player9: folds -Player20: calls $0.02 -Player2: folds -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: folds -Player8: checks -*** FLOP *** [Th 5d 7h] -Player8: checks -Player20: checks -Player12: checks -*** TURN *** [Th 5d 7h] [6s] -Player8: checks -Player20: checks -Player12: checks -*** RIVER *** [Th 5d 7h 6s] [8s] -Player8: checks -Player20: bets $0.04 -Player12: folds -Player8: folds -Uncalled bet ($0.04) returned to Player20 -Player20 collected $0.07 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.07 | Rake $0 -Board [Th 5d 7h 6s 8s] -Seat 1: Player20 collected ($0.07) -Seat 2: Player2 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 (button) folded on the River -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player8 (big blind) folded on the River -Seat 8: Player3 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #31395250833: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.13 in chips) -Seat 2: Player2 ($0.98 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.72 in chips) -Seat 6: Player22 ($1.77 in chips) -Seat 7: Player8 ($1.05 in chips) -Seat 9: Player9 ($3.86 in chips) -Player8: posts small blind $0.01 -Player3: is sitting out -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ah 2c] -Player20: folds -Player2: calls $0.02 -Player3 leaves the table -Player24: folds -Player17: folds -Player12: raises $0.06 to $0.08 -Player22: calls $0.08 -Player8: calls $0.07 -Player9: folds -Player2: calls $0.06 -*** FLOP *** [6h Js 3h] -Player8: checks -Player2: bets $0.90 and is all-in -Player12: folds -Player22: folds -Player8: calls $0.90 -*** TURN *** [6h Js 3h] [5h] -*** RIVER *** [6h Js 3h 5h] [8d] -*** SHOW DOWN *** -Player8: shows [6s 9s] (a pair of Sixes) -Player2: shows [Qc Jd] (a pair of Jacks) -Player2 collected $2.04 from pot -*** SUMMARY *** -Total pot $2.14 | Rake $0.10 -Board [6h Js 3h 5h 8d] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player2 showed [Qc Jd] and won ($2.04) with a pair of Jacks -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the Flop -Seat 6: Player22 (button) folded on the Flop -Seat 7: Player8 (small blind) showed [6s 9s] and lost with a pair of Sixes -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #12179306192: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.13 in chips) -Seat 2: Player2 ($2.04 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.64 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($3.84 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ks 9d] -Player2: raises $0.06 to $0.08 -Player24: folds -Player17: folds -Player12: folds -Player22: folds -Player8: folds -Player9: calls $0.07 -Player20: folds -*** FLOP *** [Js Tc 8s] -Player9: bets $0.04 -Player2: raises $0.12 to $0.16 -Player9: calls $0.12 -*** TURN *** [Js Tc 8s] [Ad] -Player9: bets $0.10 -Player2: raises $1.70 to $1.80 and is all-in -Player9: folds -Uncalled bet ($1.70) returned to Player2 -Player2 collected $0.70 from pot -*** SUMMARY *** -Total pot $0.70 | Rake $0 -Board [Js Tc 8s Ad] -Seat 1: Player20 (big blind) folded before Flop -Seat 2: Player2 collected ($0.70) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player8 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded on the Turn - - - -PokerStars Game #51091236980: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.11 in chips) -Seat 2: Player2 ($2.40 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.98 in chips) -Seat 5: Player12 ($0.64 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($3.50 in chips) -Player20: posts small blind $0.01 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ad 4s] -Player24: folds -Player17: raises $0.04 to $0.06 -Player12: calls $0.06 -Player22: folds -Player8: folds -Player9: calls $0.06 -Player20: folds -Player2: folds -*** FLOP *** [As 6c 5c] -Player17: bets $0.08 -Player12: calls $0.08 -Player9: raises $0.08 to $0.16 -Player17: folds -Player12: raises $0.42 to $0.58 and is all-in -Player9: calls $0.42 -*** TURN *** [As 6c 5c] [Qd] -*** RIVER *** [As 6c 5c Qd] [9d] -*** SHOW DOWN *** -Player12: shows [Ac Tc] (a pair of Aces) -Player9: mucks hand -Player12 collected $1.40 from pot -*** SUMMARY *** -Total pot $1.45 | Rake $0.05 -Board [As 6c 5c Qd 9d] -Seat 1: Player20 (small blind) folded before Flop -Seat 2: Player2 (big blind) folded before Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 5: Player12 showed [Ac Tc] and won ($1.40) with a pair of Aces -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player8 folded before Flop (didn't bet) -Seat 9: Player9 (button) mucked [8d Ah] - - - -PokerStars Game #27086240062: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.10 in chips) -Seat 2: Player2 ($2.38 in chips) -Seat 3: Player24 ($1.52 in chips) -Seat 4: Player17 ($3.84 in chips) -Seat 5: Player12 ($1.40 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($2.86 in chips) -Player2: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5c 5d] -Player17: raises $0.04 to $0.06 -Player12: folds -Player22: folds -Player8: folds -Player9: folds -Player20: calls $0.06 -Player2: folds -Player24: folds -*** FLOP *** [7d 4s 8h] -Player2 leaves the table -Player17: checks -Player20: checks -*** TURN *** [7d 4s 8h] [Th] -Player17: checks -Player13 joins the table at seat #8 -Player20: bets $0.08 -Player17: raises $0.12 to $0.20 -Player20: calls $0.12 -*** RIVER *** [7d 4s 8h Th] [4h] -Player17: checks -Player20: checks -*** SHOW DOWN *** -Player17: shows [5c 5d] (two pair, Fives and Fours) -Player20: shows [Jc Tc] (two pair, Tens and Fours) -Player20 collected $0.55 from pot -*** SUMMARY *** -Total pot $0.55 | Rake $0 -Board [7d 4s 8h Th 4h] -Seat 1: Player20 (button) showed [Jc Tc] and won ($0.55) with two pair, Tens and Fours -Seat 2: Player2 (small blind) folded before Flop -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 showed [5c 5d] and lost with two pair, Fives and Fours -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player8 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 3: Player24 ($1.50 in chips) -Seat 4: Player17 ($3.58 in chips) -Seat 5: Player12 ($1.40 in chips) -Seat 6: Player22 ($1.69 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 9: Player9 ($2.86 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -Player13: sits out -*** HOLE CARDS *** -Dealt to Player17 [Kd 7d] -Player22: calls $0.02 -Player8: folds -Player10 joins the table at seat #2 -Player9: folds -Player20: folds -Player24: calls $0.02 -Player17: calls $0.01 -Player12: checks -*** FLOP *** [6s 9d 6d] -Player17: bets $0.08 -Player12: folds -Player22: calls $0.08 -Player24: folds -*** TURN *** [6s 9d 6d] [2c] -Player17: checks -Player22: checks -*** RIVER *** [6s 9d 6d 2c] [8h] -Player17: checks -Player22: checks -*** SHOW DOWN *** -Player17: shows [Kd 7d] (a pair of Sixes) -Player22: shows [5h 5s] (two pair, Sixes and Fives) -Player22 collected $0.24 from pot -*** SUMMARY *** -Total pot $0.24 | Rake $0 -Board [6s 9d 6d 2c 8h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded on the Flop -Seat 4: Player17 (small blind) showed [Kd 7d] and lost with a pair of Sixes -Seat 5: Player12 (big blind) folded on the Flop -Seat 6: Player22 showed [5h 5s] and won ($0.24) with two pair, Sixes and Fives -Seat 7: Player8 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.48 in chips) -Seat 5: Player12 ($1.38 in chips) -Seat 6: Player22 ($1.83 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 8: Player13 ($5 in chips) -Seat 9: Player9 ($2.86 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -Player13: posts big blind $0.02 -Player10: sits out -*** HOLE CARDS *** -Dealt to Player17 [5d 7c] -Player8: folds -Player13: checks -Player9: folds -Player20: folds -Player24: folds -Player17: calls $0.02 -Player12: calls $0.01 -Player22: checks -*** FLOP *** [7d Kd Jh] -Player12: checks -Player22: checks -Player13: checks -Player17: checks -*** TURN *** [7d Kd Jh] [7s] -Player12: checks -Player22: checks -Player13: checks -Player17: bets $0.08 -Player12: folds -Player22: folds -Player13: folds -Uncalled bet ($0.08) returned to Player17 -Player17 collected $0.08 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [7d Kd Jh 7s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) collected ($0.08) -Seat 5: Player12 (small blind) folded on the Turn -Seat 6: Player22 (big blind) folded on the Turn -Seat 7: Player8 folded before Flop (didn't bet) -Seat 8: Player13 folded on the Turn -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #76511550927: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player10 ($1.29 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.54 in chips) -Seat 5: Player12 ($1.36 in chips) -Seat 6: Player22 ($1.81 in chips) -Seat 7: Player8 ($0.07 in chips) -Seat 8: Player13 ($4.98 in chips) -Seat 9: Player9 ($2.86 in chips) -Player22: posts small blind $0.01 -Player8: posts big blind $0.02 -Player10: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [8d Js] -Player13: folds -Player9: folds -Player20: folds -Player10: checks -Player24: folds -Player17: raises $0.06 to $0.08 -Player12: calls $0.08 -Player22: calls $0.07 -Player8: calls $0.05 and is all-in -Player10: calls $0.06 -*** FLOP *** [9c 9s Ah] -Player22: bets $0.04 -Player10: folds -Player17: folds -Player12: calls $0.04 -*** TURN *** [9c 9s Ah] [Td] -Player22: bets $0.08 -Player12: folds -Uncalled bet ($0.08) returned to Player22 -*** RIVER *** [9c 9s Ah Td] [3d] -*** SHOW DOWN *** -Player22: shows [Ac 6c] (two pair, Aces and Nines) -Player22 collected $0.12 from side pot -Player8: shows [Kh Th] (two pair, Tens and Nines) -Player22 collected $0.35 from main pot -*** SUMMARY *** -Total pot $0.47 Main pot $0.35. Side pot $0.12. | Rake $0 -Board [9c 9s Ah Td 3d] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Flop -Seat 5: Player12 (button) folded on the Turn -Seat 6: Player22 (small blind) showed [Ac 6c] and won ($0.47) with two pair, Aces and Nines -Seat 7: Player8 (big blind) showed [Kh Th] and lost with two pair, Tens and Nines -Seat 8: Player13 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #28012101373: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player10 ($1.21 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.46 in chips) -Seat 5: Player12 ($1.24 in chips) -Seat 6: Player22 ($2.16 in chips) -Seat 8: Player13 ($4.98 in chips) -Seat 9: Player9 ($2.86 in chips) -Player13: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [7s 5h] -Player20: folds -Player10: calls $0.02 -Player8 leaves the table -Player24: folds -Player17: calls $0.02 -Player12: calls $0.02 -Player22: folds -Player13: folds -Player9: checks -*** FLOP *** [5s 8d Kc] -Player9: checks -Player10: bets $0.06 -Player17: raises $0.08 to $0.14 -Player12: folds -Player9: folds -Player10: calls $0.08 -*** TURN *** [5s 8d Kc] [4c] -Player10: checks -Player13 leaves the table -Player17: checks -*** RIVER *** [5s 8d Kc 4c] [3s] -Player10: checks -Player7 joins the table at seat #8 -Player17: checks -*** SHOW DOWN *** -Player10: shows [2c 2h] (a pair of Deuces) -Player17: shows [7s 5h] (a pair of Fives) -Player17 collected $0.37 from pot -*** SUMMARY *** -Total pot $0.37 | Rake $0 -Board [5s 8d Kc 4c 3s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 showed [2c 2h] and lost with a pair of Deuces -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [7s 5h] and won ($0.37) with a pair of Fives -Seat 5: Player12 folded on the Flop -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 8: Player13 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded on the Flop - - - -PokerStars Game #41511921426: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player10 ($1.05 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.67 in chips) -Seat 5: Player12 ($1.22 in chips) -Seat 9: Player9 ($2.84 in chips) -Player20: posts small blind $0.01 -Player10: posts big blind $0.02 -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [Js 6c] -Player24: folds -Player17: folds -Player12: folds -Player9: calls $0.02 -Player20: raises $0.04 to $0.06 -Player10: raises $0.04 to $0.10 -Player9: calls $0.08 -Player20: raises $0.30 to $0.40 -Player10: raises $0.30 to $0.70 -Player9: calls $0.60 -Player20: raises $4.69 to $5.39 and is all-in -Player10: calls $0.35 and is all-in -Player9: calls $2.14 and is all-in -Uncalled bet ($2.55) returned to Player20 -*** FLOP *** [2c 2s Ts] -*** TURN *** [2c 2s Ts] [Kd] -*** RIVER *** [2c 2s Ts Kd] [9s] -*** SHOW DOWN *** -Player20: shows [Ad Ah] (two pair, Aces and Deuces) -Player9: shows [Qs 7h] (a pair of Deuces) -Player20 collected $3.43 from side pot -Player10: shows [Kh Ks] (a full house, Kings full of Deuces) -Player10 collected $3 from main pot -*** SUMMARY *** -Total pot $6.73 Main pot $3. Side pot $3.43. | Rake $0.30 -Board [2c 2s Ts Kd 9s] -Seat 1: Player20 (small blind) showed [Ad Ah] and won ($3.43) with two pair, Aces and Deuces -Seat 2: Player10 (big blind) showed [Kh Ks] and won ($3) with a full house, Kings full of Deuces -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces - - - -PokerStars Game #28359136208: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.98 in chips) -Seat 2: Player10 ($3 in chips) -Seat 3: Player24 ($1.48 in chips) -Seat 4: Player17 ($3.67 in chips) -Seat 5: Player12 ($1.22 in chips) -Player10: posts small blind $0.01 -Player24: posts big blind $0.02 -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [6c Tc] -Player17: raises $0.04 to $0.06 -Player12: folds -Player16 joins the table at seat #7 -Player20 said, "lol everytime" -Player20: folds -Player10: raises $0.04 to $0.10 -Player24: folds -Player17: calls $0.04 -*** FLOP *** [5c Kc Jh] -Player10: checks -Player17: bets $0.08 -Player10: calls $0.08 -*** TURN *** [5c Kc Jh] [5h] -Player10: checks -Player17: checks -*** RIVER *** [5c Kc Jh 5h] [Ts] -Player10: checks -Player17: checks -*** SHOW DOWN *** -Player10: shows [Ad Ac] (two pair, Aces and Fives) -Player17: mucks hand -Player10 collected $0.38 from pot -*** SUMMARY *** -Total pot $0.38 | Rake $0 -Board [5c Kc Jh 5h Ts] -Seat 1: Player20 (button) folded before Flop (didn't bet) -Seat 2: Player10 (small blind) showed [Ad Ac] and won ($0.38) with two pair, Aces and Fives -Seat 3: Player24 (big blind) folded before Flop -Seat 4: Player17 mucked [6c Tc] -Seat 5: Player12 folded before Flop (didn't bet) - - - -PokerStars Game #70913060022: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player20 ($5.98 in chips) -Seat 2: Player10 ($3.20 in chips) -Seat 3: Player24 ($1.46 in chips) -Seat 4: Player17 ($3.49 in chips) -Seat 5: Player12 ($1.22 in chips) -Seat 9: Player9 ($1.80 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -Player16: sits out -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [As 7h] -Player12: calls $0.02 -Player20 said, "haha nice" -Player9: calls $0.02 -Player20: calls $0.02 -Player10: calls $0.02 -Player24: calls $0.01 -Player17: checks -*** FLOP *** [Qs Qh Ad] -Player24: checks -Player17: bets $0.12 -Player12: folds -Player9: calls $0.12 -Player20: folds -Player10: folds -Player24: folds -*** TURN *** [Qs Qh Ad] [5h] -Player17: bets $0.10 -Player9: calls $0.10 -*** RIVER *** [Qs Qh Ad 5h] [Ah] -Player17: bets $0.12 -Player9: raises $1.44 to $1.56 and is all-in -Player17: calls $1.44 -*** SHOW DOWN *** -Player9: shows [Kh Jh] (a flush, Ace high) -Player17: shows [As 7h] (a full house, Aces full of Queens) -Player17 collected $3.53 from pot -*** SUMMARY *** -Total pot $3.68 | Rake $0.15 -Board [Qs Qh Ad 5h Ah] -Seat 1: Player20 folded on the Flop -Seat 2: Player10 (button) folded on the Flop -Seat 3: Player24 (small blind) folded on the Flop -Seat 4: Player17 (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens -Seat 5: Player12 folded on the Flop -Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high - - - -PokerStars Game #20264306210: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.96 in chips) -Seat 2: Player10 ($3.18 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.22 in chips) -Seat 5: Player12 ($1.20 in chips) -Seat 6: Player22 ($2.16 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -Player16: sits out -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [Ac 7s] -Player22: folds -Player20: folds -Player10: folds -Player24: folds -Player22 said, "nh" -Player17: raises $0.08 to $0.10 -Player12: calls $0.08 -*** FLOP *** [8c 5d Qh] -Player17 said, "tyty" -Player17: checks -Player12: checks -*** TURN *** [8c 5d Qh] [Tc] -Player17: checks -Player12: bets $0.10 -Player17: folds -Uncalled bet ($0.10) returned to Player12 -Player12 collected $0.20 from pot -*** SUMMARY *** -Total pot $0.20 | Rake $0 -Board [8c 5d Qh Tc] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 folded before Flop (didn't bet) -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) folded on the Turn -Seat 5: Player12 (big blind) collected ($0.20) -Seat 6: Player22 folded before Flop (didn't bet) - - - -PokerStars Game #27816107382: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.96 in chips) -Seat 2: Player10 ($3.18 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.12 in chips) -Seat 5: Player12 ($1.30 in chips) -Seat 6: Player22 ($2.16 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -Player16: sits out -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [As Qc] -Player20: folds -Player10: calls $0.02 -Player24: folds -Player17: calls $0.02 -Player12: calls $0.01 -Player22: checks -*** FLOP *** [8s 8h Kd] -Player12: checks -Player22: checks -Player10: checks -Player17: checks -*** TURN *** [8s 8h Kd] [9h] -Player12: bets $0.06 -Player22: folds -Player10: calls $0.06 -Player17: folds -*** RIVER *** [8s 8h Kd 9h] [6s] -Player12: bets $0.24 -Player10: folds -Uncalled bet ($0.24) returned to Player12 -Player12 collected $0.20 from pot -Player10 leaves the table -*** SUMMARY *** -Total pot $0.20 | Rake $0 -Board [8s 8h Kd 9h 6s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player10 folded on the River -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded on the Turn -Seat 5: Player12 (small blind) collected ($0.20) -Seat 6: Player22 (big blind) folded on the Turn - - - -PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.96 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.10 in chips) -Seat 5: Player12 ($1.42 in chips) -Seat 6: Player22 ($2.14 in chips) -Seat 7: Player16 ($1.60 in chips) -Seat 9: Player9 ($1 in chips) -Player22: posts small blind $0.01 -Player16: posts big blind $0.02 -Player7: sits out -*** HOLE CARDS *** -Dealt to Player17 [5c 8c] -Player9: calls $0.02 -Player20: folds -Player24: folds -Player17: calls $0.02 -Player12: calls $0.02 -Player22: folds -Player16: checks -*** FLOP *** [Ad Kd Qh] -Player16: checks -Player9: checks -Player17: checks -Player12: checks -*** TURN *** [Ad Kd Qh] [9c] -Player16: checks -Player9: bets $0.02 -Player17: folds -Player12: calls $0.02 -Player16: folds -*** RIVER *** [Ad Kd Qh 9c] [7d] -Player9: checks -Player4 joins the table at seat #2 -Player12: checks -*** SHOW DOWN *** -Player9: shows [6c Jd] (high card Ace) -Player12: shows [5h Kh] (a pair of Kings) -Player12 collected $0.13 from pot -*** SUMMARY *** -Total pot $0.13 | Rake $0 -Board [Ad Kd Qh 9c 7d] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded on the Turn -Seat 5: Player12 (button) showed [5h Kh] and won ($0.13) with a pair of Kings -Seat 6: Player22 (small blind) folded before Flop -Seat 7: Player16 (big blind) folded on the Turn -Seat 9: Player9 showed [6c Jd] and lost with high card Ace - - - -PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.94 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) -Seat 5: Player12 ($1.15 in chips) -Seat 6: Player22 ($2.56 in chips) -Seat 7: Player16 ($1.57 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($0.94 in chips) -Player7: posts small blind $0.01 -Player9: posts big blind $0.02 -Player4: sits out -*** HOLE CARDS *** -Dealt to Player17 [4h As] -Player20: folds -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: calls $0.01 -Player9: checks -*** FLOP *** [Qh 5c 9c] -Player7: checks -Player9: checks -Player12: checks -Player22: checks -*** TURN *** [Qh 5c 9c] [7d] -Player7: checks -Player9: checks -Player12: checks -Player22: checks -*** RIVER *** [Qh 5c 9c 7d] [Qd] -Player7: checks -Player9: checks -Player12: checks -Player22: checks -*** SHOW DOWN *** -Player7: shows [4s 5s] (two pair, Queens and Fives) -Player9: mucks hand -Player12: mucks hand -Player22: mucks hand -Player7 collected $0.08 from pot -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [Qh 5c 9c 7d Qd] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 mucked [3h 2s] -Seat 6: Player22 mucked [Ts 6s] -Seat 7: Player16 (button) folded before Flop (didn't bet) -Seat 8: Player7 (small blind) showed [4s 5s] and won ($0.08) with two pair, Queens and Fives -Seat 9: Player9 (big blind) mucked [6c 2d] - - - -PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5.94 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) -Seat 5: Player12 ($1.13 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player16 ($1.57 in chips) -Seat 8: Player7 ($2.06 in chips) -Seat 9: Player9 ($0.92 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -Player4: sits out -*** HOLE CARDS *** -Dealt to Player17 [5s Ks] -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: folds -Player16: folds -Player7: calls $0.02 -Player9: calls $0.01 -Player20: checks -*** FLOP *** [Qc 9c 5h] -Player9: checks -Player20: checks -Player12: checks -Player7: bets $0.06 -Player9: calls $0.06 -Player20: folds -Player12: calls $0.06 -*** TURN *** [Qc 9c 5h] [Td] -Player9: checks -Player12: checks -Player7: checks -*** RIVER *** [Qc 9c 5h Td] [Jh] -Player9: bets $0.20 -Player12: folds -Player7: folds -Uncalled bet ($0.20) returned to Player9 -Player9 collected $0.26 from pot -*** SUMMARY *** -Total pot $0.26 | Rake $0 -Board [Qc 9c 5h Td Jh] -Seat 1: Player20 (big blind) folded on the Flop -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the River -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 (button) folded on the River -Seat 9: Player9 (small blind) collected ($0.26) - - - -PokerStars Game #50092600346: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.92 in chips) -Seat 2: Player4 ($1 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.08 in chips) -Seat 5: Player12 ($1.05 in chips) -Seat 6: Player22 ($2.54 in chips) -Seat 7: Player16 ($1.57 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.10 in chips) -Player20: posts small blind $0.01 -Player4: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ts 8s] -Player24: folds -Player17: calls $0.02 -Player12: calls $0.02 -Player22: calls $0.02 -Player16: calls $0.02 -Player7: calls $0.02 -Player9: folds -Player20: calls $0.01 -Player4: checks -*** FLOP *** [9d 3c Js] -Player20: checks -Player4: checks -Player17: checks -Player12: checks -Player22: checks -Player16: bets $0.10 -Player7: folds -Player20: calls $0.10 -Player4: calls $0.10 -Player17: calls $0.10 -Player12: folds -Player22: folds -*** TURN *** [9d 3c Js] [Qh] -Player20: checks -Player4: checks -Player17: checks -Player16: checks -*** RIVER *** [9d 3c Js Qh] [2s] -Player20: bets $0.26 -Player4: folds -Player17: calls $0.26 -Player16: folds -*** SHOW DOWN *** -Player20: shows [2h Jh] (two pair, Jacks and Deuces) -Player17: shows [Ts 8s] (a straight, Eight to Queen) -Player17 collected $1.01 from pot -*** SUMMARY *** -Total pot $1.06 | Rake $0.05 -Board [9d 3c Js Qh 2s] -Seat 1: Player20 (small blind) showed [2h Jh] and lost with two pair, Jacks and Deuces -Seat 2: Player4 (big blind) folded on the River -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen -Seat 5: Player12 folded on the Flop -Seat 6: Player22 folded on the Flop -Seat 7: Player16 folded on the River -Seat 8: Player7 folded on the Flop -Seat 9: Player9 (button) folded before Flop (didn't bet) - - - -PokerStars Game #24708132405: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.54 in chips) -Seat 2: Player4 ($0.88 in chips) -Seat 3: Player24 ($1.44 in chips) -Seat 4: Player17 ($5.71 in chips) -Seat 5: Player12 ($1.03 in chips) -Seat 6: Player22 ($2.52 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.10 in chips) -Player4: posts small blind $0.01 -Player24: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5h Qh] -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: folds -Player4: calls $0.01 -Player24: checks -*** FLOP *** [6c 7s 9h] -Player4: bets $0.02 -Player24: calls $0.02 -Player12: calls $0.02 -Player22: calls $0.02 -Player9: calls $0.02 -*** TURN *** [6c 7s 9h] [3h] -Player4: bets $0.02 -Player24: folds -Player12: folds -Player22: calls $0.02 -Player9: calls $0.02 -*** RIVER *** [6c 7s 9h 3h] [2h] -Player4: checks -Player22: checks -Player9: bets $0.02 -Player4: folds -Player22: folds -Uncalled bet ($0.02) returned to Player9 -Player9 collected $0.26 from pot -*** SUMMARY *** -Total pot $0.26 | Rake $0 -Board [6c 7s 9h 3h 2h] -Seat 1: Player20 (button) folded before Flop (didn't bet) -Seat 2: Player4 (small blind) folded on the River -Seat 3: Player24 (big blind) folded on the Turn -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the Turn -Seat 6: Player22 folded on the River -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 collected ($0.26) - - - -PokerStars Game #16013874820: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player20 ($5.54 in chips) -Seat 2: Player4 ($0.82 in chips) -Seat 3: Player24 ($1.40 in chips) -Seat 4: Player17 ($5.71 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.46 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.30 in chips) -Player24: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d 7s] -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: calls $0.02 -Player4: calls $0.02 -Player24: calls $0.01 -Player17: checks -*** FLOP *** [7c Qs Th] -Player24: checks -Player17: checks -Player12: checks -Player22: bets $0.10 -Player9: folds -Player20: folds -Player4: calls $0.10 -Player24: folds -Player17: folds -Player12: folds -*** TURN *** [7c Qs Th] [Qd] -Player22: checks -Player4: checks -*** RIVER *** [7c Qs Th Qd] [6h] -Player22: bets $0.50 -Player4: folds -Uncalled bet ($0.50) returned to Player22 -Player22 collected $0.34 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.34 | Rake $0 -Board [7c Qs Th Qd 6h] -Seat 1: Player20 folded on the Flop -Seat 2: Player4 (button) folded on the River -Seat 3: Player24 (small blind) folded on the Flop -Seat 4: Player17 (big blind) folded on the Flop -Seat 5: Player12 folded on the Flop -Seat 6: Player22 collected ($0.34) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Flop - - - -PokerStars Game #81348282228: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.52 in chips) -Seat 2: Player4 ($0.70 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.69 in chips) -Seat 5: Player12 ($0.97 in chips) -Seat 6: Player22 ($2.68 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.28 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [As Kd] -Player22: folds -Player16: folds -Player7: folds -Player9: folds -Player20: folds -Player4: raises $0.04 to $0.06 -Player24: folds -Player17: calls $0.05 -Player12: calls $0.04 -*** FLOP *** [Kh 3c Ah] -Player17: checks -Player12: checks -Player4: checks -*** TURN *** [Kh 3c Ah] [Jh] -Player17: checks -Player12: checks -Player4: checks -*** RIVER *** [Kh 3c Ah Jh] [5c] -Player17: checks -Player12: checks -Player4: checks -*** SHOW DOWN *** -Player17: shows [As Kd] (two pair, Aces and Kings) -Player12: mucks hand -Player4: mucks hand -Player17 collected $0.18 from pot -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [Kh 3c Ah Jh 5c] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 mucked [7s 8s] -Seat 3: Player24 (button) folded before Flop (didn't bet) -Seat 4: Player17 (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings -Seat 5: Player12 (big blind) mucked [Ts 3s] -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #12247201631: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.52 in chips) -Seat 2: Player4 ($0.64 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.91 in chips) -Seat 6: Player22 ($2.68 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.28 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9s 2d] -Player16: folds -Player7: folds -Player9 has timed out -Player9: folds -Player20: raises $0.04 to $0.06 -Player4: folds -Player24: folds -Player17: folds -Player12: folds -Player22: folds -Uncalled bet ($0.04) returned to Player20 -Player20 collected $0.05 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player20 collected ($0.05) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player12 (small blind) folded before Flop -Seat 6: Player22 (big blind) folded before Flop -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #18249303862: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.64 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.90 in chips) -Seat 6: Player22 ($2.66 in chips) -Seat 7: Player16 ($1.45 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.28 in chips) -Player22: posts small blind $0.01 -Player16: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Kh 5c] -Player7: folds -Player9: calls $0.02 -Player20: folds -Player4: folds -Player24: folds -Player17: folds -Player12: calls $0.02 -Player22: calls $0.01 -Player16: checks -*** FLOP *** [8d 5s Ts] -Player22: checks -Player16: checks -Player9: checks -Player12: checks -*** TURN *** [8d 5s Ts] [9h] -Player22: bets $0.04 -Player16: folds -Player9: folds -Player12: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.08 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.08 | Rake $0 -Board [8d 5s Ts 9h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 (button) folded on the Turn -Seat 6: Player22 (small blind) collected ($0.08) -Seat 7: Player16 (big blind) folded on the Turn -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #79095206106: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.64 in chips) -Seat 3: Player24 ($1.38 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.88 in chips) -Seat 6: Player22 ($2.72 in chips) -Seat 7: Player16 ($1.43 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.26 in chips) -Player16: posts small blind $0.01 -Player7: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Qs 6h] -Player9 has timed out -Player9: folds -Player20: folds -Player4: calls $0.02 -Player24: calls $0.02 -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: checks -*** FLOP *** [5d Th 9c] -Player7: checks -Player4: checks -Player24: checks -Player12: bets $0.02 -Player22: folds -Player7: folds -Player4: folds -Player24: calls $0.02 -*** TURN *** [5d Th 9c] [2d] -Player24: checks -Player12: checks -*** RIVER *** [5d Th 9c 2d] [9s] -Player24: checks -Player12: bets $0.06 -Player24: folds -Uncalled bet ($0.06) returned to Player12 -Player12 collected $0.15 from pot -*** SUMMARY *** -Total pot $0.15 | Rake $0 -Board [5d Th 9c 2d 9s] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded on the Flop -Seat 3: Player24 folded on the River -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 collected ($0.15) -Seat 6: Player22 (button) folded on the Flop -Seat 7: Player16 (small blind) folded before Flop -Seat 8: Player7 (big blind) folded on the Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #23803281942: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.62 in chips) -Seat 3: Player24 ($1.34 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.70 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.26 in chips) -Player7: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4d 9d] -Player20: folds -Player4: folds -Player24: folds -Player17: folds -Player12: folds -Player22: folds -Player16: folds -Player7: raises $0.06 to $0.08 -Player9 has timed out -Player9: folds -Uncalled bet ($0.06) returned to Player7 -Player7 collected $0.04 from pot -Player7: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 (button) folded before Flop (didn't bet) -Seat 8: Player7 (small blind) collected ($0.04) -Seat 9: Player9 (big blind) folded before Flop - - - -PokerStars Game #29640307323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5.55 in chips) -Seat 2: Player4 ($0.62 in chips) -Seat 3: Player24 ($1.34 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.70 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Player20: posts small blind $0.01 -Player4: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Js 7d] -Player24: folds -Player17: folds -Player24 leaves the table -Player12: folds -Player22: calls $0.02 -Player16: folds -Player1 joins the table at seat #3 -Player7: folds -Player20: calls $0.01 -Player4: checks -*** FLOP *** [Jc 2d 9d] -Player20: checks -Player4: checks -Player22: checks -*** TURN *** [Jc 2d 9d] [Ac] -Player20: checks -Player4: checks -Player22: bets $0.04 -Player20: folds -Player4: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.06 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [Jc 2d 9d Ac] -Seat 1: Player20 (small blind) folded on the Turn -Seat 2: Player4 (big blind) folded on the Turn -Seat 3: Player24 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 collected ($0.06) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #22991200661: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] -Table '99999999' 9-max Seat #1 is the button -Seat 1: Player20 ($5.53 in chips) -Seat 2: Player4 ($0.60 in chips) -Seat 3: Player1 ($2 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.99 in chips) -Seat 6: Player22 ($2.74 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.24 in chips) -Player4: posts small blind $0.01 -Player1: posts big blind $0.02 -Player9: posts small blind $0.01 -*** HOLE CARDS *** -Dealt to Player17 [9c 8s] -Player17: folds -Player12: calls $0.02 -Player22: calls $0.02 -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: folds -Player4: calls $0.01 -Player1: checks -*** FLOP *** [Td 3s Th] -Player4: checks -Player1: checks -Player12: checks -Player22: checks -Player9: checks -*** TURN *** [Td 3s Th] [9s] -Player4: checks -Player1: checks -Player12: checks -Player22: bets $0.08 -Player9: folds -Player4: folds -Player1: folds -Player12: folds -Uncalled bet ($0.08) returned to Player22 -Player22 collected $0.11 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.11 | Rake $0 -Board [Td 3s Th 9s] -Seat 1: Player20 (button) folded before Flop (didn't bet) -Seat 2: Player4 (small blind) folded on the Turn -Seat 3: Player1 (big blind) folded on the Turn -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded on the Turn -Seat 6: Player22 collected ($0.11) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded on the Turn - - - -PokerStars Game #22198294871: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] -Table '99999999' 9-max Seat #2 is the button -Seat 1: Player20 ($5.53 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.98 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.97 in chips) -Seat 6: Player22 ($2.83 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.21 in chips) -Player1: posts small blind $0.01 -Player17: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [9d Qc] -Player12: folds -Player22: folds -Player16: folds -Player7: folds -Player9: calls $0.02 -Player20: raises $0.04 to $0.06 -Player4: folds -Player1: folds -Player17: folds -Player9: calls $0.04 -*** FLOP *** [6d 4d Qh] -Player9: checks -Player20: checks -*** TURN *** [6d 4d Qh] [Ac] -Player9: checks -Player20: checks -*** RIVER *** [6d 4d Qh Ac] [Ah] -Player9: bets $0.02 -Player20: calls $0.02 -*** SHOW DOWN *** -Player9: shows [2d Qd] (two pair, Aces and Queens) -Player20: mucks hand -Player9 collected $0.19 from pot -*** SUMMARY *** -Total pot $0.19 | Rake $0 -Board [6d 4d Qh Ac Ah] -Seat 1: Player20 mucked [Kc Jd] -Seat 2: Player4 (button) folded before Flop (didn't bet) -Seat 3: Player1 (small blind) folded before Flop -Seat 4: Player17 (big blind) folded before Flop -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens - - - -PokerStars Game #97422269929: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] -Table '99999999' 9-max Seat #3 is the button -Seat 1: Player20 ($5.45 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.97 in chips) -Seat 4: Player17 ($5.79 in chips) -Seat 5: Player12 ($0.97 in chips) -Seat 6: Player22 ($2.83 in chips) -Seat 7: Player16 ($1.42 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.32 in chips) -Player17: posts small blind $0.01 -Player12: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Td 2h] -Player22: folds -Player16: raises $0.06 to $0.08 -Player7: folds -Player9: folds -Player20: folds -Player4: folds -Player1: calls $0.08 -Player17: folds -Player12: folds -*** FLOP *** [9c 7d 3h] -Player16: checks -Player1: checks -*** TURN *** [9c 7d 3h] [9h] -Player16: bets $0.06 -Player1: folds -Uncalled bet ($0.06) returned to Player16 -Player16 collected $0.19 from pot -Player16: doesn't show hand -*** SUMMARY *** -Total pot $0.19 | Rake $0 -Board [9c 7d 3h 9h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 (button) folded on the Turn -Seat 4: Player17 (small blind) folded before Flop -Seat 5: Player12 (big blind) folded before Flop -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player16 collected ($0.19) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #18011288181: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] -Table '99999999' 9-max Seat #4 is the button -Seat 1: Player20 ($5.45 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.89 in chips) -Seat 4: Player17 ($5.78 in chips) -Seat 5: Player12 ($0.95 in chips) -Seat 6: Player22 ($2.83 in chips) -Seat 7: Player16 ($1.53 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.32 in chips) -Player12: posts small blind $0.01 -Player22: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [5d 6s] -Player16: folds -Player16 leaves the table -Player7: folds -Player9: folds -Player20: raises $0.04 to $0.06 -Player4: folds -Player1: folds -Player17: folds -Player12: calls $0.05 -Player22: calls $0.04 -*** FLOP *** [Ts Kc Jd] -Player6 joins the table at seat #7 -Player12: checks -Player22: bets $0.06 -Player20: folds -Player12: folds -Uncalled bet ($0.06) returned to Player22 -Player22 collected $0.18 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.18 | Rake $0 -Board [Ts Kc Jd] -Seat 1: Player20 folded on the Flop -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 (button) folded before Flop (didn't bet) -Seat 5: Player12 (small blind) folded on the Flop -Seat 6: Player22 (big blind) collected ($0.18) -Seat 7: Player16 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #45432821411: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] -Table '99999999' 9-max Seat #5 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.58 in chips) -Seat 3: Player1 ($1.89 in chips) -Seat 4: Player17 ($5.78 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($2.95 in chips) -Seat 7: Player6 ($2 in chips) -Seat 8: Player7 ($2.02 in chips) -Seat 9: Player9 ($1.32 in chips) -Player22: posts small blind $0.01 -Player6: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Ks Jd] -Player7: calls $0.02 -Player9: folds -Player20: folds -Player4: calls $0.02 -Player1: raises $0.04 to $0.06 -Player17: folds -Player12: folds -Player22: calls $0.05 -Player6: calls $0.04 -Player7: calls $0.04 -Player4: calls $0.04 -*** FLOP *** [5c 3h 4s] -Player22: bets $0.04 -Player6: calls $0.04 -Player7: folds -Player4: calls $0.04 -Player1: calls $0.04 -*** TURN *** [5c 3h 4s] [Qh] -Player22: checks -Player6: checks -Player4: checks -Player1: checks -*** RIVER *** [5c 3h 4s Qh] [6h] -Player22: bets $0.04 -Player6: folds -Player4: folds -Player1: folds -Uncalled bet ($0.04) returned to Player22 -Player22 collected $0.46 from pot -Player22: doesn't show hand -*** SUMMARY *** -Total pot $0.46 | Rake $0 -Board [5c 3h 4s Qh 6h] -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded on the River -Seat 3: Player1 folded on the River -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 (button) folded before Flop (didn't bet) -Seat 6: Player22 (small blind) collected ($0.46) -Seat 7: Player6 (big blind) folded on the River -Seat 8: Player7 folded on the Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #10551491588: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] -Table '99999999' 9-max Seat #6 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.78 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.90 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.32 in chips) -Player6: posts small blind $0.01 -Player7: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Qs 9s] -Player9: folds -Player20: folds -Player4: folds -Player1: folds -Player17: raises $0.04 to $0.06 -Player12: folds -Player22: folds -Player6: folds -Player7: folds -Uncalled bet ($0.04) returned to Player17 -Player17 collected $0.05 from pot -Player17: doesn't show hand -*** SUMMARY *** -Total pot $0.05 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 collected ($0.05) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player7 (big blind) folded before Flop -Seat 9: Player9 folded before Flop (didn't bet) - - - -PokerStars Game #19037115169: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] -Table '99999999' 9-max Seat #7 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.89 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.32 in chips) -Player7: posts small blind $0.01 -Player9: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [4d Js] -Player20: folds -Player4: folds -Player1: folds -Player17: folds -Player12: folds -Player22: folds -Player6: folds -Player7: folds -Uncalled bet ($0.01) returned to Player9 -Player9 collected $0.02 from pot -*** SUMMARY *** -Total pot $0.02 | Rake $0 -Seat 1: Player20 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player6 (button) folded before Flop (didn't bet) -Seat 8: Player7 (small blind) folded before Flop -Seat 9: Player9 (big blind) collected ($0.02) - - - -PokerStars Game #26447108451: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] -Table '99999999' 9-max Seat #8 is the button -Seat 1: Player20 ($5.39 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.89 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.89 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.33 in chips) -Player9: posts small blind $0.01 -Player20: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Qd 2s] -Player4: folds -Player1 has timed out -Player1: folds -Player17: folds -Player12: calls $0.02 -Player22: folds -Player6: folds -Player7: folds -Player9: calls $0.01 -Player20: checks -*** FLOP *** [Qs 6d 4s] -Player9: checks -Player20: checks -Player12: bets $0.02 -Player9: folds -Player20: folds -Uncalled bet ($0.02) returned to Player12 -Player12 collected $0.06 from pot -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [Qs 6d 4s] -Seat 1: Player20 (big blind) folded on the Flop -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 collected ($0.06) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player7 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) folded on the Flop - - - -PokerStars Game #16631106221: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] -Table '99999999' 9-max Seat #9 is the button -Seat 1: Player20 ($5.37 in chips) -Seat 2: Player4 ($0.48 in chips) -Seat 3: Player1 ($1.79 in chips) -Seat 4: Player17 ($5.81 in chips) -Seat 5: Player12 ($0.93 in chips) -Seat 6: Player22 ($3.31 in chips) -Seat 7: Player6 ($1.89 in chips) -Seat 8: Player7 ($2 in chips) -Seat 9: Player9 ($1.31 in chips) -Player20: posts small blind $0.01 -Player4: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player17 [Tc 6c] -Player1: folds -Player17: folds -Player12: folds -Player22: folds -Player6: folds -Player7: folds -Player9: folds -Player20: calls $0.01 -Player4: checks -*** FLOP *** [4h 7d Td] -Player20: checks -Player4: checks -*** TURN *** [4h 7d Td] [3d] -Player20: checks -Player4: checks -*** RIVER *** [4h 7d Td 3d] [Qs] -Player20: bets $0.04 -Player4: folds -Uncalled bet ($0.04) returned to Player20 -Player20 collected $0.04 from pot -Player20: doesn't show hand -*** SUMMARY *** -Total pot $0.04 | Rake $0 -Board [4h 7d Td 3d Qs] -Seat 1: Player20 (small blind) collected ($0.04) -Seat 2: Player4 (big blind) folded on the River -Seat 3: Player1 folded before Flop (didn't bet) -Seat 4: Player17 folded before Flop (didn't bet) -Seat 5: Player12 folded before Flop (didn't bet) -Seat 6: Player22 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player7 folded before Flop (didn't bet) -Seat 9: Player9 (button) folded before Flop (didn't bet) - - - +PokerStars Game #31900318973: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:46:48 WET [2010/05/06 17:46:48 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($0.97 in chips) +Seat 3: Player23 ($1.53 in chips) +Seat 4: Player17 ($1.60 in chips) +Seat 5: Player5 ($2.91 in chips) +Seat 6: Player22 ($2.45 in chips) +Seat 7: Player19 ($2.56 in chips) +Seat 8: Player3 ($3.01 in chips) +Seat 9: Player21 ($0.58 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2d Kc] +Player3: folds +Player21: folds +Player14: calls $0.02 +Player23: calls $0.02 +Player17: checks +Player5: folds +Player22: calls $0.01 +Player19: checks +*** FLOP *** [Qh 8d 7s] +Player22: bets $0.06 +Player19: folds +Player14: calls $0.06 +Player23: folds +Player17: folds +*** TURN *** [Qh 8d 7s] [3s] +Player22: bets $0.30 +Player14: folds +Uncalled bet ($0.30) returned to Player22 +Player22 collected $0.22 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.22 | Rake $0 +Board [Qh 8d 7s 3s] +Seat 2: Player14 folded on the Turn +Seat 3: Player23 folded on the Flop +Seat 4: Player17 folded on the Flop +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) collected ($0.22) +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #85321652824: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:47:57 WET [2010/05/06 17:47:57 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.91 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($2.54 in chips) +Seat 8: Player3 ($3.01 in chips) +Seat 9: Player21 ($0.58 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3h Td] +Player21: folds +Player14: folds +Player23: folds +Player17: folds +Player5: raises $0.10 to $0.12 +Player22: calls $0.12 +Player11 joins the table at seat #1 +Player19: folds +Player3: folds +*** FLOP *** [Js Qh 9s] +Player5: checks +Player22: bets $0.25 +Player5: folds +Uncalled bet ($0.25) returned to Player22 +Player22 collected $0.27 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.27 | Rake $0 +Board [Js Qh 9s] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded on the Flop +Seat 6: Player22 (button) collected ($0.27) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #30102275294: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:48:47 WET [2010/05/06 17:48:47 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player3: posts small blind $0.01 +Player21: posts big blind $0.02 +Player11: sits out +*** HOLE CARDS *** +Dealt to Player17 [Qc 5d] +Player14: folds +Player23: folds +Player17: raises $0.04 to $0.06 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player21 (big blind) folded before Flop + + + +PokerStars Game #20107261170: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:11 WET [2010/05/06 17:49:11 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player11 ($1.60 in chips) +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.61 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.56 in chips) +Player21: posts small blind $0.01 +Player11: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d Qc] +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: calls $0.01 +Player11: checks +*** FLOP *** [7s 3s Kd] +Player21: bets $0.02 +Player11: folds +Uncalled bet ($0.02) returned to Player21 +Player21 collected $0.04 from pot +Player21: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Board [7s 3s Kd] +Seat 1: Player11 (big blind) folded on the Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player21 (small blind) collected ($0.04) + + + +PokerStars Game #30246290211: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:49:41 WET [2010/05/06 17:49:41 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player11 ($1.58 in chips) +Seat 2: Player14 ($0.89 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.61 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.53 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player11: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d 7d] +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player21: folds +Player11: calls $0.01 +Player14: checks +*** FLOP *** [5s 9c 4c] +Player11: bets $0.08 +Player14: calls $0.08 +Player17: calls $0.08 +Player19: folds +*** TURN *** [5s 9c 4c] [Td] +Player11: bets $0.04 +Player14: calls $0.04 +Player17: calls $0.04 +*** RIVER *** [5s 9c 4c Td] [Kh] +Player11: checks +Player14: bets $0.10 +Player17: folds +Player11: folds +Uncalled bet ($0.10) returned to Player14 +Player14 collected $0.44 from pot +*** SUMMARY *** +Total pot $0.44 | Rake $0 +Board [5s 9c 4c Td Kh] +Seat 1: Player11 (small blind) folded on the River +Seat 2: Player14 (big blind) collected ($0.44) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 (button) folded before Flop (didn't bet) + + + +PokerStars Game #31761373829: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:51:11 WET [2010/05/06 17:51:11 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player11 ($1.44 in chips) +Seat 2: Player14 ($1.19 in chips) +Seat 3: Player23 ($1.51 in chips) +Seat 4: Player17 ($1.47 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player14: posts small blind $0.01 +Player23: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3s 5d] +Player17: folds +Player5: folds +Player22: raises $0.02 to $0.04 +Player19: folds +Player3: folds +Player21: folds +Player11: raises $0.14 to $0.18 +Player14: folds +Player23: calls $0.16 +Player22: calls $0.14 +*** FLOP *** [4h 6d 4s] +Player23: checks +Player22: checks +Player11: bets $0.55 +Player23: folds +Player22: folds +Uncalled bet ($0.55) returned to Player11 +Player11 collected $0.55 from pot +*** SUMMARY *** +Total pot $0.55 | Rake $0 +Board [4h 6d 4s] +Seat 1: Player11 (button) collected ($0.55) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player23 (big blind) folded on the Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #30758254721: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:08 WET [2010/05/06 17:52:08 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.18 in chips) +Seat 3: Player23 ($2.13 in chips) +Seat 4: Player17 ($1.47 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player23: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c 5d] +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: calls $0.02 +Player23: calls $0.01 +Player17: checks +*** FLOP *** [8s 4s Ah] +Player23: checks +Player17: checks +Player14: bets $0.06 +Player23: folds +Player17: calls $0.06 +*** TURN *** [8s 4s Ah] [Qs] +Player17: bets $0.10 +Player14: calls $0.10 +*** RIVER *** [8s 4s Ah Qs] [9h] +Player17: checks +Player14: checks +*** SHOW DOWN *** +Player17: shows [2c 5d] (high card Ace) +Player14: shows [Ac Jc] (a pair of Aces) +Player14 collected $0.38 from pot +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [8s 4s Ah Qs 9h] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 (button) showed [Ac Jc] and won ($0.38) with a pair of Aces +Seat 3: Player23 (small blind) folded on the Flop +Seat 4: Player17 (big blind) showed [2c 5d] and lost with high card Ace +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #88562623320: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:52:57 WET [2010/05/06 17:52:57 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.11 in chips) +Seat 4: Player17 ($1.29 in chips) +Seat 5: Player5 ($2.79 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4h Qh] +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: folds +Player23: raises $0.04 to $0.06 +Player17: calls $0.05 +Player5: calls $0.04 +*** FLOP *** [7s 3s Ah] +Player17: bets $0.20 +Player5: folds +Player23: raises $1.85 to $2.05 and is all-in +Player17: folds +Uncalled bet ($1.85) returned to Player23 +Player23 collected $0.58 from pot +Player23: doesn't show hand +*** SUMMARY *** +Total pot $0.58 | Rake $0 +Board [7s 3s Ah] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 (button) collected ($0.58) +Seat 4: Player17 (small blind) folded on the Flop +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #16687242396: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:53:46 WET [2010/05/06 17:53:46 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.43 in chips) +Seat 4: Player17 ($1.03 in chips) +Seat 5: Player5 ($2.73 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc 4s] +Player19: folds +Player3: folds +Player21: folds +Player11: folds +Player14: folds +Player23: raises $0.04 to $0.06 +Player17: folds +Player5: folds +Player22: calls $0.04 +*** FLOP *** [2h 7d 3s] +Player22: checks +Player23: checks +*** TURN *** [2h 7d 3s] [Ks] +Player22: bets $0.04 +Player23: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.13 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.13 | Rake $0 +Board [2h 7d 3s Ks] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded on the Turn +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) collected ($0.13) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #20006229758: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:54:17 WET [2010/05/06 17:54:17 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.83 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.63 in chips) +Seat 7: Player19 ($2.51 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 3s] +Player3: folds +Player21: folds +Player11: folds +Player14 has timed out +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: folds +Player19: calls $0.06 +*** FLOP *** [6d Jd 7c] +Player19: bets $0.04 +Player17: calls $0.04 +*** TURN *** [6d Jd 7c] [Js] +Player19: checks +Player17: bets $0.26 +Player19: folds +Uncalled bet ($0.26) returned to Player17 +Player17 collected $0.25 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [6d Jd 7c Js] +Seat 1: Player11 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.25) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 folded before Flop (didn't bet) + + + +PokerStars Game #27303244902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:55:36 WET [2010/05/06 17:55:36 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player11 ($1.81 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.96 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($2.39 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($0.58 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c 8c] +Player21: raises $0.06 to $0.08 +Player11: raises $0.10 to $0.18 +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: raises $0.40 to $0.58 and is all-in +Player11: calls $0.40 +*** FLOP *** [Qs Jh 6h] +*** TURN *** [Qs Jh 6h] [Jc] +*** RIVER *** [Qs Jh 6h Jc] [4h] +*** SHOW DOWN *** +Player21: shows [Ah Qh] (a flush, Ace high) +Player11: shows [Ac Qd] (two pair, Queens and Jacks) +Player21 collected $1.14 from pot +*** SUMMARY *** +Total pot $1.19 | Rake $0.05 +Board [Qs Jh 6h Jc 4h] +Seat 1: Player11 showed [Ac Qd] and lost with two pair, Queens and Jacks +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player21 showed [Ah Qh] and won ($1.14) with a flush, Ace high + + + +PokerStars Game #13363166481: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:56:24 WET [2010/05/06 17:56:24 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player11 ($1.23 in chips) +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.96 in chips) +Seat 5: Player5 ($2.72 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($2.38 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.14 in chips) +Player3: posts small blind $0.01 +Player21: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 4h] +Player11: raises $0.04 to $0.06 +Player14: folds +Player23: folds +Player17: calls $0.06 +Player5: calls $0.06 +Player22: calls $0.06 +Player19: raises $0.18 to $0.24 +Player3: folds +Player21: folds +Player11: calls $0.18 +Player17: calls $0.18 +Player5: folds +Player22: folds +*** FLOP *** [Th 7c 5s] +Player11: bets $0.23 +Player17: folds +Player19: raises $1.91 to $2.14 and is all-in +Player11: calls $0.76 and is all-in +Uncalled bet ($1.15) returned to Player19 +*** TURN *** [Th 7c 5s] [Td] +*** RIVER *** [Th 7c 5s Td] [4s] +*** SHOW DOWN *** +Player11: shows [Kh Qh] (a pair of Tens) +Player19: shows [As Ac] (two pair, Aces and Tens) +Player19 collected $2.75 from pot +*** SUMMARY *** +Total pot $2.85 | Rake $0.10 +Board [Th 7c 5s Td 4s] +Seat 1: Player11 showed [Kh Qh] and lost with a pair of Tens +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player5 folded before Flop +Seat 6: Player22 folded before Flop +Seat 7: Player19 (button) showed [As Ac] and won ($2.75) with two pair, Aces and Tens +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player21 (big blind) folded before Flop + + + +PokerStars Game #27226323531: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:58:18 WET [2010/05/06 17:58:18 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 2: Player14 ($1.38 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.72 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.12 in chips) +Player21: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3d 4d] +Player23: folds +Player17: calls $0.02 +Player11 leaves the table +Player5: folds +Player22: folds +Player19: folds +Player3: calls $0.02 +Player21: folds +Player14: checks +*** FLOP *** [8s Ad 8h] +Player14: checks +Player17: checks +Player3: checks +*** TURN *** [8s Ad 8h] [8c] +Player14: bets $0.06 +Player17: folds +Player3: folds +Uncalled bet ($0.06) returned to Player14 +Player14 collected $0.07 from pot +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [8s Ad 8h 8c] +Seat 2: Player14 (big blind) collected ($0.07) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded on the Turn +Seat 9: Player21 (small blind) folded before Flop + + + +PokerStars Game #32657659628: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 22:59:14 WET [2010/05/06 17:59:14 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 2: Player14 ($1.43 in chips) +Seat 3: Player23 ($2.37 in chips) +Seat 4: Player17 ($1.70 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player21 ($1.11 in chips) +Player14: posts small blind $0.01 +Player23: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad Kd] +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player21: folds +Player14: calls $0.01 +Player23: checks +*** FLOP *** [5c 9s Kh] +Player14: checks +Player23: checks +Player17: checks +*** TURN *** [5c 9s Kh] [7s] +Player14: bets $0.04 +Player23: calls $0.04 +Player21 leaves the table +Player17: calls $0.04 +*** RIVER *** [5c 9s Kh 7s] [3s] +Player14: bets $0.04 +Player23: raises $0.04 to $0.08 +Player17: folds +Player18 joins the table at seat #1 +Player14: calls $0.04 +*** SHOW DOWN *** +Player23: shows [Qs Ts] (a flush, Queen high) +Player14: mucks hand +Player23 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [5c 9s Kh 7s 3s] +Seat 2: Player14 (small blind) mucked [Kc Td] +Seat 3: Player23 (big blind) showed [Qs Ts] and won ($0.34) with a flush, Queen high +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player21 (button) folded before Flop (didn't bet) + + + +PokerStars Game #22479236161: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:15 WET [2010/05/06 18:00:15 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 2: Player14 ($1.29 in chips) +Seat 3: Player23 ($2.57 in chips) +Seat 4: Player17 ($1.64 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Player23: posts small blind $0.01 +Player17: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [4c Js] +Player5: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player14: calls $0.02 +Player23: calls $0.01 +Player17: raises $0.12 to $0.14 +Player22: folds +Player14: folds +Player23: folds +Uncalled bet ($0.12) returned to Player17 +Player17 collected $0.08 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Seat 2: Player14 (button) folded before Flop +Seat 3: Player23 (small blind) folded before Flop +Seat 4: Player17 (big blind) collected ($0.08) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) + + + +PokerStars Game #12335306021: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:00:44 WET [2010/05/06 18:00:44 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.70 in chips) +Seat 5: Player5 ($2.66 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ts Qc] +Player9 joins the table at seat #9 +Player22: folds +Player19: folds +Player3: folds +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.04 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) collected ($0.04) +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) + + + +PokerStars Game #10841092831: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:01:00 WET [2010/05/06 18:01:00 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.72 in chips) +Seat 5: Player5 ($2.64 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($1.85 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +Player9: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [6d Ac] +Player19: folds +Player3: folds +Player9: checks +Player14: folds +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: checks +*** FLOP *** [7s 2d 3h] +Player22: checks +Player9: checks +Player17: bets $0.04 +Player22: calls $0.04 +Player9: folds +*** TURN *** [7s 2d 3h] [5d] +Player22: checks +Player17: checks +*** RIVER *** [7s 2d 3h 5d] [7c] +Player22: bets $0.02 +Player17: raises $0.06 to $0.08 +Player22: raises $0.06 to $0.14 +Player17: folds +Uncalled bet ($0.06) returned to Player22 +Player22 collected $0.31 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.31 | Rake $0 +Board [7s 2d 3h 5d 7c] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the River +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) collected ($0.31) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #13957140902: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:02:15 WET [2010/05/06 18:02:15 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.71 in chips) +Seat 7: Player19 ($3.90 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($1.83 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [9s Kd] +Player3: folds +Player9: calls $0.02 +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: calls $0.01 +Player19: checks +*** FLOP *** [9c Qh Tc] +Player22: bets $0.06 +Player19: folds +Player9: calls $0.06 +*** TURN *** [9c Qh Tc] [5h] +Player22: bets $0.12 +Player9: calls $0.12 +*** RIVER *** [9c Qh Tc 5h] [2c] +Player22: bets $0.12 +Player9: raises $0.12 to $0.24 +Player22: calls $0.12 +*** SHOW DOWN *** +Player9: shows [Ac Qc] (a flush, Ace high) +Player22: mucks hand +Player9 collected $0.90 from pot +*** SUMMARY *** +Total pot $0.90 | Rake $0 +Board [9c Qh Tc 5h 2c] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) mucked [Js 8c] +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Ac Qc] and won ($0.90) with a flush, Ace high + + + +PokerStars Game #91692634264: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:03:25 WET [2010/05/06 18:03:25 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.58 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.27 in chips) +Seat 7: Player19 ($3.88 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.29 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ts 9h] +Player9: calls $0.02 +Player14: folds +Player23: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: calls $0.08 +Player19: folds +Player3: folds +Player9: calls $0.06 +*** FLOP *** [Ad 8s Js] +Player9: checks +Player17: checks +Player22: bets $0.08 +Player9: folds +Player17: calls $0.08 +*** TURN *** [Ad 8s Js] [3s] +Player17: checks +Player22: bets $0.08 +Player17: calls $0.08 +*** RIVER *** [Ad 8s Js 3s] [Jh] +Player17: checks +Player22: bets $0.25 +Player17: folds +Uncalled bet ($0.25) returned to Player22 +Player22 collected $0.59 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.59 | Rake $0 +Board [Ad 8s Js 3s Jh] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) collected ($0.59) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #18556118881: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:28 WET [2010/05/06 18:04:28 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.34 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.62 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.21 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +Player18: sits out +*** HOLE CARDS *** +Dealt to Player17 [3c Tc] +Player14: folds +Player23: folds +Player17: folds +Player5: folds +Player22: raises $0.04 to $0.06 +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.05 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 collected ($0.05) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #31790741684: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:04:49 WET [2010/05/06 18:04:49 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.80 in chips) +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($1.34 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.65 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.19 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6c Qs] +Player14: folds +Player23: folds +Player17: raises $0.04 to $0.06 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Player18: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 (big blind) folded before Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded before Flop + + + +PokerStars Game #23618143313: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:05:22 WET [2010/05/06 18:05:22 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.78 in chips) +Seat 2: Player14 ($1.27 in chips) +Seat 3: Player23 ($2.55 in chips) +Seat 4: Player17 ($2.17 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.65 in chips) +Seat 7: Player19 ($3.87 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.18 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6c Ac] +Player23: folds +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: calls $0.02 +Player3: folds +Player9: calls $0.02 +Player18: calls $0.01 +Player14: checks +*** FLOP *** [3s 7s Qh] +Player18: checks +Player14: checks +Player17: checks +Player22: checks +Player19: checks +Player9: checks +*** TURN *** [3s 7s Qh] [Ah] +Player23 leaves the table +Player18: checks +Player14: checks +Player17: checks +Player22: checks +Player19: checks +Player9: bets $0.02 +Player18: calls $0.02 +Player24 joins the table at seat #3 +Player14: calls $0.02 +Player17: folds +Player22: folds +Player19: folds +*** RIVER *** [3s 7s Qh Ah] [5d] +Player18: checks +Player14: checks +Player9: bets $0.02 +Player18: folds +Player14: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [3s 7s Qh Ah 5d] +Seat 1: Player18 (small blind) folded on the River +Seat 2: Player14 (big blind) folded on the River +Seat 3: Player23 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Turn +Seat 7: Player19 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) collected ($0.18) + + + +PokerStars Game #20255202813: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:06:40 WET [2010/05/06 18:06:40 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.23 in chips) +Seat 3: Player24 ($2 in chips) +Seat 4: Player17 ($2.15 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.63 in chips) +Seat 7: Player19 ($3.85 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c Qc] +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: calls $0.02 +Player3: calls $0.02 +Player9: folds +Player18: folds +Player14: calls $0.01 +Player24: checks +*** FLOP *** [5d 2s 3c] +Player14: checks +Player24: checks +Player17: bets $0.08 +Player22: folds +Player19: folds +Player3: folds +Player14: calls $0.08 +Player24: folds +*** TURN *** [5d 2s 3c] [9d] +Player14: checks +Player17: bets $0.20 +Player14: calls $0.20 +*** RIVER *** [5d 2s 3c 9d] [Jc] +Player14: checks +Player17: checks +*** SHOW DOWN *** +Player14: shows [4c 4s] (a pair of Fours) +Player17: mucks hand +Player14 collected $0.68 from pot +*** SUMMARY *** +Total pot $0.68 | Rake $0 +Board [5d 2s 3c 9d Jc] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) showed [4c 4s] and won ($0.68) with a pair of Fours +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 mucked [2c Qc] +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #14690416916: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:07:56 WET [2010/05/06 18:07:56 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.98 in chips) +Seat 4: Player17 ($1.85 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($3.83 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc Td] +Player5: folds +Player22: folds +Player19: raises $0.06 to $0.08 +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: calls $0.07 +Player17: raises $0.40 to $0.48 +Player19: raises $3.35 to $3.83 and is all-in +Player24: folds +Player17: calls $1.37 and is all-in +Uncalled bet ($1.98) returned to Player19 +*** FLOP *** [3s 5c 7c] +*** TURN *** [3s 5c 7c] [Th] +*** RIVER *** [3s 5c 7c Th] [Jh] +*** SHOW DOWN *** +Player17: shows [Tc Td] (three of a kind, Tens) +Player19: shows [Ac As] (a pair of Aces) +Player17 collected $3.63 from pot +*** SUMMARY *** +Total pot $3.78 | Rake $0.15 +Board [3s 5c 7c Th Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) showed [Tc Td] and won ($3.63) with three of a kind, Tens +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 showed [Ac As] and lost with a pair of Aces +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #13559160472: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:08:58 WET [2010/05/06 18:08:58 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.63 in chips) +Seat 5: Player5 ($2.63 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 2s] +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.01 +Player5: checks +*** FLOP *** [6d 7h 3s] +Player17: bets $0.06 +Player5: folds +Player9: calls $0.06 +*** TURN *** [6d 7h 3s] [Kc] +Player17: checks +Player9: bets $0.04 +Player17: calls $0.04 +*** RIVER *** [6d 7h 3s Kc] [5d] +Player17: checks +Player9: bets $0.04 +Player17: raises $0.22 to $0.26 +Player9: calls $0.22 +*** SHOW DOWN *** +Player17: shows [Ad 2s] (high card Ace) +Player9: shows [Jc Js] (a pair of Jacks) +Player9 collected $0.78 from pot +*** SUMMARY *** +Total pot $0.78 | Rake $0 +Board [6d 7h 3s Kc 5d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [Ad 2s] and lost with high card Ace +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Jc Js] and won ($0.78) with a pair of Jacks + + + +PokerStars Game #16011540019: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:10:14 WET [2010/05/06 18:10:14 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.25 in chips) +Seat 5: Player5 ($2.61 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.72 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 3s] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.02 +Player5: raises $0.10 to $0.12 +Player22: folds +Player9: calls $0.10 +Player17: calls $0.10 +*** FLOP *** [6h 2c Jd] +Player5: bets $0.29 +Player9: folds +Player17: folds +Uncalled bet ($0.29) returned to Player5 +Player5 collected $0.38 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [6h 2c Jd] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the Flop +Seat 5: Player5 (small blind) collected ($0.38) +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #16588282642: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:04 WET [2010/05/06 18:11:04 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.13 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($1.98 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd Th] +Player3: folds +Player9 said, "tu pua madre farolero" +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player22: folds +Player19: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded before Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #22736406243: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:11:29 WET [2010/05/06 18:11:29 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.16 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.58 in chips) +Seat 7: Player19 ($1.96 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks 4h] +Player9 has timed out +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player5: folds +Player22: raises $0.02 to $0.04 +Player19: folds +Player3: folds +Uncalled bet ($0.02) returned to Player22 +Player22 collected $0.05 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 (button) collected ($0.05) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #19953154592: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:12:06 WET [2010/05/06 18:12:06 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.16 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.60 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jd Th] +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: checks +*** FLOP *** [4d 7d Kh] +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [4d 7d Kh] [3c] +Player9: checks +Player24: checks +Player17: bets $0.06 +Player9: folds +Player24: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.07 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [4d 7d Kh 3c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Turn +Seat 4: Player17 collected ($0.07) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded on the Turn + + + +PokerStars Game #74551611118: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:13:30 WET [2010/05/06 18:13:30 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.74 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.21 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.58 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9s 3d] +Player14: folds +Player24: folds +Player17: folds +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.01 +Player18: checks +*** FLOP *** [3c Ac Kc] +Player9: bets $0.02 +Player18: calls $0.02 +*** TURN *** [3c Ac Kc] [Qc] +Player9: bets $0.04 +Player18: folds +Uncalled bet ($0.04) returned to Player9 +Player9 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [3c Ac Kc Qc] +Seat 1: Player18 (big blind) folded on the Turn +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) collected ($0.08) + + + +PokerStars Game #64594322241: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:14:39 WET [2010/05/06 18:14:39 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.70 in chips) +Seat 2: Player14 ($1.61 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.21 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.61 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.62 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6h 5c] +Player24: folds +Player17: calls $0.02 +Player5: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: checks +*** FLOP *** [4c 7c 6s] +Player14: checks +Player17: bets $0.08 +Player22: folds +Player9: calls $0.08 +Player14: folds +*** TURN *** [4c 7c 6s] [Th] +Player17: bets $0.32 +Player9: folds +Uncalled bet ($0.32) returned to Player17 +Player17 collected $0.25 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.25 | Rake $0 +Board [4c 7c 6s Th] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.25) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded on the Turn + + + +PokerStars Game #20220303142: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:16:08 WET [2010/05/06 18:16:08 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.59 in chips) +Seat 3: Player24 ($1.88 in chips) +Seat 4: Player17 ($3.36 in chips) +Seat 5: Player5 ($2.87 in chips) +Seat 6: Player22 ($2.59 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.52 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [7c Tc] +Player17: calls $0.02 +Player5: raises $0.10 to $0.12 +Player22: calls $0.12 +Player19: folds +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.10 +*** FLOP *** [Jh 6c 5d] +Player17: checks +Player5: bets $0.29 +Player22: folds +Player17: calls $0.29 +*** TURN *** [Jh 6c 5d] [9d] +Player17: bets $0.32 +Player5: folds +Uncalled bet ($0.32) returned to Player17 +Player17 collected $0.97 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.97 | Rake $0 +Board [Jh 6c 5d 9d] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 collected ($0.97) +Seat 5: Player5 folded on the Turn +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #15797308302: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:17:04 WET [2010/05/06 18:17:04 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.86 in chips) +Seat 4: Player17 ($3.92 in chips) +Seat 5: Player5 ($2.46 in chips) +Seat 6: Player22 ($2.47 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.52 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 3s] +Player5: folds +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.01 +Player17: checks +*** FLOP *** [2s Jd Qd] +Player24: checks +Player17: folds +Player9: checks +*** TURN *** [2s Jd Qd] [7h] +Player24: bets $0.06 +Player9: folds +Uncalled bet ($0.06) returned to Player24 +Player24 collected $0.06 from pot +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [2s Jd Qd 7h] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) collected ($0.06) +Seat 4: Player17 (big blind) folded on the Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #22202259791: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:18:12 WET [2010/05/06 18:18:12 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.90 in chips) +Seat 5: Player5 ($2.46 in chips) +Seat 6: Player22 ($2.47 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.50 in chips) +Player17: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [As 3c] +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player5: checks +*** FLOP *** [6s Js 9d] +Player5: checks +Player22: bets $0.04 +Player9: folds +Player5: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.07 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [6s Js 9d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player22 collected ($0.07) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #23635931413: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:19:45 WET [2010/05/06 18:19:45 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.89 in chips) +Seat 5: Player5 ($2.44 in chips) +Seat 6: Player22 ($2.52 in chips) +Seat 7: Player19 ($1.95 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.48 in chips) +Player5: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d 6h] +Player19: raises $0.04 to $0.06 +Player3: folds +Player9: folds +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.06 +Player5: folds +Player22: folds +*** FLOP *** [5c 4h 3h] +Player19: bets $0.08 +Player17: calls $0.08 +*** TURN *** [5c 4h 3h] [5s] +Player19: bets $0.10 +Player17: calls $0.10 +*** RIVER *** [5c 4h 3h 5s] [9s] +Player19: bets $0.14 +Player17: folds +Uncalled bet ($0.14) returned to Player19 +Player19 collected $0.51 from pot +Player19: doesn't show hand +*** SUMMARY *** +Total pot $0.51 | Rake $0 +Board [5c 4h 3h 5s 9s] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the River +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 collected ($0.51) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #16301246877: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:20:42 WET [2010/05/06 18:20:42 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($1.90 in chips) +Seat 4: Player17 ($3.65 in chips) +Seat 5: Player5 ($2.43 in chips) +Seat 6: Player22 ($2.50 in chips) +Seat 7: Player19 ($2.22 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.48 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2s 4c] +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player5: folds +Player22: folds +Player19: checks +*** FLOP *** [Jh 9h Ac] +Player19: checks +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [Jh 9h Ac] [2d] +Player19: checks +Player9: bets $0.02 +Player24: calls $0.02 +Player17: calls $0.02 +Player19: folds +*** RIVER *** [Jh 9h Ac 2d] [Kd] +Player9: bets $0.02 +Player24: calls $0.02 +Player17: folds +*** SHOW DOWN *** +Player9: shows [Qc Qd] (a pair of Queens) +Player24: shows [7d Ad] (a pair of Aces) +Player24 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [Jh 9h Ac 2d Kd] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 showed [7d Ad] and won ($0.19) with a pair of Aces +Seat 4: Player17 folded on the River +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Qc Qd] and lost with a pair of Queens + + + +PokerStars Game #21693130641: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:22:02 WET [2010/05/06 18:22:02 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.61 in chips) +Seat 5: Player5 ($2.43 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.20 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.42 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd 9d] +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player5: calls $0.06 +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.04 +*** FLOP *** [Tc Ts 8s] +Player9: checks +Player17: checks +Player5: checks +*** TURN *** [Tc Ts 8s] [Jh] +Player9: checks +Player17: bets $0.12 +Player5: folds +Player9: folds +Uncalled bet ($0.12) returned to Player17 +Player17 collected $0.21 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [Tc Ts 8s Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.21) +Seat 5: Player5 folded on the Turn +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #80731798515: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:16 WET [2010/05/06 18:23:16 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.76 in chips) +Seat 5: Player5 ($2.37 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.36 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ah Ad] +Player18: folds +Player14: folds +Player24: folds +Player17: raises $0.06 to $0.08 +Player5: folds +Player5 leaves the table +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.06) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #12041521491: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:23:53 WET [2010/05/06 18:23:53 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.69 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.79 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.34 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8h 8s] +Player14: folds +Player24: folds +Player17: calls $0.02 +Player22: folds +Player19: folds +Player3: calls $0.02 +Player9: calls $0.01 +Player18: checks +*** FLOP *** [Ts 5c 5h] +Player0 joins the table at seat #5 +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** TURN *** [Ts 5c 5h] [9h] +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** RIVER *** [Ts 5c 5h 9h] [2d] +Player9: checks +Player18: checks +Player17: checks +Player3: checks +*** SHOW DOWN *** +Player9: shows [8d Qh] (a pair of Fives) +Player18: mucks hand +Player17: shows [8h 8s] (two pair, Eights and Fives) +Player3: mucks hand +Player17 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [Ts 5c 5h 9h 2d] +Seat 1: Player18 (big blind) mucked [Js 3h] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [8h 8s] and won ($0.08) with two pair, Eights and Fives +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) mucked [Ac 3c] +Seat 9: Player9 (small blind) showed [8d Qh] and lost with a pair of Fives + + + +PokerStars Game #32267943121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:25:21 WET [2010/05/06 18:25:21 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.67 in chips) +Seat 2: Player14 ($1.58 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.60 in chips) +Seat 6: Player22 ($2.49 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.32 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9h Kc] +Player24: folds +Player17: folds +Player0: raises $0.04 to $0.06 +Player22: calls $0.06 +Player19: folds +Player3: folds +Player9: calls $0.06 +Player18: folds +Player14: calls $0.04 +*** FLOP *** [As 4s Js] +Player14: checks +Player0: checks +Player22: checks +Player9: bets $0.10 +Player14: folds +Player0: folds +Player22: calls $0.10 +*** TURN *** [As 4s Js] [4c] +Player22: checks +Player9: bets $0.16 +Player22: calls $0.16 +*** RIVER *** [As 4s Js 4c] [Jc] +Player22: checks +Player9: bets $0.16 +Player22: raises $0.36 to $0.52 +Player9: calls $0.36 +*** SHOW DOWN *** +Player22: shows [Ks Qd] (two pair, Jacks and Fours) +Player9: shows [Ad 8h] (two pair, Aces and Jacks) +Player9 collected $1.76 from pot +*** SUMMARY *** +Total pot $1.81 | Rake $0.05 +Board [As 4s Js 4c Jc] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 folded on the Flop +Seat 6: Player22 showed [Ks Qd] and lost with two pair, Jacks and Fours +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) showed [Ad 8h] and won ($1.76) with two pair, Aces and Jacks + + + +PokerStars Game #21796253433: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:01 WET [2010/05/06 18:27:01 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.52 in chips) +Seat 3: Player24 ($2.03 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.54 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.19 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.24 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [6h 8d] +Player17: folds +Player0: raises $0.02 to $0.04 +Player22: raises $0.04 to $0.08 +Player19: calls $0.08 +Player3: folds +Player9: calls $0.08 +Player18: folds +Player14: folds +Player24: folds +Player0: calls $0.04 +*** FLOP *** [4d Td 4s] +Player0: bets $0.22 +Player22: folds +Player19: folds +Player9: folds +Uncalled bet ($0.22) returned to Player0 +Player0 collected $0.35 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot $0.35 | Rake $0 +Board [4d Td 4s] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 collected ($0.35) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #20106934129: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:27:44 WET [2010/05/06 18:27:44 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.51 in chips) +Seat 3: Player24 ($2.01 in chips) +Seat 4: Player17 ($3.85 in chips) +Seat 5: Player0 ($1.81 in chips) +Seat 6: Player22 ($1.57 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.16 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d Jd] +Player0: folds +Player22: calls $0.02 +Player19: folds +Player3: calls $0.02 +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: calls $0.01 +Player17: raises $0.02 to $0.04 +Player22: calls $0.02 +Player3: calls $0.02 +Player9: calls $0.02 +Player24: calls $0.02 +*** FLOP *** [6d 9s 3d] +Player24: checks +Player17: bets $0.02 +Player22: folds +Player3: folds +Player9: calls $0.02 +Player24: calls $0.02 +*** TURN *** [6d 9s 3d] [3c] +Player24: checks +Player17: bets $0.02 +Player9: calls $0.02 +Player24: folds +*** RIVER *** [6d 9s 3d 3c] [5c] +Player17: bets $0.02 +Player9: calls $0.02 +*** SHOW DOWN *** +Player17: shows [8d Jd] (a pair of Threes) +Player9: shows [Ts 6s] (two pair, Sixes and Threes) +Player9 collected $0.34 from pot +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [6d 9s 3d 3c 5c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 (button) folded before Flop (didn't bet) +Seat 3: Player24 (small blind) folded on the Turn +Seat 4: Player17 (big blind) showed [8d Jd] and lost with a pair of Threes +Seat 5: Player0 folded before Flop (didn't bet) +Seat 6: Player22 folded on the Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded on the Flop +Seat 9: Player9 showed [Ts 6s] and won ($0.34) with two pair, Sixes and Threes + + + +PokerStars Game #69512225343: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:28:40 WET [2010/05/06 18:28:40 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.51 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.75 in chips) +Seat 5: Player0 ($1.81 in chips) +Seat 6: Player22 ($1.53 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.40 in chips) +Player17: posts small blind $0.01 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5c As] +Player22: folds +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: calls $0.02 +Player24: folds +Player17: calls $0.01 +Player0: checks +*** FLOP *** [3s 2c 5s] +Player17: checks +Player0: bets $0.04 +Player9: calls $0.04 +Player14: folds +Player17: raises $0.22 to $0.26 +Player0: raises $0.22 to $0.48 +Player9: folds +Player17: calls $0.22 +*** TURN *** [3s 2c 5s] [2h] +Player17: bets $0.36 +Player0: calls $0.36 +*** RIVER *** [3s 2c 5s 2h] [3d] +Player17: bets $0.90 +Player0: raises $0.05 to $0.95 and is all-in +Player17: calls $0.05 +*** SHOW DOWN *** +Player0: shows [5d 3h] (a full house, Threes full of Fives) +Player17: shows [5c As] (two pair, Fives and Threes) +Player0 collected $3.55 from pot +*** SUMMARY *** +Total pot $3.70 | Rake $0.15 +Board [3s 2c 5s 2h 3d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded on the Flop +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [5c As] and lost with two pair, Fives and Threes +Seat 5: Player0 (big blind) showed [5d 3h] and won ($3.55) with a full house, Threes full of Fives +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #69681723765: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:30:11 WET [2010/05/06 18:30:11 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($1.94 in chips) +Seat 5: Player0 ($3.55 in chips) +Seat 6: Player22 ($1.53 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.34 in chips) +Player0: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kc 9d] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player0: calls $0.01 +Player22: checks +*** FLOP *** [6h 2s Ad] +Player9 said, "jajajaja tonto" +Player0: checks +Player22: bets $0.02 +Player9: calls $0.02 +Player0: calls $0.02 +*** TURN *** [6h 2s Ad] [9s] +Player0: checks +Player22: checks +Player9: checks +*** RIVER *** [6h 2s Ad 9s] [Jh] +Player0: checks +Player22: bets $0.06 +Player9: calls $0.06 +Player0: folds +*** SHOW DOWN *** +Player22: shows [As 5d] (a pair of Aces) +Player9: mucks hand +Player22 collected $0.24 from pot +*** SUMMARY *** +Total pot $0.24 | Rake $0 +Board [6h 2s Ad 9s Jh] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player0 (small blind) folded on the River +Seat 6: Player22 (big blind) showed [As 5d] and won ($0.24) with a pair of Aces +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 mucked [Ts Qs] + + + +PokerStars Game #30142164314: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:00 WET [2010/05/06 18:31:00 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.54 in chips) +Seat 5: Player0 ($3.51 in chips) +Seat 6: Player22 ($1.67 in chips) +Seat 7: Player19 ($2.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.24 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 6c] +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: folds +Player17: calls $0.02 +Player0: calls $0.02 +Player22: calls $0.01 +Player19: checks +*** FLOP *** [Jh 7d 8h] +Player22: checks +Player19: checks +Player9: checks +Player17: bets $0.06 +Player0: calls $0.06 +Player22: folds +Player19: folds +Player9: calls $0.06 +*** TURN *** [Jh 7d 8h] [Qc] +Player9: checks +Player17: checks +Player0: checks +*** RIVER *** [Jh 7d 8h Qc] [5c] +Player9: bets $0.04 +Player17: folds +Player0: calls $0.04 +*** SHOW DOWN *** +Player9: shows [Ah Kh] (high card Ace) +Player0: shows [As 8s] (a pair of Eights) +Player0 collected $0.36 from pot +*** SUMMARY *** +Total pot $0.36 | Rake $0 +Board [Jh 7d 8h Qc 5c] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the River +Seat 5: Player0 (button) showed [As 8s] and won ($0.36) with a pair of Eights +Seat 6: Player22 (small blind) folded on the Flop +Seat 7: Player19 (big blind) folded on the Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 showed [Ah Kh] and lost with high card Ace + + + +PokerStars Game #10018305383: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:31:54 WET [2010/05/06 18:31:54 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.95 in chips) +Seat 4: Player17 ($3.46 in chips) +Seat 5: Player0 ($3.75 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.09 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.12 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kh 2h] +Player9: folds +Player18: folds +Player14: folds +Player24: calls $0.02 +Player17: calls $0.02 +Player0: raises $0.04 to $0.06 +Player22: folds +Player19: folds +Player3: folds +Player24: calls $0.04 +Player17: calls $0.04 +*** FLOP *** [2s 2d Kc] +Player24: checks +Player17: bets $0.06 +Player0: calls $0.06 +Player24: folds +*** TURN *** [2s 2d Kc] [7h] +Player17: bets $0.20 +Player0: calls $0.20 +*** RIVER *** [2s 2d Kc 7h] [5s] +Player17: bets $3.04 +Player0 said, "lol" +Player0 said, "such bs" +Player0: folds +Uncalled bet ($3.04) returned to Player17 +Player17 collected $0.73 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.73 | Rake $0 +Board [2s 2d Kc 7h 5s] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Flop +Seat 4: Player17 collected ($0.73) +Seat 5: Player0 folded on the River +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player19 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #45323247626: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:01 WET [2010/05/06 18:33:01 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.87 in chips) +Seat 5: Player0 ($3.43 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.08 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.12 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2c Ad] +Player18: folds +Player14: folds +Player24: folds +Player17: folds +Player0: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player9: checks +*** FLOP *** [2h Kd 8d] +Player9: bets $0.02 +Player19: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.05 from pot +Player0 leaves the table +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Board [2h Kd 8d] +Seat 1: Player18 folded before Flop (didn't bet) +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player0 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded on the Flop +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) collected ($0.05) + + + +PokerStars Game #56232290155: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:33:27 WET [2010/05/06 18:33:27 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player18 ($0.66 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.87 in chips) +Seat 6: Player22 ($1.65 in chips) +Seat 7: Player19 ($2.06 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.15 in chips) +Player9: posts small blind $0.01 +Player18: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4h Ah] +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player22: calls $0.06 +Player19: calls $0.06 +Player3: folds +Player9: folds +Player18: folds +*** FLOP *** [Qs 5c Qc] +Player17: checks +Player22: bets $0.09 +Player19: folds +Player17: folds +Uncalled bet ($0.09) returned to Player22 +Player22 collected $0.21 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [Qs 5c Qc] +Seat 1: Player18 (big blind) folded before Flop +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 6: Player22 collected ($0.21) +Seat 7: Player19 folded on the Flop +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded before Flop + + + +PokerStars Game #32171206783: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:34:30 WET [2010/05/06 18:34:30 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player18 ($0.64 in chips) +Seat 2: Player14 ($1.49 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.81 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.14 in chips) +Player18: posts small blind $0.01 +Player14: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kd 6c] +Player24: folds +Player17: raises $0.06 to $0.08 +Player22: folds +Player19: calls $0.08 +Player3: folds +Player9: calls $0.08 +Player18: folds +Player14: folds +*** FLOP *** [8s 3d 7h] +Player17: bets $0.18 +Player15 joins the table at seat #5 +Player19: raises $0.18 to $0.36 +Player9: folds +Player17: folds +Uncalled bet ($0.18) returned to Player19 +Player19 collected $0.63 from pot +Player19: doesn't show hand +*** SUMMARY *** +Total pot $0.63 | Rake $0 +Board [8s 3d 7h] +Seat 1: Player18 (small blind) folded before Flop +Seat 2: Player14 (big blind) folded before Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 collected ($0.63) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded on the Flop + + + +PokerStars Game #58591999729: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:35:54 WET [2010/05/06 18:35:54 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player18 ($0.63 in chips) +Seat 2: Player14 ($1.47 in chips) +Seat 3: Player24 ($1.89 in chips) +Seat 4: Player17 ($3.55 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.37 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.06 in chips) +Player14: posts small blind $0.01 +Player24: posts big blind $0.02 +Player15: sits out +*** HOLE CARDS *** +Dealt to Player17 [5d Ks] +Player17: folds +Player22: folds +Player19: calls $0.02 +Player3: folds +Player9: calls $0.02 +Player18: folds +Player14: folds +Player24: checks +*** FLOP *** [3h Kh 2c] +Player24: checks +Player19: bets $0.02 +Player9 said, "maumont paga botes que tonto eres" +Player9: calls $0.02 +Player18 leaves the table +Player24: folds +*** TURN *** [3h Kh 2c] [Jd] +Player19: checks +Player9: bets $0.04 +Player19: folds +Uncalled bet ($0.04) returned to Player9 +Player9 collected $0.11 from pot +*** SUMMARY *** +Total pot $0.11 | Rake $0 +Board [3h Kh 2c Jd] +Seat 1: Player18 (button) folded before Flop (didn't bet) +Seat 2: Player14 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 collected ($0.11) + + + +PokerStars Game #19663159832: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:37:19 WET [2010/05/06 18:37:19 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 2: Player14 ($1.46 in chips) +Seat 3: Player24 ($1.87 in chips) +Seat 4: Player17 ($3.55 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +Player15: sits out +*** HOLE CARDS *** +Dealt to Player17 [8s 2h] +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Player14: calls $0.02 +Player24: calls $0.01 +Player17: raises $0.12 to $0.14 +Player14: calls $0.12 +Player24: folds +*** FLOP *** [3h As 7h] +Player17: checks +Player14: bets $0.20 +Player17: folds +Uncalled bet ($0.20) returned to Player14 +Player14 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [3h As 7h] +Seat 2: Player14 (button) collected ($0.30) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #32364377323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:08 WET [2010/05/06 18:38:08 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.85 in chips) +Seat 4: Player17 ($3.41 in chips) +Seat 5: Player15 ($1 in chips) +Seat 6: Player22 ($1.80 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player17: posts small blind $0.01 +Player15: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad Qh] +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: folds +Player14: folds +Player24: folds +Player17: raises $0.92 to $0.94 +Player15: folds +Player22: folds +Uncalled bet ($0.92) returned to Player17 +Player17 collected $0.06 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) collected ($0.06) +Seat 5: Player15 (big blind) folded before Flop +Seat 6: Player22 folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #23073312602: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:38:35 WET [2010/05/06 18:38:35 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.85 in chips) +Seat 4: Player17 ($3.45 in chips) +Seat 5: Player15 ($0.98 in chips) +Seat 6: Player22 ($1.78 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.13 in chips) +Player15: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [3h Qh] +Player19: folds +Player3: folds +Player9: calls $0.02 +Player14: folds +Player24: calls $0.02 +Player17: raises $0.04 to $0.06 +Player15: folds +Player22: folds +Player9: calls $0.04 +Player24: calls $0.04 +*** FLOP *** [3c 4s 7h] +Player9: checks +Player24: checks +Player17: checks +*** TURN *** [3c 4s 7h] [3s] +Player9: checks +Player24: checks +Player17: bets $0.14 +Player9: folds +Player24: folds +Uncalled bet ($0.14) returned to Player17 +Player17 collected $0.21 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.21 | Rake $0 +Board [3c 4s 7h 3s] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Turn +Seat 4: Player17 (button) collected ($0.21) +Seat 5: Player15 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #89372402099: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:40:14 WET [2010/05/06 18:40:14 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.79 in chips) +Seat 4: Player17 ($3.60 in chips) +Seat 5: Player15 ($0.97 in chips) +Seat 6: Player22 ($1.76 in chips) +Seat 7: Player19 ($2.33 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.07 in chips) +Player22: posts small blind $0.01 +Player19: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Td 8d] +Player3: folds +Player9: calls $0.02 +Player14: folds +Player24: calls $0.02 +Player17: raises $0.16 to $0.18 +Player15: folds +Player22: folds +Player19: folds +Player9: calls $0.16 +Player24: calls $0.16 +*** FLOP *** [2d 9s Ts] +Player9: checks +Player24: checks +Player17: bets $0.42 +Player9: folds +Player24: folds +Uncalled bet ($0.42) returned to Player17 +Player17 collected $0.57 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.57 | Rake $0 +Board [2d 9s Ts] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded on the Flop +Seat 4: Player17 collected ($0.57) +Seat 5: Player15 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player19 (big blind) folded before Flop +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #27215384828: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:41:23 WET [2010/05/06 18:41:23 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($3.99 in chips) +Seat 5: Player15 ($0.97 in chips) +Seat 6: Player22 ($1.75 in chips) +Seat 7: Player19 ($2.31 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($2.89 in chips) +Player19: posts small blind $0.01 +Player3: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5s 7d] +Player20 joins the table at seat #1 +Player9: calls $0.02 +Player14: folds +Player24: folds +Player17: folds +Player15: folds +Player15 leaves the table +Player22: calls $0.02 +Player19: raises $0.04 to $0.06 +Player3: folds +Player9: calls $0.04 +Player22: calls $0.04 +*** FLOP *** [8d Jh 7c] +Player19: bets $0.10 +Player12 joins the table at seat #5 +Player9: calls $0.10 +Player22: calls $0.10 +*** TURN *** [8d Jh 7c] [5c] +Player19: bets $0.30 +Player9: calls $0.30 +Player22: folds +*** RIVER *** [8d Jh 7c 5c] [Qc] +Player19: bets $0.22 +Player9: raises $2.21 to $2.43 and is all-in +Player19 has timed out +Player19: folds +Uncalled bet ($2.21) returned to Player9 +Player9 collected $1.49 from pot +*** SUMMARY *** +Total pot $1.54 | Rake $0.05 +Board [8d Jh 7c 5c Qc] +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player15 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded on the Turn +Seat 7: Player19 (small blind) folded on the River +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player9 collected ($1.49) + + + +PokerStars Game #32706209671: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:15 WET [2010/05/06 18:43:15 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($3.99 in chips) +Seat 5: Player12 ($1 in chips) +Seat 6: Player22 ($1.59 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.70 in chips) +Player3: posts small blind $0.01 +Player9: posts big blind $0.02 +Player20: sits out +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9c 2c] +Player14: folds +Player24: folds +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player19: folds +Player3: folds +Player9: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.07 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.07) +Seat 5: Player12 folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 (button) folded before Flop (didn't bet) +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #99425634223: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:43:32 WET [2010/05/06 18:43:32 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5 in chips) +Seat 2: Player14 ($1.62 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($4.04 in chips) +Seat 5: Player12 ($0.98 in chips) +Seat 6: Player22 ($1.59 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.68 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9d Tc] +Player14: folds +Player24: folds +Player14 leaves the table +Player17: folds +Player12: folds +Player22: calls $0.02 +Player19: folds +Player3: folds +Player9: calls $0.01 +Player20: checks +*** FLOP *** [7d 4h Qs] +Player9: checks +Player20: checks +Player22: checks +*** TURN *** [7d 4h Qs] [3c] +Player9: bets $0.02 +Player20: calls $0.02 +Player22: calls $0.02 +*** RIVER *** [7d 4h Qs 3c] [Kd] +Player9: bets $0.04 +Player20: folds +Player22: raises $0.05 to $0.09 +Player9: calls $0.05 +*** SHOW DOWN *** +Player22: shows [Ts Kh] (a pair of Kings) +Player9: mucks hand +Player22 collected $0.30 from pot +*** SUMMARY *** +Total pot $0.30 | Rake $0 +Board [7d 4h Qs 3c Kd] +Seat 1: Player20 (big blind) folded on the River +Seat 2: Player14 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 showed [Ts Kh] and won ($0.30) with a pair of Kings +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) mucked [Jh Qd] + + + +PokerStars Game #23826224249: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:44:18 WET [2010/05/06 18:44:18 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($4.96 in chips) +Seat 3: Player24 ($1.61 in chips) +Seat 4: Player17 ($4.04 in chips) +Seat 5: Player12 ($0.98 in chips) +Seat 6: Player22 ($1.76 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.55 in chips) +Player20: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [2h 7h] +Player17: raises $0.04 to $0.06 +Player12: calls $0.06 +Player22: calls $0.06 +Player19: folds +Player3: folds +Player9: calls $0.06 +Player2 joins the table at seat #2 +Player20: folds +Player24: calls $0.04 +*** FLOP *** [2d 4s 5d] +Player24: checks +Player17: checks +Player12: checks +Player22: bets $0.06 +Player9: calls $0.06 +Player24: folds +Player17: calls $0.06 +Player12: folds +*** TURN *** [2d 4s 5d] [Kc] +Player17: checks +Player22: checks +Player9: checks +*** RIVER *** [2d 4s 5d Kc] [Ks] +Player17: checks +Player22: checks +Player9: bets $0.40 +Player17: folds +Player22: folds +Uncalled bet ($0.40) returned to Player9 +Player9 collected $0.49 from pot +*** SUMMARY *** +Total pot $0.49 | Rake $0 +Board [2d 4s 5d Kc Ks] +Seat 1: Player20 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded on the Flop +Seat 4: Player17 folded on the River +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded on the River +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 (button) collected ($0.49) + + + +PokerStars Game #28582235522: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:45:42 WET [2010/05/06 18:45:42 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($4.95 in chips) +Seat 3: Player24 ($1.55 in chips) +Seat 4: Player17 ($3.92 in chips) +Seat 5: Player12 ($0.92 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 7: Player19 ($1.63 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.92 in chips) +Player2 will be allowed to play after the button +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8h Qd] +Player12: calls $0.02 +Player22: folds +Player19: folds +Player19 leaves the table +Player3: folds +Player9: calls $0.02 +Player20: raises $0.10 to $0.12 +Player24: folds +Player17: folds +Player12: calls $0.10 +Player9: folds +*** FLOP *** [3h Js Td] +Player12: checks +Player20: bets $0.20 +Player12: folds +Uncalled bet ($0.20) returned to Player20 +Player20 collected $0.29 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.29 | Rake $0 +Board [3h Js Td] +Seat 1: Player20 (button) collected ($0.29) +Seat 3: Player24 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded before Flop +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player19 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop + + + +PokerStars Game #11849119171: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:22 WET [2010/05/06 18:46:22 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.12 in chips) +Seat 2: Player2 ($1 in chips) +Seat 3: Player24 ($1.54 in chips) +Seat 4: Player17 ($3.90 in chips) +Seat 5: Player12 ($0.80 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.90 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jh Ah] +Player22: folds +Player3: folds +Player9: calls $0.02 +Player20: folds +Player2: checks +Player8 joins the table at seat #7 +Player24: calls $0.02 +Player17: raises $0.08 to $0.10 +Player12: folds +Player9: folds +Player2: folds +Player24: folds +Uncalled bet ($0.08) returned to Player17 +Player17 collected $0.10 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.10 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player2 folded before Flop +Seat 3: Player24 (button) folded before Flop +Seat 4: Player17 (small blind) collected ($0.10) +Seat 5: Player12 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop + + + +PokerStars Game #71932031318: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:46:53 WET [2010/05/06 18:46:53 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.12 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.78 in chips) +Seat 6: Player22 ($1.64 in chips) +Seat 7: Player8 ($1.11 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.88 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player8: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Jc 2h] +Player8: checks +Player3: folds +Player9: calls $0.02 +Player20: calls $0.02 +Player2: folds +Player24: folds +Player17: folds +Player12: calls $0.01 +Player22: checks +*** FLOP *** [Jh Tc 2d] +Player12: checks +Player22: bets $0.02 +Player8: calls $0.02 +Player9: folds +Player20: calls $0.02 +Player12: calls $0.02 +*** TURN *** [Jh Tc 2d] [Js] +Player12: checks +Player22: bets $0.08 +Player8: folds +Player20: folds +Player12: folds +Uncalled bet ($0.08) returned to Player22 +Player22 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Jh Tc 2d Js] +Seat 1: Player20 folded on the Turn +Seat 2: Player2 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded on the Turn +Seat 6: Player22 (big blind) collected ($0.18) +Seat 7: Player8 folded on the Turn +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #24227136121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:47:50 WET [2010/05/06 18:47:50 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.08 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.74 in chips) +Seat 6: Player22 ($1.78 in chips) +Seat 7: Player8 ($1.07 in chips) +Seat 8: Player3 ($3 in chips) +Seat 9: Player9 ($3.86 in chips) +Player22: posts small blind $0.01 +Player8: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kc 7s] +Player3: folds +Player9: folds +Player20: calls $0.02 +Player2: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player8: checks +*** FLOP *** [Th 5d 7h] +Player8: checks +Player20: checks +Player12: checks +*** TURN *** [Th 5d 7h] [6s] +Player8: checks +Player20: checks +Player12: checks +*** RIVER *** [Th 5d 7h 6s] [8s] +Player8: checks +Player20: bets $0.04 +Player12: folds +Player8: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.07 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.07 | Rake $0 +Board [Th 5d 7h 6s 8s] +Seat 1: Player20 collected ($0.07) +Seat 2: Player2 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded on the River +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player8 (big blind) folded on the River +Seat 8: Player3 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #31395250833: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:48:42 WET [2010/05/06 18:48:42 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.13 in chips) +Seat 2: Player2 ($0.98 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.72 in chips) +Seat 6: Player22 ($1.77 in chips) +Seat 7: Player8 ($1.05 in chips) +Seat 9: Player9 ($3.86 in chips) +Player8: posts small blind $0.01 +Player3: is sitting out +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ah 2c] +Player20: folds +Player2: calls $0.02 +Player3 leaves the table +Player24: folds +Player17: folds +Player12: raises $0.06 to $0.08 +Player22: calls $0.08 +Player8: calls $0.07 +Player9: folds +Player2: calls $0.06 +*** FLOP *** [6h Js 3h] +Player8: checks +Player2: bets $0.90 and is all-in +Player12: folds +Player22: folds +Player8: calls $0.90 +*** TURN *** [6h Js 3h] [5h] +*** RIVER *** [6h Js 3h 5h] [8d] +*** SHOW DOWN *** +Player8: shows [6s 9s] (a pair of Sixes) +Player2: shows [Qc Jd] (a pair of Jacks) +Player2 collected $2.04 from pot +*** SUMMARY *** +Total pot $2.14 | Rake $0.10 +Board [6h Js 3h 5h 8d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player2 showed [Qc Jd] and won ($2.04) with a pair of Jacks +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Flop +Seat 6: Player22 (button) folded on the Flop +Seat 7: Player8 (small blind) showed [6s 9s] and lost with a pair of Sixes +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #12179306192: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:49:27 WET [2010/05/06 18:49:27 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.13 in chips) +Seat 2: Player2 ($2.04 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.64 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($3.84 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks 9d] +Player2: raises $0.06 to $0.08 +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Player8: folds +Player9: calls $0.07 +Player20: folds +*** FLOP *** [Js Tc 8s] +Player9: bets $0.04 +Player2: raises $0.12 to $0.16 +Player9: calls $0.12 +*** TURN *** [Js Tc 8s] [Ad] +Player9: bets $0.10 +Player2: raises $1.70 to $1.80 and is all-in +Player9: folds +Uncalled bet ($1.70) returned to Player2 +Player2 collected $0.70 from pot +*** SUMMARY *** +Total pot $0.70 | Rake $0 +Board [Js Tc 8s Ad] +Seat 1: Player20 (big blind) folded before Flop +Seat 2: Player2 collected ($0.70) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded on the Turn + + + +PokerStars Game #51091236980: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:50:39 WET [2010/05/06 18:50:39 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.11 in chips) +Seat 2: Player2 ($2.40 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.98 in chips) +Seat 5: Player12 ($0.64 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($3.50 in chips) +Player20: posts small blind $0.01 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ad 4s] +Player24: folds +Player17: raises $0.04 to $0.06 +Player12: calls $0.06 +Player22: folds +Player8: folds +Player9: calls $0.06 +Player20: folds +Player2: folds +*** FLOP *** [As 6c 5c] +Player17: bets $0.08 +Player12: calls $0.08 +Player9: raises $0.08 to $0.16 +Player17: folds +Player12: raises $0.42 to $0.58 and is all-in +Player9: calls $0.42 +*** TURN *** [As 6c 5c] [Qd] +*** RIVER *** [As 6c 5c Qd] [9d] +*** SHOW DOWN *** +Player12: shows [Ac Tc] (a pair of Aces) +Player9: mucks hand +Player12 collected $1.40 from pot +*** SUMMARY *** +Total pot $1.45 | Rake $0.05 +Board [As 6c 5c Qd 9d] +Seat 1: Player20 (small blind) folded before Flop +Seat 2: Player2 (big blind) folded before Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player12 showed [Ac Tc] and won ($1.40) with a pair of Aces +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 (button) mucked [8d Ah] + + + +PokerStars Game #27086240062: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:51:46 WET [2010/05/06 18:51:46 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.10 in chips) +Seat 2: Player2 ($2.38 in chips) +Seat 3: Player24 ($1.52 in chips) +Seat 4: Player17 ($3.84 in chips) +Seat 5: Player12 ($1.40 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($2.86 in chips) +Player2: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5c 5d] +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player8: folds +Player9: folds +Player20: calls $0.06 +Player2: folds +Player24: folds +*** FLOP *** [7d 4s 8h] +Player2 leaves the table +Player17: checks +Player20: checks +*** TURN *** [7d 4s 8h] [Th] +Player17: checks +Player13 joins the table at seat #8 +Player20: bets $0.08 +Player17: raises $0.12 to $0.20 +Player20: calls $0.12 +*** RIVER *** [7d 4s 8h Th] [4h] +Player17: checks +Player20: checks +*** SHOW DOWN *** +Player17: shows [5c 5d] (two pair, Fives and Fours) +Player20: shows [Jc Tc] (two pair, Tens and Fours) +Player20 collected $0.55 from pot +*** SUMMARY *** +Total pot $0.55 | Rake $0 +Board [7d 4s 8h Th 4h] +Seat 1: Player20 (button) showed [Jc Tc] and won ($0.55) with two pair, Tens and Fours +Seat 2: Player2 (small blind) folded before Flop +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 showed [5c 5d] and lost with two pair, Fives and Fours +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #25223712121: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:52:23 WET [2010/05/06 18:52:23 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 3: Player24 ($1.50 in chips) +Seat 4: Player17 ($3.58 in chips) +Seat 5: Player12 ($1.40 in chips) +Seat 6: Player22 ($1.69 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 9: Player9 ($2.86 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player13: sits out +*** HOLE CARDS *** +Dealt to Player17 [Kd 7d] +Player22: calls $0.02 +Player8: folds +Player10 joins the table at seat #2 +Player9: folds +Player20: folds +Player24: calls $0.02 +Player17: calls $0.01 +Player12: checks +*** FLOP *** [6s 9d 6d] +Player17: bets $0.08 +Player12: folds +Player22: calls $0.08 +Player24: folds +*** TURN *** [6s 9d 6d] [2c] +Player17: checks +Player22: checks +*** RIVER *** [6s 9d 6d 2c] [8h] +Player17: checks +Player22: checks +*** SHOW DOWN *** +Player17: shows [Kd 7d] (a pair of Sixes) +Player22: shows [5h 5s] (two pair, Sixes and Fives) +Player22 collected $0.24 from pot +*** SUMMARY *** +Total pot $0.24 | Rake $0 +Board [6s 9d 6d 2c 8h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded on the Flop +Seat 4: Player17 (small blind) showed [Kd 7d] and lost with a pair of Sixes +Seat 5: Player12 (big blind) folded on the Flop +Seat 6: Player22 showed [5h 5s] and won ($0.24) with two pair, Sixes and Fives +Seat 7: Player8 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #73402790620: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:53:15 WET [2010/05/06 18:53:15 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.48 in chips) +Seat 5: Player12 ($1.38 in chips) +Seat 6: Player22 ($1.83 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 8: Player13 ($5 in chips) +Seat 9: Player9 ($2.86 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player13: posts big blind $0.02 +Player10: sits out +*** HOLE CARDS *** +Dealt to Player17 [5d 7c] +Player8: folds +Player13: checks +Player9: folds +Player20: folds +Player24: folds +Player17: calls $0.02 +Player12: calls $0.01 +Player22: checks +*** FLOP *** [7d Kd Jh] +Player12: checks +Player22: checks +Player13: checks +Player17: checks +*** TURN *** [7d Kd Jh] [7s] +Player12: checks +Player22: checks +Player13: checks +Player17: bets $0.08 +Player12: folds +Player22: folds +Player13: folds +Uncalled bet ($0.08) returned to Player17 +Player17 collected $0.08 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [7d Kd Jh 7s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) collected ($0.08) +Seat 5: Player12 (small blind) folded on the Turn +Seat 6: Player22 (big blind) folded on the Turn +Seat 7: Player8 folded before Flop (didn't bet) +Seat 8: Player13 folded on the Turn +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #76511550927: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:00 WET [2010/05/06 18:54:00 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.29 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.54 in chips) +Seat 5: Player12 ($1.36 in chips) +Seat 6: Player22 ($1.81 in chips) +Seat 7: Player8 ($0.07 in chips) +Seat 8: Player13 ($4.98 in chips) +Seat 9: Player9 ($2.86 in chips) +Player22: posts small blind $0.01 +Player8: posts big blind $0.02 +Player10: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [8d Js] +Player13: folds +Player9: folds +Player20: folds +Player10: checks +Player24: folds +Player17: raises $0.06 to $0.08 +Player12: calls $0.08 +Player22: calls $0.07 +Player8: calls $0.05 and is all-in +Player10: calls $0.06 +*** FLOP *** [9c 9s Ah] +Player22: bets $0.04 +Player10: folds +Player17: folds +Player12: calls $0.04 +*** TURN *** [9c 9s Ah] [Td] +Player22: bets $0.08 +Player12: folds +Uncalled bet ($0.08) returned to Player22 +*** RIVER *** [9c 9s Ah Td] [3d] +*** SHOW DOWN *** +Player22: shows [Ac 6c] (two pair, Aces and Nines) +Player22 collected $0.12 from side pot +Player8: shows [Kh Th] (two pair, Tens and Nines) +Player22 collected $0.35 from main pot +*** SUMMARY *** +Total pot $0.47 Main pot $0.35. Side pot $0.12. | Rake $0 +Board [9c 9s Ah Td 3d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Flop +Seat 5: Player12 (button) folded on the Turn +Seat 6: Player22 (small blind) showed [Ac 6c] and won ($0.47) with two pair, Aces and Nines +Seat 7: Player8 (big blind) showed [Kh Th] and lost with two pair, Tens and Nines +Seat 8: Player13 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #28012101373: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:54:56 WET [2010/05/06 18:54:56 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.21 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.46 in chips) +Seat 5: Player12 ($1.24 in chips) +Seat 6: Player22 ($2.16 in chips) +Seat 8: Player13 ($4.98 in chips) +Seat 9: Player9 ($2.86 in chips) +Player13: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [7s 5h] +Player20: folds +Player10: calls $0.02 +Player8 leaves the table +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: folds +Player13: folds +Player9: checks +*** FLOP *** [5s 8d Kc] +Player9: checks +Player10: bets $0.06 +Player17: raises $0.08 to $0.14 +Player12: folds +Player9: folds +Player10: calls $0.08 +*** TURN *** [5s 8d Kc] [4c] +Player10: checks +Player13 leaves the table +Player17: checks +*** RIVER *** [5s 8d Kc 4c] [3s] +Player10: checks +Player7 joins the table at seat #8 +Player17: checks +*** SHOW DOWN *** +Player10: shows [2c 2h] (a pair of Deuces) +Player17: shows [7s 5h] (a pair of Fives) +Player17 collected $0.37 from pot +*** SUMMARY *** +Total pot $0.37 | Rake $0 +Board [5s 8d Kc 4c 3s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 showed [2c 2h] and lost with a pair of Deuces +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [7s 5h] and won ($0.37) with a pair of Fives +Seat 5: Player12 folded on the Flop +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 8: Player13 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded on the Flop + + + +PokerStars Game #41511921426: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:55:56 WET [2010/05/06 18:55:56 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player10 ($1.05 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.67 in chips) +Seat 5: Player12 ($1.22 in chips) +Seat 9: Player9 ($2.84 in chips) +Player20: posts small blind $0.01 +Player10: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [Js 6c] +Player24: folds +Player17: folds +Player12: folds +Player9: calls $0.02 +Player20: raises $0.04 to $0.06 +Player10: raises $0.04 to $0.10 +Player9: calls $0.08 +Player20: raises $0.30 to $0.40 +Player10: raises $0.30 to $0.70 +Player9: calls $0.60 +Player20: raises $4.69 to $5.39 and is all-in +Player10: calls $0.35 and is all-in +Player9: calls $2.14 and is all-in +Uncalled bet ($2.55) returned to Player20 +*** FLOP *** [2c 2s Ts] +*** TURN *** [2c 2s Ts] [Kd] +*** RIVER *** [2c 2s Ts Kd] [9s] +*** SHOW DOWN *** +Player20: shows [Ad Ah] (two pair, Aces and Deuces) +Player9: shows [Qs 7h] (a pair of Deuces) +Player20 collected $3.43 from side pot +Player10: shows [Kh Ks] (a full house, Kings full of Deuces) +Player10 collected $3 from main pot +*** SUMMARY *** +Total pot $6.73 Main pot $3. Side pot $3.43. | Rake $0.30 +Board [2c 2s Ts Kd 9s] +Seat 1: Player20 (small blind) showed [Ad Ah] and won ($3.43) with two pair, Aces and Deuces +Seat 2: Player10 (big blind) showed [Kh Ks] and won ($3) with a full house, Kings full of Deuces +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 9: Player9 (button) showed [Qs 7h] and lost with a pair of Deuces + + + +PokerStars Game #28359136208: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:56:53 WET [2010/05/06 18:56:53 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.98 in chips) +Seat 2: Player10 ($3 in chips) +Seat 3: Player24 ($1.48 in chips) +Seat 4: Player17 ($3.67 in chips) +Seat 5: Player12 ($1.22 in chips) +Player10: posts small blind $0.01 +Player24: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [6c Tc] +Player17: raises $0.04 to $0.06 +Player12: folds +Player16 joins the table at seat #7 +Player20 said, "lol everytime" +Player20: folds +Player10: raises $0.04 to $0.10 +Player24: folds +Player17: calls $0.04 +*** FLOP *** [5c Kc Jh] +Player10: checks +Player17: bets $0.08 +Player10: calls $0.08 +*** TURN *** [5c Kc Jh] [5h] +Player10: checks +Player17: checks +*** RIVER *** [5c Kc Jh 5h] [Ts] +Player10: checks +Player17: checks +*** SHOW DOWN *** +Player10: shows [Ad Ac] (two pair, Aces and Fives) +Player17: mucks hand +Player10 collected $0.38 from pot +*** SUMMARY *** +Total pot $0.38 | Rake $0 +Board [5c Kc Jh 5h Ts] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player10 (small blind) showed [Ad Ac] and won ($0.38) with two pair, Aces and Fives +Seat 3: Player24 (big blind) folded before Flop +Seat 4: Player17 mucked [6c Tc] +Seat 5: Player12 folded before Flop (didn't bet) + + + +PokerStars Game #70913060022: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:57:35 WET [2010/05/06 18:57:35 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.98 in chips) +Seat 2: Player10 ($3.20 in chips) +Seat 3: Player24 ($1.46 in chips) +Seat 4: Player17 ($3.49 in chips) +Seat 5: Player12 ($1.22 in chips) +Seat 9: Player9 ($1.80 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [As 7h] +Player12: calls $0.02 +Player20 said, "haha nice" +Player9: calls $0.02 +Player20: calls $0.02 +Player10: calls $0.02 +Player24: calls $0.01 +Player17: checks +*** FLOP *** [Qs Qh Ad] +Player24: checks +Player17: bets $0.12 +Player12: folds +Player9: calls $0.12 +Player20: folds +Player10: folds +Player24: folds +*** TURN *** [Qs Qh Ad] [5h] +Player17: bets $0.10 +Player9: calls $0.10 +*** RIVER *** [Qs Qh Ad 5h] [Ah] +Player17: bets $0.12 +Player9: raises $1.44 to $1.56 and is all-in +Player17: calls $1.44 +*** SHOW DOWN *** +Player9: shows [Kh Jh] (a flush, Ace high) +Player17: shows [As 7h] (a full house, Aces full of Queens) +Player17 collected $3.53 from pot +*** SUMMARY *** +Total pot $3.68 | Rake $0.15 +Board [Qs Qh Ad 5h Ah] +Seat 1: Player20 folded on the Flop +Seat 2: Player10 (button) folded on the Flop +Seat 3: Player24 (small blind) folded on the Flop +Seat 4: Player17 (big blind) showed [As 7h] and won ($3.53) with a full house, Aces full of Queens +Seat 5: Player12 folded on the Flop +Seat 9: Player9 showed [Kh Jh] and lost with a flush, Ace high + + + +PokerStars Game #20264306210: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:58:36 WET [2010/05/06 18:58:36 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 2: Player10 ($3.18 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.22 in chips) +Seat 5: Player12 ($1.20 in chips) +Seat 6: Player22 ($2.16 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [Ac 7s] +Player22: folds +Player20: folds +Player10: folds +Player24: folds +Player22 said, "nh" +Player17: raises $0.08 to $0.10 +Player12: calls $0.08 +*** FLOP *** [8c 5d Qh] +Player17 said, "tyty" +Player17: checks +Player12: checks +*** TURN *** [8c 5d Qh] [Tc] +Player17: checks +Player12: bets $0.10 +Player17: folds +Uncalled bet ($0.10) returned to Player12 +Player12 collected $0.20 from pot +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8c 5d Qh Tc] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded before Flop (didn't bet) +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) folded on the Turn +Seat 5: Player12 (big blind) collected ($0.20) +Seat 6: Player22 folded before Flop (didn't bet) + + + +PokerStars Game #27816107382: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/06 23:59:12 WET [2010/05/06 18:59:12 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 2: Player10 ($3.18 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.12 in chips) +Seat 5: Player12 ($1.30 in chips) +Seat 6: Player22 ($2.16 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +Player16: sits out +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [As Qc] +Player20: folds +Player10: calls $0.02 +Player24: folds +Player17: calls $0.02 +Player12: calls $0.01 +Player22: checks +*** FLOP *** [8s 8h Kd] +Player12: checks +Player22: checks +Player10: checks +Player17: checks +*** TURN *** [8s 8h Kd] [9h] +Player12: bets $0.06 +Player22: folds +Player10: calls $0.06 +Player17: folds +*** RIVER *** [8s 8h Kd 9h] [6s] +Player12: bets $0.24 +Player10: folds +Uncalled bet ($0.24) returned to Player12 +Player12 collected $0.20 from pot +Player10 leaves the table +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Board [8s 8h Kd 9h 6s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player10 folded on the River +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded on the Turn +Seat 5: Player12 (small blind) collected ($0.20) +Seat 6: Player22 (big blind) folded on the Turn + + + +PokerStars Game #25404395119: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:00:03 WET [2010/05/06 19:00:03 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.96 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.10 in chips) +Seat 5: Player12 ($1.42 in chips) +Seat 6: Player22 ($2.14 in chips) +Seat 7: Player16 ($1.60 in chips) +Seat 9: Player9 ($1 in chips) +Player22: posts small blind $0.01 +Player16: posts big blind $0.02 +Player7: sits out +*** HOLE CARDS *** +Dealt to Player17 [5c 8c] +Player9: calls $0.02 +Player20: folds +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: folds +Player16: checks +*** FLOP *** [Ad Kd Qh] +Player16: checks +Player9: checks +Player17: checks +Player12: checks +*** TURN *** [Ad Kd Qh] [9c] +Player16: checks +Player9: bets $0.02 +Player17: folds +Player12: calls $0.02 +Player16: folds +*** RIVER *** [Ad Kd Qh 9c] [7d] +Player9: checks +Player4 joins the table at seat #2 +Player12: checks +*** SHOW DOWN *** +Player9: shows [6c Jd] (high card Ace) +Player12: shows [5h Kh] (a pair of Kings) +Player12 collected $0.13 from pot +*** SUMMARY *** +Total pot $0.13 | Rake $0 +Board [Ad Kd Qh 9c 7d] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded on the Turn +Seat 5: Player12 (button) showed [5h Kh] and won ($0.13) with a pair of Kings +Seat 6: Player22 (small blind) folded before Flop +Seat 7: Player16 (big blind) folded on the Turn +Seat 9: Player9 showed [6c Jd] and lost with high card Ace + + + +PokerStars Game #19191328622: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:02:07 WET [2010/05/06 19:02:07 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.94 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.15 in chips) +Seat 6: Player22 ($2.56 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($0.94 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +Player4: sits out +*** HOLE CARDS *** +Dealt to Player17 [4h As] +Player20: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: calls $0.01 +Player9: checks +*** FLOP *** [Qh 5c 9c] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** TURN *** [Qh 5c 9c] [7d] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** RIVER *** [Qh 5c 9c 7d] [Qd] +Player7: checks +Player9: checks +Player12: checks +Player22: checks +*** SHOW DOWN *** +Player7: shows [4s 5s] (two pair, Queens and Fives) +Player9: mucks hand +Player12: mucks hand +Player22: mucks hand +Player7 collected $0.08 from pot +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [Qh 5c 9c 7d Qd] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 mucked [3h 2s] +Seat 6: Player22 mucked [Ts 6s] +Seat 7: Player16 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) showed [4s 5s] and won ($0.08) with two pair, Queens and Fives +Seat 9: Player9 (big blind) mucked [6c 2d] + + + +PokerStars Game #35042386427: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:03:47 WET [2010/05/06 19:03:47 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.94 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.13 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2.06 in chips) +Seat 9: Player9 ($0.92 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +Player4: sits out +*** HOLE CARDS *** +Dealt to Player17 [5s Ks] +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player16: folds +Player7: calls $0.02 +Player9: calls $0.01 +Player20: checks +*** FLOP *** [Qc 9c 5h] +Player9: checks +Player20: checks +Player12: checks +Player7: bets $0.06 +Player9: calls $0.06 +Player20: folds +Player12: calls $0.06 +*** TURN *** [Qc 9c 5h] [Td] +Player9: checks +Player12: checks +Player7: checks +*** RIVER *** [Qc 9c 5h Td] [Jh] +Player9: bets $0.20 +Player12: folds +Player7: folds +Uncalled bet ($0.20) returned to Player9 +Player9 collected $0.26 from pot +*** SUMMARY *** +Total pot $0.26 | Rake $0 +Board [Qc 9c 5h Td Jh] +Seat 1: Player20 (big blind) folded on the Flop +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the River +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded on the River +Seat 9: Player9 (small blind) collected ($0.26) + + + +PokerStars Game #50092600346: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:05:36 WET [2010/05/06 19:05:36 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.92 in chips) +Seat 2: Player4 ($1 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.08 in chips) +Seat 5: Player12 ($1.05 in chips) +Seat 6: Player22 ($2.54 in chips) +Seat 7: Player16 ($1.57 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.10 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ts 8s] +Player24: folds +Player17: calls $0.02 +Player12: calls $0.02 +Player22: calls $0.02 +Player16: calls $0.02 +Player7: calls $0.02 +Player9: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [9d 3c Js] +Player20: checks +Player4: checks +Player17: checks +Player12: checks +Player22: checks +Player16: bets $0.10 +Player7: folds +Player20: calls $0.10 +Player4: calls $0.10 +Player17: calls $0.10 +Player12: folds +Player22: folds +*** TURN *** [9d 3c Js] [Qh] +Player20: checks +Player4: checks +Player17: checks +Player16: checks +*** RIVER *** [9d 3c Js Qh] [2s] +Player20: bets $0.26 +Player4: folds +Player17: calls $0.26 +Player16: folds +*** SHOW DOWN *** +Player20: shows [2h Jh] (two pair, Jacks and Deuces) +Player17: shows [Ts 8s] (a straight, Eight to Queen) +Player17 collected $1.01 from pot +*** SUMMARY *** +Total pot $1.06 | Rake $0.05 +Board [9d 3c Js Qh 2s] +Seat 1: Player20 (small blind) showed [2h Jh] and lost with two pair, Jacks and Deuces +Seat 2: Player4 (big blind) folded on the River +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 showed [Ts 8s] and won ($1.01) with a straight, Eight to Queen +Seat 5: Player12 folded on the Flop +Seat 6: Player22 folded on the Flop +Seat 7: Player16 folded on the River +Seat 8: Player7 folded on the Flop +Seat 9: Player9 (button) folded before Flop (didn't bet) + + + +PokerStars Game #24708132405: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:07:48 WET [2010/05/06 19:07:48 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.54 in chips) +Seat 2: Player4 ($0.88 in chips) +Seat 3: Player24 ($1.44 in chips) +Seat 4: Player17 ($5.71 in chips) +Seat 5: Player12 ($1.03 in chips) +Seat 6: Player22 ($2.52 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.10 in chips) +Player4: posts small blind $0.01 +Player24: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5h Qh] +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: calls $0.01 +Player24: checks +*** FLOP *** [6c 7s 9h] +Player4: bets $0.02 +Player24: calls $0.02 +Player12: calls $0.02 +Player22: calls $0.02 +Player9: calls $0.02 +*** TURN *** [6c 7s 9h] [3h] +Player4: bets $0.02 +Player24: folds +Player12: folds +Player22: calls $0.02 +Player9: calls $0.02 +*** RIVER *** [6c 7s 9h 3h] [2h] +Player4: checks +Player22: checks +Player9: bets $0.02 +Player4: folds +Player22: folds +Uncalled bet ($0.02) returned to Player9 +Player9 collected $0.26 from pot +*** SUMMARY *** +Total pot $0.26 | Rake $0 +Board [6c 7s 9h 3h 2h] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded on the River +Seat 3: Player24 (big blind) folded on the Turn +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Turn +Seat 6: Player22 folded on the River +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 collected ($0.26) + + + +PokerStars Game #16013874820: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:09:23 WET [2010/05/06 19:09:23 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.54 in chips) +Seat 2: Player4 ($0.82 in chips) +Seat 3: Player24 ($1.40 in chips) +Seat 4: Player17 ($5.71 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.46 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.30 in chips) +Player24: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 7s] +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: calls $0.02 +Player4: calls $0.02 +Player24: calls $0.01 +Player17: checks +*** FLOP *** [7c Qs Th] +Player24: checks +Player17: checks +Player12: checks +Player22: bets $0.10 +Player9: folds +Player20: folds +Player4: calls $0.10 +Player24: folds +Player17: folds +Player12: folds +*** TURN *** [7c Qs Th] [Qd] +Player22: checks +Player4: checks +*** RIVER *** [7c Qs Th Qd] [6h] +Player22: bets $0.50 +Player4: folds +Uncalled bet ($0.50) returned to Player22 +Player22 collected $0.34 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.34 | Rake $0 +Board [7c Qs Th Qd 6h] +Seat 1: Player20 folded on the Flop +Seat 2: Player4 (button) folded on the River +Seat 3: Player24 (small blind) folded on the Flop +Seat 4: Player17 (big blind) folded on the Flop +Seat 5: Player12 folded on the Flop +Seat 6: Player22 collected ($0.34) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Flop + + + +PokerStars Game #81348282228: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:10:43 WET [2010/05/06 19:10:43 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.52 in chips) +Seat 2: Player4 ($0.70 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.69 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.68 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [As Kd] +Player22: folds +Player16: folds +Player7: folds +Player9: folds +Player20: folds +Player4: raises $0.04 to $0.06 +Player24: folds +Player17: calls $0.05 +Player12: calls $0.04 +*** FLOP *** [Kh 3c Ah] +Player17: checks +Player12: checks +Player4: checks +*** TURN *** [Kh 3c Ah] [Jh] +Player17: checks +Player12: checks +Player4: checks +*** RIVER *** [Kh 3c Ah Jh] [5c] +Player17: checks +Player12: checks +Player4: checks +*** SHOW DOWN *** +Player17: shows [As Kd] (two pair, Aces and Kings) +Player12: mucks hand +Player4: mucks hand +Player17 collected $0.18 from pot +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Kh 3c Ah Jh 5c] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 mucked [7s 8s] +Seat 3: Player24 (button) folded before Flop (didn't bet) +Seat 4: Player17 (small blind) showed [As Kd] and won ($0.18) with two pair, Aces and Kings +Seat 5: Player12 (big blind) mucked [Ts 3s] +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #12247201631: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:11:43 WET [2010/05/06 19:11:43 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.52 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.91 in chips) +Seat 6: Player22 ($2.68 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9s 2d] +Player16: folds +Player7: folds +Player9 has timed out +Player9: folds +Player20: raises $0.04 to $0.06 +Player4: folds +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.05 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player20 collected ($0.05) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded before Flop +Seat 6: Player22 (big blind) folded before Flop +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #18249303862: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:12:23 WET [2010/05/06 19:12:23 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.90 in chips) +Seat 6: Player22 ($2.66 in chips) +Seat 7: Player16 ($1.45 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.28 in chips) +Player22: posts small blind $0.01 +Player16: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Kh 5c] +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: folds +Player24: folds +Player17: folds +Player12: calls $0.02 +Player22: calls $0.01 +Player16: checks +*** FLOP *** [8d 5s Ts] +Player22: checks +Player16: checks +Player9: checks +Player12: checks +*** TURN *** [8d 5s Ts] [9h] +Player22: bets $0.04 +Player16: folds +Player9: folds +Player12: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.08 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.08 | Rake $0 +Board [8d 5s Ts 9h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded on the Turn +Seat 6: Player22 (small blind) collected ($0.08) +Seat 7: Player16 (big blind) folded on the Turn +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #79095206106: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:13:34 WET [2010/05/06 19:13:34 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.64 in chips) +Seat 3: Player24 ($1.38 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.88 in chips) +Seat 6: Player22 ($2.72 in chips) +Seat 7: Player16 ($1.43 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.26 in chips) +Player16: posts small blind $0.01 +Player7: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qs 6h] +Player9 has timed out +Player9: folds +Player20: folds +Player4: calls $0.02 +Player24: calls $0.02 +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: checks +*** FLOP *** [5d Th 9c] +Player7: checks +Player4: checks +Player24: checks +Player12: bets $0.02 +Player22: folds +Player7: folds +Player4: folds +Player24: calls $0.02 +*** TURN *** [5d Th 9c] [2d] +Player24: checks +Player12: checks +*** RIVER *** [5d Th 9c 2d] [9s] +Player24: checks +Player12: bets $0.06 +Player24: folds +Uncalled bet ($0.06) returned to Player12 +Player12 collected $0.15 from pot +*** SUMMARY *** +Total pot $0.15 | Rake $0 +Board [5d Th 9c 2d 9s] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded on the Flop +Seat 3: Player24 folded on the River +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 collected ($0.15) +Seat 6: Player22 (button) folded on the Flop +Seat 7: Player16 (small blind) folded before Flop +Seat 8: Player7 (big blind) folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #23803281942: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:02 WET [2010/05/06 19:15:02 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.62 in chips) +Seat 3: Player24 ($1.34 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.70 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.26 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4d 9d] +Player20: folds +Player4: folds +Player24: folds +Player17: folds +Player12: folds +Player22: folds +Player16: folds +Player7: raises $0.06 to $0.08 +Player9 has timed out +Player9: folds +Uncalled bet ($0.06) returned to Player7 +Player7 collected $0.04 from pot +Player7: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) collected ($0.04) +Seat 9: Player9 (big blind) folded before Flop + + + +PokerStars Game #29640307323: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:15:57 WET [2010/05/06 19:15:57 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.55 in chips) +Seat 2: Player4 ($0.62 in chips) +Seat 3: Player24 ($1.34 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.70 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Js 7d] +Player24: folds +Player17: folds +Player24 leaves the table +Player12: folds +Player22: calls $0.02 +Player16: folds +Player1 joins the table at seat #3 +Player7: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [Jc 2d 9d] +Player20: checks +Player4: checks +Player22: checks +*** TURN *** [Jc 2d 9d] [Ac] +Player20: checks +Player4: checks +Player22: bets $0.04 +Player20: folds +Player4: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.06 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [Jc 2d 9d Ac] +Seat 1: Player20 (small blind) folded on the Turn +Seat 2: Player4 (big blind) folded on the Turn +Seat 3: Player24 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 collected ($0.06) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #22991200661: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:17:07 WET [2010/05/06 19:17:07 ET] +Table '99999999' 9-max Seat #1 is the button +Seat 1: Player20 ($5.53 in chips) +Seat 2: Player4 ($0.60 in chips) +Seat 3: Player1 ($2 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.99 in chips) +Seat 6: Player22 ($2.74 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.24 in chips) +Player4: posts small blind $0.01 +Player1: posts big blind $0.02 +Player9: posts small blind $0.01 +*** HOLE CARDS *** +Dealt to Player17 [9c 8s] +Player17: folds +Player12: calls $0.02 +Player22: calls $0.02 +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: folds +Player4: calls $0.01 +Player1: checks +*** FLOP *** [Td 3s Th] +Player4: checks +Player1: checks +Player12: checks +Player22: checks +Player9: checks +*** TURN *** [Td 3s Th] [9s] +Player4: checks +Player1: checks +Player12: checks +Player22: bets $0.08 +Player9: folds +Player4: folds +Player1: folds +Player12: folds +Uncalled bet ($0.08) returned to Player22 +Player22 collected $0.11 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.11 | Rake $0 +Board [Td 3s Th 9s] +Seat 1: Player20 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded on the Turn +Seat 3: Player1 (big blind) folded on the Turn +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded on the Turn +Seat 6: Player22 collected ($0.11) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded on the Turn + + + +PokerStars Game #22198294871: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:18:07 WET [2010/05/06 19:18:07 ET] +Table '99999999' 9-max Seat #2 is the button +Seat 1: Player20 ($5.53 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.98 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.21 in chips) +Player1: posts small blind $0.01 +Player17: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [9d Qc] +Player12: folds +Player22: folds +Player16: folds +Player7: folds +Player9: calls $0.02 +Player20: raises $0.04 to $0.06 +Player4: folds +Player1: folds +Player17: folds +Player9: calls $0.04 +*** FLOP *** [6d 4d Qh] +Player9: checks +Player20: checks +*** TURN *** [6d 4d Qh] [Ac] +Player9: checks +Player20: checks +*** RIVER *** [6d 4d Qh Ac] [Ah] +Player9: bets $0.02 +Player20: calls $0.02 +*** SHOW DOWN *** +Player9: shows [2d Qd] (two pair, Aces and Queens) +Player20: mucks hand +Player9 collected $0.19 from pot +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [6d 4d Qh Ac Ah] +Seat 1: Player20 mucked [Kc Jd] +Seat 2: Player4 (button) folded before Flop (didn't bet) +Seat 3: Player1 (small blind) folded before Flop +Seat 4: Player17 (big blind) folded before Flop +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 showed [2d Qd] and won ($0.19) with two pair, Aces and Queens + + + +PokerStars Game #97422269929: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:19:21 WET [2010/05/06 19:19:21 ET] +Table '99999999' 9-max Seat #3 is the button +Seat 1: Player20 ($5.45 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.97 in chips) +Seat 4: Player17 ($5.79 in chips) +Seat 5: Player12 ($0.97 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.42 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player17: posts small blind $0.01 +Player12: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Td 2h] +Player22: folds +Player16: raises $0.06 to $0.08 +Player7: folds +Player9: folds +Player20: folds +Player4: folds +Player1: calls $0.08 +Player17: folds +Player12: folds +*** FLOP *** [9c 7d 3h] +Player16: checks +Player1: checks +*** TURN *** [9c 7d 3h] [9h] +Player16: bets $0.06 +Player1: folds +Uncalled bet ($0.06) returned to Player16 +Player16 collected $0.19 from pot +Player16: doesn't show hand +*** SUMMARY *** +Total pot $0.19 | Rake $0 +Board [9c 7d 3h 9h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 (button) folded on the Turn +Seat 4: Player17 (small blind) folded before Flop +Seat 5: Player12 (big blind) folded before Flop +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player16 collected ($0.19) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #18011288181: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:20:17 WET [2010/05/06 19:20:17 ET] +Table '99999999' 9-max Seat #4 is the button +Seat 1: Player20 ($5.45 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.89 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.95 in chips) +Seat 6: Player22 ($2.83 in chips) +Seat 7: Player16 ($1.53 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player12: posts small blind $0.01 +Player22: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [5d 6s] +Player16: folds +Player16 leaves the table +Player7: folds +Player9: folds +Player20: raises $0.04 to $0.06 +Player4: folds +Player1: folds +Player17: folds +Player12: calls $0.05 +Player22: calls $0.04 +*** FLOP *** [Ts Kc Jd] +Player6 joins the table at seat #7 +Player12: checks +Player22: bets $0.06 +Player20: folds +Player12: folds +Uncalled bet ($0.06) returned to Player22 +Player22 collected $0.18 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.18 | Rake $0 +Board [Ts Kc Jd] +Seat 1: Player20 folded on the Flop +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 (button) folded before Flop (didn't bet) +Seat 5: Player12 (small blind) folded on the Flop +Seat 6: Player22 (big blind) collected ($0.18) +Seat 7: Player16 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #45432821411: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:21:04 WET [2010/05/06 19:21:04 ET] +Table '99999999' 9-max Seat #5 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.58 in chips) +Seat 3: Player1 ($1.89 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($2.95 in chips) +Seat 7: Player6 ($2 in chips) +Seat 8: Player7 ($2.02 in chips) +Seat 9: Player9 ($1.32 in chips) +Player22: posts small blind $0.01 +Player6: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Ks Jd] +Player7: calls $0.02 +Player9: folds +Player20: folds +Player4: calls $0.02 +Player1: raises $0.04 to $0.06 +Player17: folds +Player12: folds +Player22: calls $0.05 +Player6: calls $0.04 +Player7: calls $0.04 +Player4: calls $0.04 +*** FLOP *** [5c 3h 4s] +Player22: bets $0.04 +Player6: calls $0.04 +Player7: folds +Player4: calls $0.04 +Player1: calls $0.04 +*** TURN *** [5c 3h 4s] [Qh] +Player22: checks +Player6: checks +Player4: checks +Player1: checks +*** RIVER *** [5c 3h 4s Qh] [6h] +Player22: bets $0.04 +Player6: folds +Player4: folds +Player1: folds +Uncalled bet ($0.04) returned to Player22 +Player22 collected $0.46 from pot +Player22: doesn't show hand +*** SUMMARY *** +Total pot $0.46 | Rake $0 +Board [5c 3h 4s Qh 6h] +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded on the River +Seat 3: Player1 folded on the River +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 (button) folded before Flop (didn't bet) +Seat 6: Player22 (small blind) collected ($0.46) +Seat 7: Player6 (big blind) folded on the River +Seat 8: Player7 folded on the Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #10551491588: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:27 WET [2010/05/06 19:22:27 ET] +Table '99999999' 9-max Seat #6 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.78 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.90 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.32 in chips) +Player6: posts small blind $0.01 +Player7: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qs 9s] +Player9: folds +Player20: folds +Player4: folds +Player1: folds +Player17: raises $0.04 to $0.06 +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Uncalled bet ($0.04) returned to Player17 +Player17 collected $0.05 from pot +Player17: doesn't show hand +*** SUMMARY *** +Total pot $0.05 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 collected ($0.05) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player7 (big blind) folded before Flop +Seat 9: Player9 folded before Flop (didn't bet) + + + +PokerStars Game #19037115169: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:22:56 WET [2010/05/06 19:22:56 ET] +Table '99999999' 9-max Seat #7 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.32 in chips) +Player7: posts small blind $0.01 +Player9: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [4d Js] +Player20: folds +Player4: folds +Player1: folds +Player17: folds +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Uncalled bet ($0.01) returned to Player9 +Player9 collected $0.02 from pot +*** SUMMARY *** +Total pot $0.02 | Rake $0 +Seat 1: Player20 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded before Flop (didn't bet) +Seat 8: Player7 (small blind) folded before Flop +Seat 9: Player9 (big blind) collected ($0.02) + + + +PokerStars Game #26447108451: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:23:19 WET [2010/05/06 19:23:19 ET] +Table '99999999' 9-max Seat #8 is the button +Seat 1: Player20 ($5.39 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.89 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.33 in chips) +Player9: posts small blind $0.01 +Player20: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Qd 2s] +Player4: folds +Player1 has timed out +Player1: folds +Player17: folds +Player12: calls $0.02 +Player22: folds +Player6: folds +Player7: folds +Player9: calls $0.01 +Player20: checks +*** FLOP *** [Qs 6d 4s] +Player9: checks +Player20: checks +Player12: bets $0.02 +Player9: folds +Player20: folds +Uncalled bet ($0.02) returned to Player12 +Player12 collected $0.06 from pot +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [Qs 6d 4s] +Seat 1: Player20 (big blind) folded on the Flop +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 collected ($0.06) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player7 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) folded on the Flop + + + +PokerStars Game #16631106221: Hold'em No Limit ($0.01/$0.02 USD) - 2010/05/07 0:24:07 WET [2010/05/06 19:24:07 ET] +Table '99999999' 9-max Seat #9 is the button +Seat 1: Player20 ($5.37 in chips) +Seat 2: Player4 ($0.48 in chips) +Seat 3: Player1 ($1.79 in chips) +Seat 4: Player17 ($5.81 in chips) +Seat 5: Player12 ($0.93 in chips) +Seat 6: Player22 ($3.31 in chips) +Seat 7: Player6 ($1.89 in chips) +Seat 8: Player7 ($2 in chips) +Seat 9: Player9 ($1.31 in chips) +Player20: posts small blind $0.01 +Player4: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player17 [Tc 6c] +Player1: folds +Player17: folds +Player12: folds +Player22: folds +Player6: folds +Player7: folds +Player9: folds +Player20: calls $0.01 +Player4: checks +*** FLOP *** [4h 7d Td] +Player20: checks +Player4: checks +*** TURN *** [4h 7d Td] [3d] +Player20: checks +Player4: checks +*** RIVER *** [4h 7d Td 3d] [Qs] +Player20: bets $0.04 +Player4: folds +Uncalled bet ($0.04) returned to Player20 +Player20 collected $0.04 from pot +Player20: doesn't show hand +*** SUMMARY *** +Total pot $0.04 | Rake $0 +Board [4h 7d Td 3d Qs] +Seat 1: Player20 (small blind) collected ($0.04) +Seat 2: Player4 (big blind) folded on the River +Seat 3: Player1 folded before Flop (didn't bet) +Seat 4: Player17 folded before Flop (didn't bet) +Seat 5: Player12 folded before Flop (didn't bet) +Seat 6: Player22 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player7 folded before Flop (didn't bet) +Seat 9: Player9 (button) folded before Flop (didn't bet) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt index 543c3f1e..bdbf1305 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.01-0.02-201006.foldsoutofturn.txt @@ -1,45 +1,45 @@ -PokerStars Game #24782122321: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] -Table '999999999' 9-max Seat #1 is the button -Seat 1: Player2 ($0.88 in chips) -Seat 2: Player0 ($1.61 in chips) -Seat 3: Player5 ($5.27 in chips) -Seat 5: Player1 ($2.15 in chips) -Seat 6: Player3 ($2.55 in chips) -Seat 7: Player6 ($2.90 in chips) -Seat 9: Player4 ($1.93 in chips) -Player0: posts small blind $0.01 -Player5: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player0 [Td Qc] -Player1: folds -Player3: calls $0.02 -Player3 said, "":D"" -Player6: folds -Player4: folds -Player2 has timed out -Player2: folds -Player0: calls $0.01 -Player5: checks -*** FLOP *** [7d 2s Jc] -Player0: checks -Player5: checks -Player3: checks -*** TURN *** [7d 2s Jc] [2h] -Player0: folds -Player5: bets $0.06 -Player3: folds -Uncalled bet ($0.06) returned to Player5 -Player5 collected $0.06 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot $0.06 | Rake $0 -Board [7d 2s Jc 2h] -Seat 1: Player2 (button) folded before Flop (didn't bet) -Seat 2: Player0 (small blind) folded on the Turn -Seat 3: Player5 (big blind) collected ($0.06) -Seat 5: Player1 folded before Flop (didn't bet) -Seat 6: Player3 folded on the Turn -Seat 7: Player6 folded before Flop (didn't bet) -Seat 9: Player4 folded before Flop (didn't bet) +PokerStars Game #24782122321: Hold'em No Limit ($0.01/$0.02 USD) - 2010/06/06 22:24:02 WET [2010/06/06 17:24:02 ET] +Table '999999999' 9-max Seat #1 is the button +Seat 1: Player2 ($0.88 in chips) +Seat 2: Player0 ($1.61 in chips) +Seat 3: Player5 ($5.27 in chips) +Seat 5: Player1 ($2.15 in chips) +Seat 6: Player3 ($2.55 in chips) +Seat 7: Player6 ($2.90 in chips) +Seat 9: Player4 ($1.93 in chips) +Player0: posts small blind $0.01 +Player5: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player0 [Td Qc] +Player1: folds +Player3: calls $0.02 +Player3 said, "":D"" +Player6: folds +Player4: folds +Player2 has timed out +Player2: folds +Player0: calls $0.01 +Player5: checks +*** FLOP *** [7d 2s Jc] +Player0: checks +Player5: checks +Player3: checks +*** TURN *** [7d 2s Jc] [2h] +Player0: folds +Player5: bets $0.06 +Player3: folds +Uncalled bet ($0.06) returned to Player5 +Player5 collected $0.06 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot $0.06 | Rake $0 +Board [7d 2s Jc 2h] +Seat 1: Player2 (button) folded before Flop (didn't bet) +Seat 2: Player0 (small blind) folded on the Turn +Seat 3: Player5 (big blind) collected ($0.06) +Seat 5: Player1 folded before Flop (didn't bet) +Seat 6: Player3 folded on the Turn +Seat 7: Player6 folded before Flop (didn't bet) +Seat 9: Player4 folded before Flop (didn't bet) diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt index 98ce48d6..feaf8194 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/NLHE-FR-USD-0.05-0.10-201004.allinWithAmtReturned.txt @@ -1,33 +1,33 @@ -PokerStars Game #42875758685: Hold'em No Limit ($0.05/$0.10 USD) - 2010/04/19 0:19:11 WET [2010/04/18 19:19:11 ET] -Table 'gimick VI' 9-max Seat #4 is the button -Seat 3: Player1 ($5.55 in chips) -Seat 4: Player0 ($2.40 in chips) -Seat 8: Player2 ($3.90 in chips) -Player2: posts small blind $0.05 -Player1: posts big blind $0.10 -*** HOLE CARDS *** +PokerStars Game #42875758685: Hold'em No Limit ($0.05/$0.10 USD) - 2010/04/19 0:19:11 WET [2010/04/18 19:19:11 ET] +Table 'gimick VI' 9-max Seat #4 is the button +Seat 3: Player1 ($5.55 in chips) +Seat 4: Player0 ($2.40 in chips) +Seat 8: Player2 ($3.90 in chips) +Player2: posts small blind $0.05 +Player1: posts big blind $0.10 +*** HOLE CARDS *** Dealt to Player0 [7d 8d] -Player0: raises $0.30 to $0.40 -Player2: calls $0.35 -Player1: folds -*** FLOP *** [2h 2d Qd] -Player2: checks -Player0: bets $0.60 -Player2: raises $0.60 to $1.20 -Player0: calls $0.60 -*** TURN *** [2h 2d Qd] [5d] -Player2: bets $0.90 -Player0: calls $0.80 and is all-in -Uncalled bet ($0.10) returned to Player2 -*** RIVER *** [2h 2d Qd 5d] [4d] -*** SHOW DOWN *** -Player2: shows [9d As] (a flush, Queen high) -Player0: shows [7d 8d] (a flush, Queen high - lower cards) -Player2 collected $4.70 from pot -*** SUMMARY *** -Total pot $4.90 | Rake $0.20 -Board [2h 2d Qd 5d 4d] -Seat 3: Player1 (big blind) folded before Flop -Seat 4: Player0 (button) showed [7d 8d] and lost with a flush, Queen high -Seat 8: Player2 (small blind) showed [9d As] and won ($4.70) with a flush, Queen high +Player0: raises $0.30 to $0.40 +Player2: calls $0.35 +Player1: folds +*** FLOP *** [2h 2d Qd] +Player2: checks +Player0: bets $0.60 +Player2: raises $0.60 to $1.20 +Player0: calls $0.60 +*** TURN *** [2h 2d Qd] [5d] +Player2: bets $0.90 +Player0: calls $0.80 and is all-in +Uncalled bet ($0.10) returned to Player2 +*** RIVER *** [2h 2d Qd 5d] [4d] +*** SHOW DOWN *** +Player2: shows [9d As] (a flush, Queen high) +Player0: shows [7d 8d] (a flush, Queen high - lower cards) +Player2 collected $4.70 from pot +*** SUMMARY *** +Total pot $4.90 | Rake $0.20 +Board [2h 2d Qd 5d 4d] +Seat 3: Player1 (big blind) folded before Flop +Seat 4: Player0 (button) showed [7d 8d] and lost with a flush, Queen high +Seat 8: Player2 (small blind) showed [9d As] and won ($4.70) with a flush, Queen high diff --git a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt index 8ca829fe..01e448cf 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Flop/PLO-FR-USD-0.01-0.02-201006.sidepots.txt @@ -1,158 +1,158 @@ - -PokerStars Game #14311270221: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:13:12 WET [2010/06/07 15:13:12 ET] -Table '99999999I' 9-max Seat #3 is the button -Seat 2: Player5 ($0.58 in chips) -Seat 3: Player1 ($0.65 in chips) -Seat 6: Player4 ($1.92 in chips) -Seat 7: Player6 ($2.81 in chips) -Seat 8: Player3 ($2.50 in chips) -Seat 9: Player2 ($0.80 in chips) -Player0 will be allowed to play after the button -Player4: posts small blind $0.01 -Player6: posts big blind $0.02 -Player3: posts big blind $0.02 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [8d As 2h Ks] -Player3: checks -Player2: checks -Player5: raises $0.02 to $0.04 -Player1: raises $0.02 to $0.06 -Player4: calls $0.05 -Player6: folds -Player3: calls $0.04 -Player2: calls $0.04 -Player5: calls $0.02 -*** FLOP *** [Qh 7c Qs] -Player4: checks -Player3: checks -Player2: bets $0.31 -Player5: folds -Player1: folds -Player4: folds -Player3: folds -Uncalled bet ($0.31) returned to Player2 -Player2 collected $0.31 from pot -*** SUMMARY *** -Total pot $0.32 | Rake $0.01 -Board [Qh 7c Qs] -Seat 2: Player5 folded on the Flop -Seat 3: Player1 (button) folded on the Flop -Seat 6: Player4 (small blind) folded on the Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player3 folded on the Flop -Seat 9: Player2 collected ($0.31) - - - -PokerStars Game #22865231671: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:14:17 WET [2010/06/07 15:14:17 ET] -Table '99999999I' 9-max Seat #6 is the button -Seat 2: Player5 ($0.52 in chips) -Seat 3: Player1 ($0.59 in chips) -Seat 5: Player0 ($0.90 in chips) -Seat 6: Player4 ($1.86 in chips) -Seat 7: Player6 ($2.79 in chips) -Seat 8: Player3 ($5 in chips) -Seat 9: Player2 ($1.05 in chips) -Player6: posts small blind $0.01 -Player3: posts big blind $0.02 -Player0: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [6d 3c 5s As] -Player2: calls $0.02 -Player5: calls $0.02 -Player1: calls $0.02 -Player0: raises $0.06 to $0.08 -Player4: calls $0.08 -Player6: folds -Player3: folds -Player2: calls $0.06 -Player5: calls $0.06 -Player1: raises $0.06 to $0.14 -Player0: raises $0.55 to $0.69 -Player4: calls $0.61 -Player2: raises $0.36 to $1.05 and is all-in -Player5: folds -Player1: calls $0.45 and is all-in -Player0: calls $0.21 and is all-in -Player4: calls $0.36 -*** FLOP *** [6c Kc Qc] -*** TURN *** [6c Kc Qc] [Jc] -*** RIVER *** [6c Kc Qc Jc] [4c] -*** SHOW DOWN *** -Player2: shows [Js Ah 5d 9h] (a pair of Jacks) -Player4: shows [9c 9d 7d 7h] (a pair of Nines) -Player2 collected $0.29 from side pot-2 -Player0: shows [Ks Ad 7s Tc] (a straight, Ten to Ace) -Player0 collected $0.88 from side pot-1 -Player1: shows [6d 3c 5s As] (a pair of Sixes) -Player0 collected $2.35 from main pot -*** SUMMARY *** -Total pot $3.70 Main pot $2.35. Side pot-1 $0.88. Side pot-2 $0.29. | Rake $0.18 -Board [6c Kc Qc Jc 4c] -Seat 2: Player5 folded before Flop -Seat 3: Player1 showed [6d 3c 5s As] and lost with a pair of Sixes -Seat 5: Player0 showed [Ks Ad 7s Tc] and won ($3.23) with a straight, Ten to Ace -Seat 6: Player4 (button) showed [9c 9d 7d 7h] and lost with a pair of Nines -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player3 (big blind) folded before Flop -Seat 9: Player2 showed [Js Ah 5d 9h] and won ($0.29) with a pair of Jacks - - - -PokerStars Game #60920749213: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:15:29 WET [2010/06/07 15:15:29 ET] -Table '99999999I' 9-max Seat #7 is the button -Seat 2: Player5 ($0.44 in chips) -Seat 3: Player1 ($0.80 in chips) -Seat 5: Player0 ($3.23 in chips) -Seat 6: Player4 ($0.81 in chips) -Seat 7: Player6 ($2.78 in chips) -Seat 8: Player3 ($4.98 in chips) -Seat 9: Player2 ($0.29 in chips) -Player3: posts small blind $0.01 -Player2: posts big blind $0.02 -*** HOLE CARDS *** -Dealt to Player1 [2c 4c 3s 7c] -Player5: calls $0.02 -Player1: calls $0.02 -Player0: calls $0.02 -Player4: folds -Player6: calls $0.02 -Player3: folds -Player2: checks -*** FLOP *** [7h 8s 4s] -Player2: checks -Player5: bets $0.02 -Player1: raises $0.02 to $0.04 -Player0: raises $0.14 to $0.18 -Player6: calls $0.18 -Player2: raises $0.09 to $0.27 and is all-in -Player5: calls $0.25 -Player1: raises $0.51 to $0.78 and is all-in -Player0: calls $0.60 -Player6: folds -Player5: calls $0.15 and is all-in -*** TURN *** [7h 8s 4s] [2s] -*** RIVER *** [7h 8s 4s 2s] [2h] -*** SHOW DOWN *** -Player1: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens) -Player0: shows [6h 3h Tc 9c] (a pair of Deuces) -Player1 collected $0.69 from side pot-2 -Player5: shows [3d 5c 8h 7s] (two pair, Eights and Sevens) -Player1 collected $0.42 from side pot-1 -Player2: shows [5s 7d Kd 9h] (two pair, Sevens and Deuces) -Player1 collected $1.31 from main pot -*** SUMMARY *** -Total pot $2.54 Main pot $1.31. Side pot-1 $0.42. Side pot-2 $0.69. | Rake $0.12 -Board [7h 8s 4s 2s 2h] -Seat 2: Player5 showed [3d 5c 8h 7s] and lost with two pair, Eights and Sevens -Seat 3: Player1 showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens -Seat 5: Player0 showed [6h 3h Tc 9c] and lost with a pair of Deuces -Seat 6: Player4 folded before Flop (didn't bet) -Seat 7: Player6 (button) folded on the Flop -Seat 8: Player3 (small blind) folded before Flop -Seat 9: Player2 (big blind) showed [5s 7d Kd 9h] and lost with two pair, Sevens and Deuces - - - + +PokerStars Game #14311270221: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:13:12 WET [2010/06/07 15:13:12 ET] +Table '99999999I' 9-max Seat #3 is the button +Seat 2: Player5 ($0.58 in chips) +Seat 3: Player1 ($0.65 in chips) +Seat 6: Player4 ($1.92 in chips) +Seat 7: Player6 ($2.81 in chips) +Seat 8: Player3 ($2.50 in chips) +Seat 9: Player2 ($0.80 in chips) +Player0 will be allowed to play after the button +Player4: posts small blind $0.01 +Player6: posts big blind $0.02 +Player3: posts big blind $0.02 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [8d As 2h Ks] +Player3: checks +Player2: checks +Player5: raises $0.02 to $0.04 +Player1: raises $0.02 to $0.06 +Player4: calls $0.05 +Player6: folds +Player3: calls $0.04 +Player2: calls $0.04 +Player5: calls $0.02 +*** FLOP *** [Qh 7c Qs] +Player4: checks +Player3: checks +Player2: bets $0.31 +Player5: folds +Player1: folds +Player4: folds +Player3: folds +Uncalled bet ($0.31) returned to Player2 +Player2 collected $0.31 from pot +*** SUMMARY *** +Total pot $0.32 | Rake $0.01 +Board [Qh 7c Qs] +Seat 2: Player5 folded on the Flop +Seat 3: Player1 (button) folded on the Flop +Seat 6: Player4 (small blind) folded on the Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player3 folded on the Flop +Seat 9: Player2 collected ($0.31) + + + +PokerStars Game #22865231671: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:14:17 WET [2010/06/07 15:14:17 ET] +Table '99999999I' 9-max Seat #6 is the button +Seat 2: Player5 ($0.52 in chips) +Seat 3: Player1 ($0.59 in chips) +Seat 5: Player0 ($0.90 in chips) +Seat 6: Player4 ($1.86 in chips) +Seat 7: Player6 ($2.79 in chips) +Seat 8: Player3 ($5 in chips) +Seat 9: Player2 ($1.05 in chips) +Player6: posts small blind $0.01 +Player3: posts big blind $0.02 +Player0: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [6d 3c 5s As] +Player2: calls $0.02 +Player5: calls $0.02 +Player1: calls $0.02 +Player0: raises $0.06 to $0.08 +Player4: calls $0.08 +Player6: folds +Player3: folds +Player2: calls $0.06 +Player5: calls $0.06 +Player1: raises $0.06 to $0.14 +Player0: raises $0.55 to $0.69 +Player4: calls $0.61 +Player2: raises $0.36 to $1.05 and is all-in +Player5: folds +Player1: calls $0.45 and is all-in +Player0: calls $0.21 and is all-in +Player4: calls $0.36 +*** FLOP *** [6c Kc Qc] +*** TURN *** [6c Kc Qc] [Jc] +*** RIVER *** [6c Kc Qc Jc] [4c] +*** SHOW DOWN *** +Player2: shows [Js Ah 5d 9h] (a pair of Jacks) +Player4: shows [9c 9d 7d 7h] (a pair of Nines) +Player2 collected $0.29 from side pot-2 +Player0: shows [Ks Ad 7s Tc] (a straight, Ten to Ace) +Player0 collected $0.88 from side pot-1 +Player1: shows [6d 3c 5s As] (a pair of Sixes) +Player0 collected $2.35 from main pot +*** SUMMARY *** +Total pot $3.70 Main pot $2.35. Side pot-1 $0.88. Side pot-2 $0.29. | Rake $0.18 +Board [6c Kc Qc Jc 4c] +Seat 2: Player5 folded before Flop +Seat 3: Player1 showed [6d 3c 5s As] and lost with a pair of Sixes +Seat 5: Player0 showed [Ks Ad 7s Tc] and won ($3.23) with a straight, Ten to Ace +Seat 6: Player4 (button) showed [9c 9d 7d 7h] and lost with a pair of Nines +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player3 (big blind) folded before Flop +Seat 9: Player2 showed [Js Ah 5d 9h] and won ($0.29) with a pair of Jacks + + + +PokerStars Game #60920749213: Omaha Pot Limit ($0.01/$0.02 USD) - 2010/06/07 20:15:29 WET [2010/06/07 15:15:29 ET] +Table '99999999I' 9-max Seat #7 is the button +Seat 2: Player5 ($0.44 in chips) +Seat 3: Player1 ($0.80 in chips) +Seat 5: Player0 ($3.23 in chips) +Seat 6: Player4 ($0.81 in chips) +Seat 7: Player6 ($2.78 in chips) +Seat 8: Player3 ($4.98 in chips) +Seat 9: Player2 ($0.29 in chips) +Player3: posts small blind $0.01 +Player2: posts big blind $0.02 +*** HOLE CARDS *** +Dealt to Player1 [2c 4c 3s 7c] +Player5: calls $0.02 +Player1: calls $0.02 +Player0: calls $0.02 +Player4: folds +Player6: calls $0.02 +Player3: folds +Player2: checks +*** FLOP *** [7h 8s 4s] +Player2: checks +Player5: bets $0.02 +Player1: raises $0.02 to $0.04 +Player0: raises $0.14 to $0.18 +Player6: calls $0.18 +Player2: raises $0.09 to $0.27 and is all-in +Player5: calls $0.25 +Player1: raises $0.51 to $0.78 and is all-in +Player0: calls $0.60 +Player6: folds +Player5: calls $0.15 and is all-in +*** TURN *** [7h 8s 4s] [2s] +*** RIVER *** [7h 8s 4s 2s] [2h] +*** SHOW DOWN *** +Player1: shows [2c 4c 3s 7c] (a full house, Deuces full of Sevens) +Player0: shows [6h 3h Tc 9c] (a pair of Deuces) +Player1 collected $0.69 from side pot-2 +Player5: shows [3d 5c 8h 7s] (two pair, Eights and Sevens) +Player1 collected $0.42 from side pot-1 +Player2: shows [5s 7d Kd 9h] (two pair, Sevens and Deuces) +Player1 collected $1.31 from main pot +*** SUMMARY *** +Total pot $2.54 Main pot $1.31. Side pot-1 $0.42. Side pot-2 $0.69. | Rake $0.12 +Board [7h 8s 4s 2s 2h] +Seat 2: Player5 showed [3d 5c 8h 7s] and lost with two pair, Eights and Sevens +Seat 3: Player1 showed [2c 4c 3s 7c] and won ($2.42) with a full house, Deuces full of Sevens +Seat 5: Player0 showed [6h 3h Tc 9c] and lost with a pair of Deuces +Seat 6: Player4 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded on the Flop +Seat 8: Player3 (small blind) folded before Flop +Seat 9: Player2 (big blind) showed [5s 7d Kd 9h] and lost with two pair, Sevens and Deuces + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt index 2674d01d..25720a16 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-FPP-MTT-1r-201005.AllinLotsRebuy.txt @@ -1,1510 +1,1510 @@ -PokerStars Game #20107222971: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (300 in chips) -Seat 2: Player21 (300 in chips) -Seat 3: Player12 (300 in chips) -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (300 in chips) -Seat 6: Player0 (300 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player0: posts the ante 10 -Player21: posts small blind 25 -Player12: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [4s 9d] -Player11: raises 540 to 590 and is all-in -Player18: calls 290 and is all-in -Player0: folds -Player6: calls 290 and is all-in -Player21: folds -Player12: calls 240 and is all-in -Uncalled bet (300) returned to Player11 -*** FLOP *** [4c 5d Ts] -*** TURN *** [4c 5d Ts] [Js] -*** RIVER *** [4c 5d Ts Js] [7c] -*** SHOW DOWN *** -Player12: shows [3c Kh] (high card King) -Player11: shows [8h 7s] (a pair of Sevens) -Player18: shows [4s 9d] (a pair of Fours) -Player6: shows [Qc Td] (a pair of Tens) -Player6 collected 1245 from pot -Player18 re-buys and receives 600 chips for 2 FPPs -Player12 re-buys and receives 300 chips for 1 FPPs -*** SUMMARY *** -Total pot 1245 | Rake 0 -Board [4c 5d Ts Js 7c] -Seat 1: Player6 (button) showed [Qc Td] and won (1245) with a pair of Tens -Seat 2: Player21 (small blind) folded before Flop -Seat 3: Player12 (big blind) showed [3c Kh] and lost with high card King -Seat 4: Player11 showed [8h 7s] and lost with a pair of Sevens -Seat 5: Player18 showed [4s 9d] and lost with a pair of Fours -Seat 6: Player0 folded before Flop (didn't bet) - - - -PokerStars Game #26543131325: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (1245 in chips) -Seat 2: Player21 (265 in chips) -Seat 3: Player12 (300 in chips) -Seat 4: Player11 (300 in chips) -Seat 5: Player18 (600 in chips) -Seat 6: Player0 (290 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player0: posts the ante 10 -Player12: posts small blind 25 -Player11: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [Qs 7c] -Player18: raises 540 to 590 and is all-in -Player0: folds -Player6: raises 540 to 1130 -Player21: folds -Player12: calls 265 and is all-in -Player11: calls 240 and is all-in -Uncalled bet (540) returned to Player6 -*** FLOP *** [Jc 4c 5d] -*** TURN *** [Jc 4c 5d] [3c] -*** RIVER *** [Jc 4c 5d 3c] [3h] -*** SHOW DOWN *** -Player18: shows [Qs 7c] (a pair of Threes) -Player6: shows [Ah 8c] (a pair of Threes - Ace kicker) -Player6 collected 600 from side pot -Player12: shows [8s Qd] (a pair of Threes - lower kicker) -Player11: shows [2c Jh] (two pair, Jacks and Threes) -Player11 collected 1220 from main pot -Player18 re-buys and receives 600 chips for 2 FPPs -Player12 re-buys and receives 300 chips for 1 FPPs -*** SUMMARY *** -Total pot 1820 Main pot 1220. Side pot 600. | Rake 0 -Board [Jc 4c 5d 3c 3h] -Seat 1: Player6 showed [Ah 8c] and won (600) with a pair of Threes -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 3: Player12 (small blind) showed [8s Qd] and lost with a pair of Threes -Seat 4: Player11 (big blind) showed [2c Jh] and won (1220) with two pair, Jacks and Threes -Seat 5: Player18 showed [Qs 7c] and lost with a pair of Threes -Seat 6: Player0 folded before Flop (didn't bet) - - - -PokerStars Game #76601810212: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player6 (1245 in chips) -Seat 2: Player21 (255 in chips) -Seat 3: Player12 (300 in chips) -Seat 4: Player11 (1220 in chips) -Seat 5: Player18 (600 in chips) -Seat 6: Player0 (280 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player0: posts the ante 10 -Player11: posts small blind 25 -Player18: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [2h Qd] -Player0: raises 150 to 200 -Player6: folds -Player21: folds -Player12: folds -Player11: folds -Player18: raises 350 to 550 -Player0: calls 70 and is all-in -Uncalled bet (280) returned to Player18 -*** FLOP *** [9s Ks Th] -*** TURN *** [9s Ks Th] [Jc] -*** RIVER *** [9s Ks Th Jc] [5h] -*** SHOW DOWN *** -Player18: shows [2h Qd] (a straight, Nine to King) -Player0: shows [As Jd] (a pair of Jacks) -Player18 collected 625 from pot -Player0 finished the tournament in 273rd place -*** SUMMARY *** -Total pot 625 | Rake 0 -Board [9s Ks Th Jc 5h] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player12 (button) folded before Flop (didn't bet) -Seat 4: Player11 (small blind) folded before Flop -Seat 5: Player18 (big blind) showed [2h Qd] and won (625) with a straight, Nine to King -Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks - - - -PokerStars Game #28346217223: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (1235 in chips) -Seat 2: Player21 (245 in chips) -Seat 3: Player12 (290 in chips) -Seat 4: Player11 (1185 in chips) -Seat 5: Player18 (945 in chips) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player18: posts small blind 25 -Player6: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [6d Jc] -Player21: raises 185 to 235 and is all-in -Player12: folds -Player11: calls 235 -Player18: raises 185 to 420 -Player6: raises 805 to 1225 and is all-in -Player11: calls 940 and is all-in -Player18: calls 515 and is all-in -Uncalled bet (50) returned to Player6 -Player13 is connected -*** FLOP *** [5c As Ts] -*** TURN *** [5c As Ts] [6c] -*** RIVER *** [5c As Ts 6c] [6h] -*** SHOW DOWN *** -Player6: shows [8h 9d] (a pair of Sixes) -Player11: shows [2h 2s] (two pair, Sixes and Deuces) -Player11 collected 480 from side pot-2 -Player18: shows [6d Jc] (three of a kind, Sixes) -Player18 collected 2100 from side pot-1 -Player21: shows [Tc Ah] (two pair, Aces and Tens) -Player18 collected 990 from main pot -Player21 re-buys and receives 300 chips for 1 FPPs -*** SUMMARY *** -Total pot 3570 Main pot 990. Side pot-1 2100. Side pot-2 480. | Rake 0 -Board [5c As Ts 6c 6h] -Seat 1: Player6 (big blind) showed [8h 9d] and lost with a pair of Sixes -Seat 2: Player21 showed [Tc Ah] and lost with two pair, Aces and Tens -Seat 3: Player12 folded before Flop (didn't bet) -Seat 4: Player11 (button) showed [2h 2s] and won (480) with two pair, Sixes and Deuces -Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes - - - -PokerStars Game #53469813066: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player6 (50 in chips) -Seat 2: Player21 (300 in chips) -Seat 3: Player12 (280 in chips) -Seat 4: Player11 (480 in chips) -Seat 5: Player18 (3090 in chips) -Seat 6: Player13 (1475 in chips) out of hand (moved from another table into small blind) -Player6: posts the ante 10 -Player21: posts the ante 10 -Player12: posts the ante 10 -Player11: posts the ante 10 -Player18: posts the ante 10 -Player6: posts small blind 25 -Player21: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player18 [9h Qd] -Player6 re-buys and receives 300 chips for 1 FPPs -Player12: raises 220 to 270 and is all-in -Player11: folds -Player18: raises 1230 to 1500 -Player6: calls 15 and is all-in -Player21: folds -Uncalled bet (1230) returned to Player18 -*** FLOP *** [2h 8c 5h] -*** TURN *** [2h 8c 5h] [Ac] -*** RIVER *** [2h 8c 5h Ac] [2s] -*** SHOW DOWN *** -Player12: shows [Kh 6h] (a pair of Deuces) -Player18: shows [9h Qd] (a pair of Deuces - lower kicker) -Player12 collected 470 from side pot -Player6: shows [As 8s] (two pair, Aces and Eights) -Player12 is sitting out -Player6 collected 210 from main pot -*** SUMMARY *** -Total pot 680 Main pot 210. Side pot 470. | Rake 0 -Board [2h 8c 5h Ac 2s] -Seat 1: Player6 (small blind) showed [As 8s] and won (210) with two pair, Aces and Eights -Seat 2: Player21 (big blind) folded before Flop -Seat 3: Player12 showed [Kh 6h] and won (470) with a pair of Deuces -Seat 4: Player11 folded before Flop (didn't bet) -Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces - - - -PokerStars Game #17659192331: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (510 in chips) -Seat 2: Player21 (240 in chips) -Seat 3: Player12 (470 in chips) is sitting out -Seat 4: Player11 (470 in chips) -Seat 5: Player18 (2810 in chips) -Seat 6: Player13 (1475 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player21: posts small blind 50 -Player12: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [Jc Td] -Player11: raises 350 to 450 and is all-in -Player18: raises 2340 to 2790 and is all-in -Player13: folds -Player6: calls 490 and is all-in -Player21: folds -Player12: folds -Uncalled bet (2300) returned to Player18 -*** FLOP *** [2c 4h 3c] -*** TURN *** [2c 4h 3c] [Ac] -*** RIVER *** [2c 4h 3c Ac] [9c] -*** SHOW DOWN *** -Player18: shows [Jc Td] (a flush, Ace high) -Player6: shows [Th Ks] (high card Ace) -Player18 collected 80 from side pot -Player11: shows [8h 9d] (a pair of Nines) -Player18 collected 1620 from main pot -Player11 re-buys and receives 600 chips for 2 FPPs -Player6 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 1700 Main pot 1620. Side pot 80. | Rake 0 -Board [2c 4h 3c Ac 9c] -Seat 1: Player6 (button) showed [Th Ks] and lost with high card Ace -Seat 2: Player21 (small blind) folded before Flop -Seat 3: Player12 (big blind) folded before Flop -Seat 4: Player11 showed [8h 9d] and lost with a pair of Nines -Seat 5: Player18 showed [Jc Td] and won (1700) with a flush, Ace high -Seat 6: Player13 folded before Flop (didn't bet) - - - -PokerStars Game #15161114072: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (600 in chips) -Seat 2: Player21 (170 in chips) -Seat 3: Player12 (350 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (4000 in chips) -Seat 6: Player13 (1455 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player12: posts small blind 50 -Player11: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [Jd 6s] -Player18: raises 3880 to 3980 and is all-in -Player13: calls 1435 and is all-in -Player6: folds -Player21: folds -Player12: folds -Player11: calls 480 and is all-in -Uncalled bet (2545) returned to Player18 -*** FLOP *** [Kd 9s Qh] -*** TURN *** [Kd 9s Qh] [Ts] -*** RIVER *** [Kd 9s Qh Ts] [7c] -*** SHOW DOWN *** -Player18: shows [Jd 6s] (a straight, Nine to King) -Player13: shows [Kc As] (a pair of Kings) -Player18 collected 1710 from side pot -Player11: shows [8s 4h] (high card King) -Player18 collected 1910 from main pot -Player13 re-buys and receives 600 chips for 2 FPPs -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 3620 Main pot 1910. Side pot 1710. | Rake 0 -Board [Kd 9s Qh Ts 7c] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 3: Player12 (small blind) folded before Flop -Seat 4: Player11 (big blind) showed [8s 4h] and lost with high card King -Seat 5: Player18 showed [Jd 6s] and won (3620) with a straight, Nine to King -Seat 6: Player13 showed [Kc As] and lost with a pair of Kings - - - -PokerStars Game #57039811101: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player6 (580 in chips) -Seat 2: Player21 (150 in chips) -Seat 3: Player12 (280 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (6165 in chips) -Seat 6: Player13 (600 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player11: posts small blind 50 -Player18: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [6s Kd] -Player13: raises 480 to 580 and is all-in -Player6: folds -Player21: folds -Player12: folds -Player11: calls 530 and is all-in -Player18: calls 480 -*** FLOP *** [Tc 6c 7c] -*** TURN *** [Tc 6c 7c] [2c] -*** RIVER *** [Tc 6c 7c 2c] [Qs] -*** SHOW DOWN *** -Player11: shows [Ks 3h] (high card King) -Player18: shows [6s Kd] (a pair of Sixes) -Player13: shows [9s 2d] (a pair of Deuces) -Player18 collected 1860 from pot -Player13 re-buys and receives 600 chips for 2 FPPs -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 1860 | Rake 0 -Board [Tc 6c 7c 2c Qs] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player12 (button) folded before Flop (didn't bet) -Seat 4: Player11 (small blind) showed [Ks 3h] and lost with high card King -Seat 5: Player18 (big blind) showed [6s Kd] and won (1860) with a pair of Sixes -Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces - - - -PokerStars Game #90281799521: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (560 in chips) -Seat 2: Player21 (130 in chips) -Seat 3: Player12 (260 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (7425 in chips) -Seat 6: Player13 (600 in chips) -Player6: posts the ante 20 -Player21: posts the ante 20 -Player12: posts the ante 20 -Player11: posts the ante 20 -Player18: posts the ante 20 -Player13: posts the ante 20 -Player18: posts small blind 50 -Player13: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player18 [8d 9h] -Player6: raises 440 to 540 and is all-in -Player21: calls 110 and is all-in -Player12: folds -Player11: calls 540 -Player18: calls 490 -Player13: raises 40 to 580 and is all-in -Player11: calls 40 and is all-in -Player18: calls 40 -*** FLOP *** [Td 4s Th] -*** TURN *** [Td 4s Th] [Qd] -*** RIVER *** [Td 4s Th Qd] [Qs] -*** SHOW DOWN *** -Player18: shows [8d 9h] (two pair, Queens and Tens) -Player13: shows [3d 3h] (two pair, Queens and Tens - lower kicker) -Player11: shows [9c 3s] (two pair, Queens and Tens) -Player18 collected 60 from side pot-2 -Player11 collected 60 from side pot-2 -Player6: shows [Kh 7d] (two pair, Queens and Tens - King kicker) -Player6 collected 1720 from side pot-1 -Player21: shows [Kd Qc] (a full house, Queens full of Tens) -Player21 collected 670 from main pot -Player13 has timed out while disconnected -Player13 is sitting out -Player13 finished the tournament in 224th place -*** SUMMARY *** -Total pot 2510 Main pot 670. Side pot-1 1720. Side pot-2 120. | Rake 0 -Board [Td 4s Th Qd Qs] -Seat 1: Player6 showed [Kh 7d] and won (1720) with two pair, Queens and Tens -Seat 2: Player21 showed [Kd Qc] and won (670) with a full house, Queens full of Tens -Seat 3: Player12 folded before Flop (didn't bet) -Seat 4: Player11 (button) showed [9c 3s] and won (60) with two pair, Queens and Tens -Seat 5: Player18 (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens -Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and Tens - - - -PokerStars Game #21189900419: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player6 (1720 in chips) -Seat 2: Player21 (670 in chips) -Seat 3: Player12 (240 in chips) is sitting out -Seat 4: Player11 (60 in chips) -Seat 5: Player18 (6885 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player12: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player6: posts small blind 100 -Player21: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player18 [Td 9d] -Player12: folds -Player11: calls 20 and is all-in -Player7 is connected -Player18: raises 6645 to 6845 and is all-in -Player6: folds -Player21: folds -Uncalled bet (6645) returned to Player18 -*** FLOP *** [9s As 2s] -*** TURN *** [9s As 2s] [4h] -*** RIVER *** [9s As 2s 4h] [5h] -*** SHOW DOWN *** -Player18: shows [Td 9d] (a pair of Nines) -Player18 collected 440 from side pot -Player11: shows [Jh 7s] (high card Ace) -Player18 collected 280 from main pot -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 720 Main pot 280. Side pot 440. | Rake 0 -Board [9s As 2s 4h 5h] -Seat 1: Player6 (small blind) folded before Flop -Seat 2: Player21 (big blind) folded before Flop -Seat 3: Player12 folded before Flop (didn't bet) -Seat 4: Player11 showed [Jh 7s] and lost with high card Ace -Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines - - - -PokerStars Game #16652117062: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (1580 in chips) -Seat 2: Player21 (430 in chips) -Seat 3: Player12 (200 in chips) is sitting out -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (7365 in chips) -Seat 6: Player7 (600 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player12: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player7: posts the ante 40 -Player21: posts small blind 100 -Player12: posts big blind 160 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [2c 4d] -Player11: raises 400 to 560 and is all-in -Player18: raises 6765 to 7325 and is all-in -Player7: calls 560 and is all-in -Player6: folds -Player21: calls 290 and is all-in -Player12: folds -Uncalled bet (6765) returned to Player18 -*** FLOP *** [3s Js 5c] -*** TURN *** [3s Js 5c] [9c] -*** RIVER *** [3s Js 5c 9c] [7d] -*** SHOW DOWN *** -Player11: shows [Qc Jc] (a pair of Jacks) -Player18: shows [2c 4d] (high card Jack) -Player7: shows [Qd Jh] (a pair of Jacks) -Player11 collected 255 from side pot-2 -Player7 collected 255 from side pot-2 -Player21: shows [As Ac] (a pair of Aces) -Player21 collected 920 from side pot-1 -Player21 collected 1040 from main pot -Player12 finished the tournament in 214th place -*** SUMMARY *** -Total pot 2470 Main pot 1040. Side pot-1 920. Side pot-2 510. | Rake 0 -Board [3s Js 5c 9c 7d] -Seat 1: Player6 (button) folded before Flop (didn't bet) -Seat 2: Player21 (small blind) showed [As Ac] and won (1960) with a pair of Aces -Seat 3: Player12 (big blind) folded before Flop -Seat 4: Player11 showed [Qc Jc] and won (255) with a pair of Jacks -Seat 5: Player18 showed [2c 4d] and lost with high card Jack -Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks - - - -PokerStars Game #18934320061: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (1540 in chips) -Seat 2: Player21 (1960 in chips) -Seat 4: Player11 (255 in chips) -Seat 5: Player18 (6765 in chips) -Seat 6: Player7 (255 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player7: posts the ante 40 -Player11: posts small blind 100 -Player18: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player18 [Ts 9h] -Player7: raises 15 to 215 and is all-in -Player6: calls 215 -Player21: folds -Player11: calls 115 and is all-in -Player16 is connected -Player18: calls 15 -*** FLOP *** [8h Td 7s] -Player18: checks -Player6: bets 400 -Player18: raises 800 to 1200 -Player6: raises 85 to 1285 and is all-in -Player18: calls 85 -*** TURN *** [8h Td 7s] [6s] -*** RIVER *** [8h Td 7s 6s] [Kd] -*** SHOW DOWN *** -Player18: shows [Ts 9h] (a straight, Six to Ten) -Player6: shows [Jh Tc] (a pair of Tens) -Player18 collected 2570 from side pot -Player7: shows [Ah 9d] (a straight, Six to Ten) -Player11: shows [9s Qd] (a straight, Six to Ten) -Player11 collected 354 from main pot -Player18 collected 353 from main pot -Player7 collected 353 from main pot -Player6 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 3630 Main pot 1060. Side pot 2570. | Rake 0 -Board [8h Td 7s 6s Kd] -Seat 1: Player6 showed [Jh Tc] and lost with a pair of Tens -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 4: Player11 (small blind) showed [9s Qd] and won (354) with a straight, Six to Ten -Seat 5: Player18 (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten -Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten - - - -PokerStars Game #14415194893: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (600 in chips) -Seat 2: Player21 (1920 in chips) -Seat 3: Player16 (3020 in chips) -Seat 4: Player11 (354 in chips) -Seat 5: Player18 (8148 in chips) -Seat 6: Player7 (353 in chips) -Player6: posts the ante 40 -Player21: posts the ante 40 -Player16: posts the ante 40 -Player11: posts the ante 40 -Player18: posts the ante 40 -Player7: posts the ante 40 -Player18: posts small blind 100 -Player7: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player18 [Ks 4c] -Player6 said, "dikhead" -Player6: folds -Player18 said, "chatban" -Player21: folds -Player16: raises 200 to 400 -Player11: calls 314 and is all-in -Player18: calls 300 -Player7: calls 113 and is all-in -*** FLOP *** [9c 5d 2d] -Player18: checks -Player16: checks -*** TURN *** [9c 5d 2d] [Kh] -Player18: checks -Player16: checks -*** RIVER *** [9c 5d 2d Kh] [9d] -Player18: checks -Player16: checks -*** SHOW DOWN *** -Player18: shows [Ks 4c] (two pair, Kings and Nines) -Player16: mucks hand -Player18 collected 172 from side pot-2 -Player11: mucks hand -Player6 said, "cok face dip shiit" -Player18 collected 3 from side pot-1 -Player7: mucks hand -Player18 collected 1492 from main pot -Player7 re-buys and receives 600 chips for 2 FPPs -Player11 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 1667 Main pot 1492. Side pot-1 3. Side pot-2 172. | Rake 0 -Board [9c 5d 2d Kh 9d] -Seat 1: Player6 folded before Flop (didn't bet) -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player16 mucked [Ad 5c] -Seat 4: Player11 (button) mucked [4h 4d] -Seat 5: Player18 (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines -Seat 6: Player7 (big blind) mucked [Qh 2s] - - - -PokerStars Game #48839292212: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player6 (560 in chips) -Seat 2: Player21 (1880 in chips) -Seat 3: Player16 (2580 in chips) -Seat 4: Player11 (600 in chips) -Seat 5: Player18 (9375 in chips) -Seat 6: Player7 (600 in chips) -Player6: posts the ante 80 -Player21: posts the ante 80 -Player16: posts the ante 80 -Player11: posts the ante 80 -Player18: posts the ante 80 -Player7: posts the ante 80 -Player7: posts small blind 200 -Player6: posts big blind 400 -*** HOLE CARDS *** -Dealt to Player18 [As Ad] -Player18 said, "chatban" -Player21: raises 1400 to 1800 and is all-in -Player16: folds -Player11: calls 520 and is all-in -Player18: raises 7495 to 9295 and is all-in -Player7: calls 320 and is all-in -Player6: calls 80 and is all-in -Uncalled bet (7495) returned to Player18 -*** FLOP *** [6h 8d 2c] -*** TURN *** [6h 8d 2c] [8s] -Player11 is disconnected -*** RIVER *** [6h 8d 2c 8s] [8h] -*** SHOW DOWN *** -Player21: shows [5d 5s] (a full house, Eights full of Fives) -Player18: shows [As Ad] (a full house, Eights full of Aces) -Player6 said, "cok face dik sucker" -Player18 collected 2560 from side pot-2 -Player7: shows [3h Jh] (three of a kind, Eights) -Player11: shows [5h Kd] (three of a kind, Eights) -Player18 collected 160 from side pot-1 -Player6: shows [3d Tc] (three of a kind, Eights) -Player18 collected 2880 from main pot -Player6 said, "cok head" -Player7 re-buys and receives 600 chips for 2 FPPs -Player18 said, "lol" -Player6 said, "dik" -Player6 said, "dik" -Player6 said, "dik" -Player18 said, "tilt" -Player6 said, "dikd" -Player6 said, "idk" -Player6 said, "dik" -Player6 said, "dik" -Player18 said, "tilt" -Player6 said, "dik" -Player18 said, "tilt" -Player6 said, "dik" -Player6 said, "dik" -Player6 said, "dik" -Player18 said, "hahahahaha" -Player6 said, "dik" -Player6 said, "dio" -Player11 has timed out while disconnected -Player21 re-buys and receives 600 chips for 2 FPPs -Player6 re-buys and receives 300 chips for 1 FPPs -Player11 finished the tournament in 185th place -*** SUMMARY *** -Total pot 5600 Main pot 2880. Side pot-1 160. Side pot-2 2560. | Rake 0 -Board [6h 8d 2c 8s 8h] -Seat 1: Player6 (big blind) showed [3d Tc] and lost with three of a kind, Eights -Seat 2: Player21 showed [5d 5s] and lost with a full house, Eights full of Fives -Seat 3: Player16 folded before Flop (didn't bet) -Seat 4: Player11 showed [5h Kd] and lost with three of a kind, Eights -Seat 5: Player18 (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces -Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eights - - - -PokerStars Game #15911190352: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] -Table '999999998 11' 6-max Seat #6 is the button -Seat 1: Player6 (300 in chips) -Seat 2: Player21 (600 in chips) -Seat 3: Player16 (2500 in chips) -Seat 5: Player18 (13095 in chips) -Seat 6: Player7 (600 in chips) -Player6: posts the ante 80 -Player21: posts the ante 80 -Player16: posts the ante 80 -Player18: posts the ante 80 -Player7: posts the ante 80 -Player6: posts small blind 200 -Player21: posts big blind 400 -*** HOLE CARDS *** -Dealt to Player18 [3s 4d] -Player16: folds -Player18: raises 400 to 800 -Player7: folds -Player6: calls 20 and is all-in -Player21: calls 120 and is all-in -Uncalled bet (280) returned to Player18 -*** FLOP *** [Kh Jc 7c] -*** TURN *** [Kh Jc 7c] [Kd] -*** RIVER *** [Kh Jc 7c Kd] [3c] -*** SHOW DOWN *** -Player21: shows [5h Qc] (a pair of Kings) -Player18: shows [3s 4d] (two pair, Kings and Threes) -Player1 is connected -Player6 said, "haha dik" -Player18 collected 600 from side pot -Player6: shows [4s 7d] (two pair, Kings and Sevens) -Player6 collected 1060 from main pot -Player21 re-buys and receives 600 chips for 2 FPPs -Player6 said, "dik head" -*** SUMMARY *** -Total pot 1660 Main pot 1060. Side pot 600. | Rake 0 -Board [Kh Jc 7c Kd 3c] -Seat 1: Player6 (small blind) showed [4s 7d] and won (1060) with two pair, Kings and Sevens -Seat 2: Player21 (big blind) showed [5h Qc] and lost with a pair of Kings -Seat 3: Player16 folded before Flop (didn't bet) -Seat 5: Player18 showed [3s 4d] and won (600) with two pair, Kings and Threes -Seat 6: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #31048178850: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player6 (1060 in chips) -Seat 2: Player21 (600 in chips) -Seat 3: Player16 (2420 in chips) -Seat 4: Player1 (600 in chips) -Seat 5: Player18 (13095 in chips) -Seat 6: Player7 (520 in chips) -Player6: posts the ante 80 -Player21: posts the ante 80 -Player16: posts the ante 80 -Player1: posts the ante 80 -Player18: posts the ante 80 -Player7: posts the ante 80 -Player21: posts small blind 200 -Player16: posts big blind 400 -*** HOLE CARDS *** -Dealt to Player18 [5d 6c] -Player18 said, "hahahaha" -Player1: raises 120 to 520 and is all-in -Player18: calls 520 -Player7: calls 440 and is all-in -Player6: folds -Player21: calls 320 and is all-in -Player16: calls 120 -*** FLOP *** [8d 8c 7d] -Player16: checks -Player18: checks -*** TURN *** [8d 8c 7d] [Qd] -Player16: checks -Player18: checks -*** RIVER *** [8d 8c 7d Qd] [Ah] -Player16: checks -Player18: checks -*** SHOW DOWN *** -Player21: shows [Th Ts] (two pair, Tens and Eights) -Player16: mucks hand -Player1: mucks hand -Player18: mucks hand -Player21 collected 320 from side pot -Player7: shows [Td Qc] (two pair, Queens and Eights) -Player6 said, "dik" -Player7 collected 2680 from main pot -Player1 re-buys and receives 600 chips for 2 FPPs -*** SUMMARY *** -Total pot 3000 Main pot 2680. Side pot 320. | Rake 0 -Board [8d 8c 7d Qd Ah] -Seat 1: Player6 (button) folded before Flop (didn't bet) -Seat 2: Player21 (small blind) showed [Th Ts] and won (320) with two pair, Tens and Eights -Seat 3: Player16 (big blind) mucked [Js 2c] -Seat 4: Player1 mucked [2h 9d] -Seat 5: Player18 mucked [5d 6c] -Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights - - - -PokerStars Game #61011805711: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player6 (980 in chips) -Seat 2: Player21 (320 in chips) -Seat 3: Player16 (1820 in chips) -Seat 4: Player1 (600 in chips) -Seat 5: Player18 (12495 in chips) -Seat 6: Player7 (2680 in chips) -Player6: posts the ante 120 -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player16: posts small blind 300 -Player1: posts big blind 480 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [2c 9h] -Player18: folds -Player7: folds -Player6: raises 380 to 860 and is all-in -Player21: folds -Player16: calls 560 -*** FLOP *** [Kd 7c Ad] -Player6 said, "bye dik head" -*** TURN *** [Kd 7c Ad] [4d] -*** RIVER *** [Kd 7c Ad 4d] [6d] -*** SHOW DOWN *** -Player16: shows [Jh 3h] (high card Ace) -Player6: shows [Jc 9c] (high card Ace - King+Jack+Nine kicker) -Player6 collected 760 from side pot -Player1: shows [Js 7h] (a pair of Sevens) -Player1 collected 2160 from main pot -*** SUMMARY *** -Total pot 2920 Main pot 2160. Side pot 760. | Rake 0 -Board [Kd 7c Ad 4d 6d] -Seat 1: Player6 showed [Jc 9c] and won (760) with high card Ace -Seat 2: Player21 (button) folded before Flop (didn't bet) -Seat 3: Player16 (small blind) showed [Jh 3h] and lost with high card Ace -Seat 4: Player1 (big blind) showed [Js 7h] and won (2160) with a pair of Sevens -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #41541235827: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player6 (760 in chips) -Seat 2: Player21 (200 in chips) -Seat 3: Player16 (840 in chips) -Seat 4: Player1 (2160 in chips) -Seat 5: Player18 (12375 in chips) -Seat 6: Player7 (2560 in chips) -Player6: posts the ante 120 -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player1: posts small blind 300 -Player18: posts big blind 600 -*** HOLE CARDS *** -Dealt to Player18 [2d 4h] -Player7: folds -Player6 said, "dik face" -Player6: raises 40 to 640 and is all-in -Player21: calls 80 and is all-in -Player16: folds -Player1: folds -Player18: calls 40 -*** FLOP *** [5h 4d 9h] -Player6 said, "bye dumb shiiit" -*** TURN *** [5h 4d 9h] [6d] -*** RIVER *** [5h 4d 9h 6d] [Jd] -*** SHOW DOWN *** -Player18: shows [2d 4h] (a pair of Fours) -Player6: shows [Jc Ad] (a pair of Jacks) -Player6 collected 1340 from side pot -Player21: shows [7h 7d] (a pair of Sevens) -Player6 collected 1040 from main pot -Player6 said, "ok" -Player21 re-buys and receives 600 chips for 2 FPPs -Player6 said, "not yet" -*** SUMMARY *** -Total pot 2380 Main pot 1040. Side pot 1340. | Rake 0 -Board [5h 4d 9h 6d Jd] -Seat 1: Player6 showed [Jc Ad] and won (2380) with a pair of Jacks -Seat 2: Player21 showed [7h 7d] and lost with a pair of Sevens -Seat 3: Player16 (button) folded before Flop (didn't bet) -Seat 4: Player1 (small blind) folded before Flop -Seat 5: Player18 (big blind) showed [2d 4h] and lost with a pair of Fours -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #27976721395: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player6 (2380 in chips) -Seat 2: Player21 (600 in chips) -Seat 3: Player16 (720 in chips) -Seat 4: Player1 (1740 in chips) -Seat 5: Player18 (11615 in chips) -Seat 6: Player7 (2440 in chips) -Player6: posts the ante 120 -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player18: posts small blind 300 -Player7: posts big blind 600 -*** HOLE CARDS *** -Dealt to Player18 [Jd Js] -Player6: raises 1660 to 2260 and is all-in -Player21: folds -Player16: calls 600 and is all-in -Player1: calls 1620 and is all-in -Player18: calls 1960 -Player7: folds -*** FLOP *** [Kc 8d Qh] -Player6 said, "comn dik face omg ur so **** dik heads" -*** TURN *** [Kc 8d Qh] [5s] -*** RIVER *** [Kc 8d Qh 5s] [9s] -*** SHOW DOWN *** -Player18: shows [Jd Js] (a pair of Jacks) -Player6: shows [4c 4s] (a pair of Fours) -Player18 collected 1280 from side pot-2 -Player1: shows [As 4d] (high card Ace) -Player18 collected 3060 from side pot-1 -Player16: shows [Td Ks] (a pair of Kings) -Player6 said, "bye **** head" -Player16 collected 3720 from main pot -Player18 said, "byebye" -Player1 re-buys and receives 600 chips for 2 FPPs -Player6 finished the tournament in 155th place -*** SUMMARY *** -Total pot 8060 Main pot 3720. Side pot-1 3060. Side pot-2 1280. | Rake 0 -Board [Kc 8d Qh 5s 9s] -Seat 1: Player6 showed [4c 4s] and lost with a pair of Fours -Seat 2: Player21 folded before Flop (didn't bet) -Seat 3: Player16 showed [Td Ks] and won (3720) with a pair of Kings -Seat 4: Player1 (button) showed [As 4d] and lost with high card Ace -Seat 5: Player18 (small blind) showed [Jd Js] and won (4340) with a pair of Jacks -Seat 6: Player7 (big blind) folded before Flop - - - -PokerStars Game #25234313412: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 2: Player21 (480 in chips) -Seat 3: Player16 (3720 in chips) -Seat 4: Player1 (600 in chips) -Seat 5: Player18 (13575 in chips) -Seat 6: Player7 (1720 in chips) -Player21: posts the ante 120 -Player16: posts the ante 120 -Player1: posts the ante 120 -Player18: posts the ante 120 -Player7: posts the ante 120 -Player7: posts small blind 300 -Player21: posts big blind 360 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [Qh 3s] -Player16: folds -Player1: calls 480 and is all-in -Player18: folds -Player7: calls 180 -*** FLOP *** [8h 5c 3d] -*** TURN *** [8h 5c 3d] [7d] -*** RIVER *** [8h 5c 3d 7d] [2s] -*** SHOW DOWN *** -Player7: shows [9s Ac] (high card Ace) -Player1: shows [5h Qs] (a pair of Fives) -Player1 collected 240 from side pot -Player21: shows [6c Ks] (high card King) -Player1 collected 1680 from main pot -Player5 is connected -Player21 finished the tournament in 148th place -*** SUMMARY *** -Total pot 1920 Main pot 1680. Side pot 240. | Rake 0 -Board [8h 5c 3d 7d 2s] -Seat 2: Player21 (big blind) showed [6c Ks] and lost with high card King -Seat 3: Player16 folded before Flop (didn't bet) -Seat 4: Player1 showed [5h Qs] and won (1920) with a pair of Fives -Seat 5: Player18 (button) folded before Flop (didn't bet) -Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace - - - -PokerStars Game #95143913174: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] -Table '999999998 11' 6-max Seat #6 is the button -Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind) -Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) -Seat 3: Player16 (4100 in chips) -Seat 4: Player1 (2420 in chips) -Seat 5: Player18 (13955 in chips) -Seat 6: Player7 (1620 in chips) -Player16: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player16: posts small blind 400 -Player1: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [Qs 4h] -Player18: folds -Player7: folds -Player16: raises 3140 to 3940 and is all-in -Player1: calls 1460 and is all-in -Uncalled bet (1680) returned to Player16 -*** FLOP *** [2d 7c Jh] -*** TURN *** [2d 7c Jh] [3c] -*** RIVER *** [2d 7c Jh 3c] [5h] -*** SHOW DOWN *** -Player16: shows [Ah Kh] (high card Ace) -Player1: shows [Tc 5s] (a pair of Fives) -Player1 collected 5160 from pot -*** SUMMARY *** -Total pot 5160 | Rake 0 -Board [2d 7c Jh 3c 5h] -Seat 3: Player16 (small blind) showed [Ah Kh] and lost with high card Ace -Seat 4: Player1 (big blind) showed [Tc 5s] and won (5160) with a pair of Fives -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #50411262384: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] -Table '999999998 11' 6-max Seat #3 is the button -Seat 1: Player5 (1940 in chips) -Seat 2: Player4 (3540 in chips) -Seat 3: Player16 (1680 in chips) -Seat 4: Player1 (5160 in chips) -Seat 5: Player18 (13795 in chips) -Seat 6: Player7 (1460 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player16: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player1: posts small blind 400 -Player18: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [Ac Th] -Player7: folds -Player5: folds -Player4: folds -Player16: raises 720 to 1520 and is all-in -Player1: raises 3480 to 5000 and is all-in -Player18: folds -Uncalled bet (3480) returned to Player1 -*** FLOP *** [4s 3c Kc] -*** TURN *** [4s 3c Kc] [7s] -*** RIVER *** [4s 3c Kc 7s] [9s] -*** SHOW DOWN *** -Player1: shows [Qs Kh] (a pair of Kings) -Player16: shows [9d Qc] (a pair of Nines) -Player1 collected 4800 from pot -Player16 finished the tournament in 120th place -*** SUMMARY *** -Total pot 4800 | Rake 0 -Board [4s 3c Kc 7s 9s] -Seat 1: Player5 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player16 (button) showed [9d Qc] and lost with a pair of Nines -Seat 4: Player1 (small blind) showed [Qs Kh] and won (4800) with a pair of Kings -Seat 5: Player18 (big blind) folded before Flop -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #16124236191: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] -Table '999999998 11' 6-max Seat #4 is the button -Seat 1: Player5 (1780 in chips) -Seat 2: Player4 (3380 in chips) -Seat 4: Player1 (8280 in chips) -Seat 5: Player18 (12835 in chips) -Seat 6: Player7 (1300 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player18: posts small blind 400 -Player7: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [9d 7d] -Player5: folds -Player4: folds -Player1: calls 800 -Player9 is connected -Player18: calls 400 -Player7: checks -*** FLOP *** [Tc Qd 9c] -Player18: checks -Player7: bets 340 and is all-in -Player1: calls 340 -Player18: calls 340 -*** TURN *** [Tc Qd 9c] [Td] -Player18: checks -Player1: checks -*** RIVER *** [Tc Qd 9c Td] [Jh] -Player18: checks -Player1: bets 2400 -Player18: folds -Uncalled bet (2400) returned to Player1 -*** SHOW DOWN *** -Player1: shows [6c 8d] (a straight, Eight to Queen) -Player7: shows [Jc 8c] (a straight, Eight to Queen) -Player7 collected 2110 from pot -Player1 collected 2110 from pot -*** SUMMARY *** -Total pot 4220 | Rake 0 -Board [Tc Qd 9c Td Jh] -Seat 1: Player5 folded before Flop (didn't bet) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 4: Player1 (button) showed [6c 8d] and won (2110) with a straight, Eight to Queen -Seat 5: Player18 (small blind) folded on the River -Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight to Queen - - - -PokerStars Game #20501244423: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] -Table '999999998 11' 6-max Seat #5 is the button -Seat 1: Player5 (1620 in chips) -Seat 2: Player4 (3220 in chips) -Seat 3: Player9 (3065 in chips) -Seat 4: Player1 (9090 in chips) -Seat 5: Player18 (11535 in chips) -Seat 6: Player7 (2110 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player9: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player7: posts small blind 400 -Player5: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [3c Kd] -Player4: folds -Player9: folds -Player1: folds -Player18: folds -Player7: folds -Uncalled bet (400) returned to Player5 -Player5 collected 1760 from pot -*** SUMMARY *** -Total pot 1760 | Rake 0 -Seat 1: Player5 (big blind) collected (1760) -Seat 2: Player4 folded before Flop (didn't bet) -Seat 3: Player9 folded before Flop (didn't bet) -Seat 4: Player1 folded before Flop (didn't bet) -Seat 5: Player18 (button) folded before Flop (didn't bet) -Seat 6: Player7 (small blind) folded before Flop - - - -PokerStars Game #18390596592: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] -Table '999999998 11' 6-max Seat #6 is the button -Seat 1: Player5 (2820 in chips) -Seat 2: Player4 (3060 in chips) -Seat 3: Player9 (2905 in chips) -Seat 4: Player1 (8930 in chips) -Seat 5: Player18 (11375 in chips) -Seat 6: Player7 (1550 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player9: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player5: posts small blind 400 -Player4: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [2h Qc] -Player9: folds -Player1: folds -Player18: folds -Player7: folds -Player5: calls 400 -Player4: checks -*** FLOP *** [9c 6d Td] -Player5: checks -Player4: checks -*** TURN *** [9c 6d Td] [4d] -Player5: checks -Player4: bets 2100 and is all-in -Player5: folds -Uncalled bet (2100) returned to Player4 -Player4 collected 2560 from pot -Player4: doesn't show hand -*** SUMMARY *** -Total pot 2560 | Rake 0 -Board [9c 6d Td 4d] -Seat 1: Player5 (small blind) folded on the Turn -Seat 2: Player4 (big blind) collected (2560) -Seat 3: Player9 folded before Flop (didn't bet) -Seat 4: Player1 folded before Flop (didn't bet) -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 (button) folded before Flop (didn't bet) - - - -PokerStars Game #52768090525: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] -Table '999999998 11' 6-max Seat #1 is the button -Seat 1: Player5 (1860 in chips) -Seat 2: Player4 (4660 in chips) -Seat 3: Player9 (2745 in chips) -Seat 4: Player1 (8770 in chips) -Seat 5: Player18 (11215 in chips) -Seat 6: Player7 (1390 in chips) -Player5: posts the ante 160 -Player4: posts the ante 160 -Player9: posts the ante 160 -Player1: posts the ante 160 -Player18: posts the ante 160 -Player7: posts the ante 160 -Player4: posts small blind 400 -Player9: posts big blind 800 -*** HOLE CARDS *** -Dealt to Player18 [3s 3c] -Player1: raises 4800 to 5600 -Player18: folds -Player7: folds -Player5: folds -Player4: folds -Player9: folds -Uncalled bet (4800) returned to Player1 -Player1 collected 2960 from pot -*** SUMMARY *** -Total pot 2960 | Rake 0 -Seat 1: Player5 (button) folded before Flop (didn't bet) -Seat 2: Player4 (small blind) folded before Flop -Seat 3: Player9 (big blind) folded before Flop -Seat 4: Player1 collected (2960) -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 folded before Flop (didn't bet) - - - -PokerStars Game #23011819420: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] -Table '999999998 11' 6-max Seat #2 is the button -Seat 1: Player5 (1700 in chips) -Seat 2: Player4 (4100 in chips) -Seat 3: Player9 (1785 in chips) -Seat 4: Player1 (10770 in chips) -Seat 5: Player18 (11055 in chips) -Seat 6: Player7 (1230 in chips) -Player5: posts the ante 240 -Player4: posts the ante 240 -Player9: posts the ante 240 -Player1: posts the ante 240 -Player18: posts the ante 240 -Player7: posts the ante 240 -Player9: posts small blind 600 -Player1: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [2c 6d] -Player18: folds -Player7: calls 990 and is all-in -Player5: raises 260 to 1460 and is all-in -Player4: folds -Player9: folds -Player1: calls 260 -*** FLOP *** [Ts 7d Js] -*** TURN *** [Ts 7d Js] [4c] -*** RIVER *** [Ts 7d Js 4c] [3d] -*** SHOW DOWN *** -Player1: shows [2h 9s] (high card Jack) -Player5: shows [Jc Jd] (three of a kind, Jacks) -Player5 collected 940 from side pot -Player7: shows [4d Ac] (a pair of Fours) -Player5 collected 5010 from main pot -*** SUMMARY *** -Total pot 5950 Main pot 5010. Side pot 940. | Rake 0 -Board [Ts 7d Js 4c 3d] -Seat 1: Player5 showed [Jc Jd] and won (5950) with three of a kind, Jacks -Seat 2: Player4 (button) folded before Flop (didn't bet) -Seat 3: Player9 (small blind) folded before Flop -Seat 4: Player1 (big blind) showed [2h 9s] and lost with high card Jack -Seat 5: Player18 folded before Flop (didn't bet) -Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours - - - -PokerStars Game #24661247813: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] -Table '999999998 48' 6-max Seat #1 is the button -Seat 1: Player17 (14798 in chips) -Seat 2: Player3 (7215 in chips) -Seat 3: Player15 (6378 in chips) -Seat 4: Player18 (10815 in chips) -Seat 5: Player2 (8520 in chips) -Seat 6: Player22 (11935 in chips) -Player17: posts the ante 240 -Player3: posts the ante 240 -Player15: posts the ante 240 -Player18: posts the ante 240 -Player2: posts the ante 240 -Player22: posts the ante 240 -Player3: posts small blind 600 -Player15: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [2s Td] -Player18: folds -Player2: raises 7080 to 8280 and is all-in -Player22: calls 8280 -Player17: folds -Player3: folds -Player15: calls 4938 and is all-in -*** FLOP *** [Ac Th 9d] -*** TURN *** [Ac Th 9d] [3c] -*** RIVER *** [Ac Th 9d 3c] [4d] -*** SHOW DOWN *** -Player2: shows [Kd 5s] (high card Ace) -Player22: shows [2c Ah] (a pair of Aces) -Player22 collected 4284 from side pot -Player15: shows [7d 7c] (a pair of Sevens) -Player22 collected 20454 from main pot -Player2 finished the tournament in 74th place -Player15 finished the tournament in 75th place -*** SUMMARY *** -Total pot 24738 Main pot 20454. Side pot 4284. | Rake 0 -Board [Ac Th 9d 3c 4d] -Seat 1: Player17 (button) folded before Flop (didn't bet) -Seat 2: Player3 (small blind) folded before Flop -Seat 3: Player15 (big blind) showed [7d 7c] and lost with a pair of Sevens -Seat 4: Player18 folded before Flop (didn't bet) -Seat 5: Player2 showed [Kd 5s] and lost with high card Ace -Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces - - - -PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] -Table '999999998 48' 6-max Seat #2 is the button -Seat 1: Player17 (14558 in chips) -Seat 2: Player3 (6375 in chips) -Seat 4: Player18 (10575 in chips) -Seat 6: Player22 (28153 in chips) -Player17: posts the ante 240 -Player3: posts the ante 240 -Player18: posts the ante 240 -Player22: posts the ante 240 -Player18: posts small blind 600 -Player22: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [6h Jd] -Player17: folds -Player3: raises 4935 to 6135 and is all-in -Player18: folds -Player19 is connected -Player22: calls 4935 -Player10 is connected -*** FLOP *** [2s Kh 9s] -*** TURN *** [2s Kh 9s] [Kc] -*** RIVER *** [2s Kh 9s Kc] [3c] -*** SHOW DOWN *** -Player22: shows [Ah Tc] (a pair of Kings) -Player3: shows [5h As] (a pair of Kings - lower kicker) -Player22 collected 13830 from pot -Player3 finished the tournament in 70th place -*** SUMMARY *** -Total pot 13830 | Rake 0 -Board [2s Kh 9s Kc 3c] -Seat 1: Player17 folded before Flop (didn't bet) -Seat 2: Player3 (button) showed [5h As] and lost with a pair of Kings -Seat 4: Player18 (small blind) folded before Flop -Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings - - - -PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] -Table '999999998 48' 6-max Seat #4 is the button -Seat 1: Player17 (14318 in chips) -Seat 3: Player19 (1508 in chips) -Seat 4: Player18 (9735 in chips) -Seat 5: Player10 (5690 in chips) out of hand (moved from another table into small blind) -Seat 6: Player22 (35608 in chips) -Player17: posts the ante 240 -Player19: posts the ante 240 -Player18: posts the ante 240 -Player22: posts the ante 240 -Player22: posts small blind 600 -Player17: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [2s Ac] -Player19: folds -Player18: raises 8295 to 9495 and is all-in -Player22: folds -Player17: calls 8295 -*** FLOP *** [Kc 5d 3d] -*** TURN *** [Kc 5d 3d] [6c] -*** RIVER *** [Kc 5d 3d 6c] [Ad] -*** SHOW DOWN *** -Player17: shows [Jh Qd] (high card Ace) -Player18: shows [2s Ac] (a pair of Aces) -Player18 collected 20550 from pot -*** SUMMARY *** -Total pot 20550 | Rake 0 -Board [Kc 5d 3d 6c Ad] -Seat 1: Player17 (big blind) showed [Jh Qd] and lost with high card Ace -Seat 3: Player19 folded before Flop (didn't bet) -Seat 4: Player18 (button) showed [2s Ac] and won (20550) with a pair of Aces -Seat 6: Player22 (small blind) folded before Flop - - - -PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] -Table '999999998 48' 6-max Seat #6 is the button -Seat 1: Player17 (4583 in chips) -Seat 3: Player19 (1268 in chips) -Seat 4: Player18 (20550 in chips) -Seat 5: Player10 (5690 in chips) -Seat 6: Player22 (34768 in chips) -Player17: posts the ante 240 -Player19: posts the ante 240 -Player18: posts the ante 240 -Player10: posts the ante 240 -Player22: posts the ante 240 -Player17: posts small blind 600 -Player19: posts big blind 1028 and is all-in -*** HOLE CARDS *** -Dealt to Player18 [3d 6c] -Player18: folds -Player10: folds -Player22: raises 1372 to 2400 -Player17: calls 1800 -*** FLOP *** [9c 4s Ac] -Player17: checks -Player22: bets 1200 -Player17: folds -Uncalled bet (1200) returned to Player22 -*** TURN *** [9c 4s Ac] [Kc] -*** RIVER *** [9c 4s Ac Kc] [Qs] -*** SHOW DOWN *** -Player22: shows [Jd Qd] (a pair of Queens) -Player22 collected 2744 from side pot -Player19: shows [7s 4c] (a pair of Fours) -Player22 collected 4284 from main pot -*** SUMMARY *** -Total pot 7028 Main pot 4284. Side pot 2744. | Rake 0 -Board [9c 4s Ac Kc Qs] -Seat 1: Player17 (small blind) folded on the Flop -Seat 3: Player19 (big blind) showed [7s 4c] and lost with a pair of Fours -Seat 4: Player18 folded before Flop (didn't bet) -Seat 5: Player10 folded before Flop (didn't bet) -Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens - - - -PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] -Table '999999998 5' 6-max Seat #4 is the button -Seat 1: Player14 (5780 in chips) -Seat 2: Player17 (1943 in chips) -Seat 3: Player18 (20310 in chips) -Seat 4: Player20 (23421 in chips) -Seat 5: Player8 (19258 in chips) -Seat 6: Player23 (26326 in chips) -Player14: posts the ante 240 -Player17: posts the ante 240 -Player18: posts the ante 240 -Player20: posts the ante 240 -Player8: posts the ante 240 -Player23: posts the ante 240 -Player8: posts small blind 600 -Player23: posts big blind 1200 -*** HOLE CARDS *** -Dealt to Player18 [7d As] -Player14: folds -Player17: folds -Player18: raises 18000 to 19200 -Player20: raises 3981 to 23181 and is all-in -Player8: folds -Player23: folds -Player18: calls 870 and is all-in -Uncalled bet (3111) returned to Player20 -*** FLOP *** [7h 4h 3s] -*** TURN *** [7h 4h 3s] [Th] -*** RIVER *** [7h 4h 3s Th] [Ah] -*** SHOW DOWN *** -Player18: shows [7d As] (two pair, Aces and Sevens) -Player20: shows [Ad Kh] (a flush, Ace high) -Player20 collected 43380 from pot -Player18 finished the tournament in 54th place -*** SUMMARY *** -Total pot 43380 | Rake 0 -Board [7h 4h 3s Th Ah] -Seat 1: Player14 folded before Flop (didn't bet) -Seat 2: Player17 folded before Flop (didn't bet) -Seat 3: Player18 showed [7d As] and lost with two pair, Aces and Sevens -Seat 4: Player20 (button) showed [Ad Kh] and won (43380) with a flush, Ace high -Seat 5: Player8 (small blind) folded before Flop -Seat 6: Player23 (big blind) folded before Flop - - - +PokerStars Game #20107222971: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:46:11 WET [2010/06/04 14:46:11 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (300 in chips) +Seat 2: Player21 (300 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (300 in chips) +Seat 6: Player0 (300 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player21: posts small blind 25 +Player12: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [4s 9d] +Player11: raises 540 to 590 and is all-in +Player18: calls 290 and is all-in +Player0: folds +Player6: calls 290 and is all-in +Player21: folds +Player12: calls 240 and is all-in +Uncalled bet (300) returned to Player11 +*** FLOP *** [4c 5d Ts] +*** TURN *** [4c 5d Ts] [Js] +*** RIVER *** [4c 5d Ts Js] [7c] +*** SHOW DOWN *** +Player12: shows [3c Kh] (high card King) +Player11: shows [8h 7s] (a pair of Sevens) +Player18: shows [4s 9d] (a pair of Fours) +Player6: shows [Qc Td] (a pair of Tens) +Player6 collected 1245 from pot +Player18 re-buys and receives 600 chips for 2 FPPs +Player12 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 1245 | Rake 0 +Board [4c 5d Ts Js 7c] +Seat 1: Player6 (button) showed [Qc Td] and won (1245) with a pair of Tens +Seat 2: Player21 (small blind) folded before Flop +Seat 3: Player12 (big blind) showed [3c Kh] and lost with high card King +Seat 4: Player11 showed [8h 7s] and lost with a pair of Sevens +Seat 5: Player18 showed [4s 9d] and lost with a pair of Fours +Seat 6: Player0 folded before Flop (didn't bet) + + + +PokerStars Game #26543131325: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:00 WET [2010/06/04 14:47:00 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (1245 in chips) +Seat 2: Player21 (265 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (300 in chips) +Seat 5: Player18 (600 in chips) +Seat 6: Player0 (290 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player12: posts small blind 25 +Player11: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [Qs 7c] +Player18: raises 540 to 590 and is all-in +Player0: folds +Player6: raises 540 to 1130 +Player21: folds +Player12: calls 265 and is all-in +Player11: calls 240 and is all-in +Uncalled bet (540) returned to Player6 +*** FLOP *** [Jc 4c 5d] +*** TURN *** [Jc 4c 5d] [3c] +*** RIVER *** [Jc 4c 5d 3c] [3h] +*** SHOW DOWN *** +Player18: shows [Qs 7c] (a pair of Threes) +Player6: shows [Ah 8c] (a pair of Threes - Ace kicker) +Player6 collected 600 from side pot +Player12: shows [8s Qd] (a pair of Threes - lower kicker) +Player11: shows [2c Jh] (two pair, Jacks and Threes) +Player11 collected 1220 from main pot +Player18 re-buys and receives 600 chips for 2 FPPs +Player12 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 1820 Main pot 1220. Side pot 600. | Rake 0 +Board [Jc 4c 5d 3c 3h] +Seat 1: Player6 showed [Ah 8c] and won (600) with a pair of Threes +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player12 (small blind) showed [8s Qd] and lost with a pair of Threes +Seat 4: Player11 (big blind) showed [2c Jh] and won (1220) with two pair, Jacks and Threes +Seat 5: Player18 showed [Qs 7c] and lost with a pair of Threes +Seat 6: Player0 folded before Flop (didn't bet) + + + +PokerStars Game #76601810212: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:47:47 WET [2010/06/04 14:47:47 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (1245 in chips) +Seat 2: Player21 (255 in chips) +Seat 3: Player12 (300 in chips) +Seat 4: Player11 (1220 in chips) +Seat 5: Player18 (600 in chips) +Seat 6: Player0 (280 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player0: posts the ante 10 +Player11: posts small blind 25 +Player18: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [2h Qd] +Player0: raises 150 to 200 +Player6: folds +Player21: folds +Player12: folds +Player11: folds +Player18: raises 350 to 550 +Player0: calls 70 and is all-in +Uncalled bet (280) returned to Player18 +*** FLOP *** [9s Ks Th] +*** TURN *** [9s Ks Th] [Jc] +*** RIVER *** [9s Ks Th Jc] [5h] +*** SHOW DOWN *** +Player18: shows [2h Qd] (a straight, Nine to King) +Player0: shows [As Jd] (a pair of Jacks) +Player18 collected 625 from pot +Player0 finished the tournament in 273rd place +*** SUMMARY *** +Total pot 625 | Rake 0 +Board [9s Ks Th Jc 5h] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player12 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) folded before Flop +Seat 5: Player18 (big blind) showed [2h Qd] and won (625) with a straight, Nine to King +Seat 6: Player0 showed [As Jd] and lost with a pair of Jacks + + + +PokerStars Game #28346217223: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:48:21 WET [2010/06/04 14:48:21 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (1235 in chips) +Seat 2: Player21 (245 in chips) +Seat 3: Player12 (290 in chips) +Seat 4: Player11 (1185 in chips) +Seat 5: Player18 (945 in chips) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player18: posts small blind 25 +Player6: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [6d Jc] +Player21: raises 185 to 235 and is all-in +Player12: folds +Player11: calls 235 +Player18: raises 185 to 420 +Player6: raises 805 to 1225 and is all-in +Player11: calls 940 and is all-in +Player18: calls 515 and is all-in +Uncalled bet (50) returned to Player6 +Player13 is connected +*** FLOP *** [5c As Ts] +*** TURN *** [5c As Ts] [6c] +*** RIVER *** [5c As Ts 6c] [6h] +*** SHOW DOWN *** +Player6: shows [8h 9d] (a pair of Sixes) +Player11: shows [2h 2s] (two pair, Sixes and Deuces) +Player11 collected 480 from side pot-2 +Player18: shows [6d Jc] (three of a kind, Sixes) +Player18 collected 2100 from side pot-1 +Player21: shows [Tc Ah] (two pair, Aces and Tens) +Player18 collected 990 from main pot +Player21 re-buys and receives 300 chips for 1 FPPs +*** SUMMARY *** +Total pot 3570 Main pot 990. Side pot-1 2100. Side pot-2 480. | Rake 0 +Board [5c As Ts 6c 6h] +Seat 1: Player6 (big blind) showed [8h 9d] and lost with a pair of Sixes +Seat 2: Player21 showed [Tc Ah] and lost with two pair, Aces and Tens +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 (button) showed [2h 2s] and won (480) with two pair, Sixes and Deuces +Seat 5: Player18 (small blind) showed [6d Jc] and won (3090) with three of a kind, Sixes + + + +PokerStars Game #53469813066: Tournament #999999999, 1FPP Hold'em No Limit - Level I (25/50) - 2010/06/04 19:49:10 WET [2010/06/04 14:49:10 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (50 in chips) +Seat 2: Player21 (300 in chips) +Seat 3: Player12 (280 in chips) +Seat 4: Player11 (480 in chips) +Seat 5: Player18 (3090 in chips) +Seat 6: Player13 (1475 in chips) out of hand (moved from another table into small blind) +Player6: posts the ante 10 +Player21: posts the ante 10 +Player12: posts the ante 10 +Player11: posts the ante 10 +Player18: posts the ante 10 +Player6: posts small blind 25 +Player21: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player18 [9h Qd] +Player6 re-buys and receives 300 chips for 1 FPPs +Player12: raises 220 to 270 and is all-in +Player11: folds +Player18: raises 1230 to 1500 +Player6: calls 15 and is all-in +Player21: folds +Uncalled bet (1230) returned to Player18 +*** FLOP *** [2h 8c 5h] +*** TURN *** [2h 8c 5h] [Ac] +*** RIVER *** [2h 8c 5h Ac] [2s] +*** SHOW DOWN *** +Player12: shows [Kh 6h] (a pair of Deuces) +Player18: shows [9h Qd] (a pair of Deuces - lower kicker) +Player12 collected 470 from side pot +Player6: shows [As 8s] (two pair, Aces and Eights) +Player12 is sitting out +Player6 collected 210 from main pot +*** SUMMARY *** +Total pot 680 Main pot 210. Side pot 470. | Rake 0 +Board [2h 8c 5h Ac 2s] +Seat 1: Player6 (small blind) showed [As 8s] and won (210) with two pair, Aces and Eights +Seat 2: Player21 (big blind) folded before Flop +Seat 3: Player12 showed [Kh 6h] and won (470) with a pair of Deuces +Seat 4: Player11 folded before Flop (didn't bet) +Seat 5: Player18 (button) showed [9h Qd] and lost with a pair of Deuces + + + +PokerStars Game #17659192331: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:49:47 WET [2010/06/04 14:49:47 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (510 in chips) +Seat 2: Player21 (240 in chips) +Seat 3: Player12 (470 in chips) is sitting out +Seat 4: Player11 (470 in chips) +Seat 5: Player18 (2810 in chips) +Seat 6: Player13 (1475 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player21: posts small blind 50 +Player12: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [Jc Td] +Player11: raises 350 to 450 and is all-in +Player18: raises 2340 to 2790 and is all-in +Player13: folds +Player6: calls 490 and is all-in +Player21: folds +Player12: folds +Uncalled bet (2300) returned to Player18 +*** FLOP *** [2c 4h 3c] +*** TURN *** [2c 4h 3c] [Ac] +*** RIVER *** [2c 4h 3c Ac] [9c] +*** SHOW DOWN *** +Player18: shows [Jc Td] (a flush, Ace high) +Player6: shows [Th Ks] (high card Ace) +Player18 collected 80 from side pot +Player11: shows [8h 9d] (a pair of Nines) +Player18 collected 1620 from main pot +Player11 re-buys and receives 600 chips for 2 FPPs +Player6 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1700 Main pot 1620. Side pot 80. | Rake 0 +Board [2c 4h 3c Ac 9c] +Seat 1: Player6 (button) showed [Th Ks] and lost with high card Ace +Seat 2: Player21 (small blind) folded before Flop +Seat 3: Player12 (big blind) folded before Flop +Seat 4: Player11 showed [8h 9d] and lost with a pair of Nines +Seat 5: Player18 showed [Jc Td] and won (1700) with a flush, Ace high +Seat 6: Player13 folded before Flop (didn't bet) + + + +PokerStars Game #15161114072: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:50:46 WET [2010/06/04 14:50:46 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (600 in chips) +Seat 2: Player21 (170 in chips) +Seat 3: Player12 (350 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (4000 in chips) +Seat 6: Player13 (1455 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player12: posts small blind 50 +Player11: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [Jd 6s] +Player18: raises 3880 to 3980 and is all-in +Player13: calls 1435 and is all-in +Player6: folds +Player21: folds +Player12: folds +Player11: calls 480 and is all-in +Uncalled bet (2545) returned to Player18 +*** FLOP *** [Kd 9s Qh] +*** TURN *** [Kd 9s Qh] [Ts] +*** RIVER *** [Kd 9s Qh Ts] [7c] +*** SHOW DOWN *** +Player18: shows [Jd 6s] (a straight, Nine to King) +Player13: shows [Kc As] (a pair of Kings) +Player18 collected 1710 from side pot +Player11: shows [8s 4h] (high card King) +Player18 collected 1910 from main pot +Player13 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3620 Main pot 1910. Side pot 1710. | Rake 0 +Board [Kd 9s Qh Ts 7c] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player12 (small blind) folded before Flop +Seat 4: Player11 (big blind) showed [8s 4h] and lost with high card King +Seat 5: Player18 showed [Jd 6s] and won (3620) with a straight, Nine to King +Seat 6: Player13 showed [Kc As] and lost with a pair of Kings + + + +PokerStars Game #57039811101: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:17 WET [2010/06/04 14:51:17 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (580 in chips) +Seat 2: Player21 (150 in chips) +Seat 3: Player12 (280 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (6165 in chips) +Seat 6: Player13 (600 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player11: posts small blind 50 +Player18: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [6s Kd] +Player13: raises 480 to 580 and is all-in +Player6: folds +Player21: folds +Player12: folds +Player11: calls 530 and is all-in +Player18: calls 480 +*** FLOP *** [Tc 6c 7c] +*** TURN *** [Tc 6c 7c] [2c] +*** RIVER *** [Tc 6c 7c 2c] [Qs] +*** SHOW DOWN *** +Player11: shows [Ks 3h] (high card King) +Player18: shows [6s Kd] (a pair of Sixes) +Player13: shows [9s 2d] (a pair of Deuces) +Player18 collected 1860 from pot +Player13 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1860 | Rake 0 +Board [Tc 6c 7c 2c Qs] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player12 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) showed [Ks 3h] and lost with high card King +Seat 5: Player18 (big blind) showed [6s Kd] and won (1860) with a pair of Sixes +Seat 6: Player13 showed [9s 2d] and lost with a pair of Deuces + + + +PokerStars Game #90281799521: Tournament #999999999, 1FPP Hold'em No Limit - Level II (50/100) - 2010/06/04 19:51:46 WET [2010/06/04 14:51:46 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (560 in chips) +Seat 2: Player21 (130 in chips) +Seat 3: Player12 (260 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (7425 in chips) +Seat 6: Player13 (600 in chips) +Player6: posts the ante 20 +Player21: posts the ante 20 +Player12: posts the ante 20 +Player11: posts the ante 20 +Player18: posts the ante 20 +Player13: posts the ante 20 +Player18: posts small blind 50 +Player13: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player18 [8d 9h] +Player6: raises 440 to 540 and is all-in +Player21: calls 110 and is all-in +Player12: folds +Player11: calls 540 +Player18: calls 490 +Player13: raises 40 to 580 and is all-in +Player11: calls 40 and is all-in +Player18: calls 40 +*** FLOP *** [Td 4s Th] +*** TURN *** [Td 4s Th] [Qd] +*** RIVER *** [Td 4s Th Qd] [Qs] +*** SHOW DOWN *** +Player18: shows [8d 9h] (two pair, Queens and Tens) +Player13: shows [3d 3h] (two pair, Queens and Tens - lower kicker) +Player11: shows [9c 3s] (two pair, Queens and Tens) +Player18 collected 60 from side pot-2 +Player11 collected 60 from side pot-2 +Player6: shows [Kh 7d] (two pair, Queens and Tens - King kicker) +Player6 collected 1720 from side pot-1 +Player21: shows [Kd Qc] (a full house, Queens full of Tens) +Player21 collected 670 from main pot +Player13 has timed out while disconnected +Player13 is sitting out +Player13 finished the tournament in 224th place +*** SUMMARY *** +Total pot 2510 Main pot 670. Side pot-1 1720. Side pot-2 120. | Rake 0 +Board [Td 4s Th Qd Qs] +Seat 1: Player6 showed [Kh 7d] and won (1720) with two pair, Queens and Tens +Seat 2: Player21 showed [Kd Qc] and won (670) with a full house, Queens full of Tens +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 (button) showed [9c 3s] and won (60) with two pair, Queens and Tens +Seat 5: Player18 (small blind) showed [8d 9h] and won (60) with two pair, Queens and Tens +Seat 6: Player13 (big blind) showed [3d 3h] and lost with two pair, Queens and Tens + + + +PokerStars Game #21189900419: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:52:40 WET [2010/06/04 14:52:40 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (1720 in chips) +Seat 2: Player21 (670 in chips) +Seat 3: Player12 (240 in chips) is sitting out +Seat 4: Player11 (60 in chips) +Seat 5: Player18 (6885 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player12: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player6: posts small blind 100 +Player21: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Td 9d] +Player12: folds +Player11: calls 20 and is all-in +Player7 is connected +Player18: raises 6645 to 6845 and is all-in +Player6: folds +Player21: folds +Uncalled bet (6645) returned to Player18 +*** FLOP *** [9s As 2s] +*** TURN *** [9s As 2s] [4h] +*** RIVER *** [9s As 2s 4h] [5h] +*** SHOW DOWN *** +Player18: shows [Td 9d] (a pair of Nines) +Player18 collected 440 from side pot +Player11: shows [Jh 7s] (high card Ace) +Player18 collected 280 from main pot +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 720 Main pot 280. Side pot 440. | Rake 0 +Board [9s As 2s 4h 5h] +Seat 1: Player6 (small blind) folded before Flop +Seat 2: Player21 (big blind) folded before Flop +Seat 3: Player12 folded before Flop (didn't bet) +Seat 4: Player11 showed [Jh 7s] and lost with high card Ace +Seat 5: Player18 (button) showed [Td 9d] and won (720) with a pair of Nines + + + +PokerStars Game #16652117062: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:53:18 WET [2010/06/04 14:53:18 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (1580 in chips) +Seat 2: Player21 (430 in chips) +Seat 3: Player12 (200 in chips) is sitting out +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (7365 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player12: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player21: posts small blind 100 +Player12: posts big blind 160 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [2c 4d] +Player11: raises 400 to 560 and is all-in +Player18: raises 6765 to 7325 and is all-in +Player7: calls 560 and is all-in +Player6: folds +Player21: calls 290 and is all-in +Player12: folds +Uncalled bet (6765) returned to Player18 +*** FLOP *** [3s Js 5c] +*** TURN *** [3s Js 5c] [9c] +*** RIVER *** [3s Js 5c 9c] [7d] +*** SHOW DOWN *** +Player11: shows [Qc Jc] (a pair of Jacks) +Player18: shows [2c 4d] (high card Jack) +Player7: shows [Qd Jh] (a pair of Jacks) +Player11 collected 255 from side pot-2 +Player7 collected 255 from side pot-2 +Player21: shows [As Ac] (a pair of Aces) +Player21 collected 920 from side pot-1 +Player21 collected 1040 from main pot +Player12 finished the tournament in 214th place +*** SUMMARY *** +Total pot 2470 Main pot 1040. Side pot-1 920. Side pot-2 510. | Rake 0 +Board [3s Js 5c 9c 7d] +Seat 1: Player6 (button) folded before Flop (didn't bet) +Seat 2: Player21 (small blind) showed [As Ac] and won (1960) with a pair of Aces +Seat 3: Player12 (big blind) folded before Flop +Seat 4: Player11 showed [Qc Jc] and won (255) with a pair of Jacks +Seat 5: Player18 showed [2c 4d] and lost with high card Jack +Seat 6: Player7 showed [Qd Jh] and won (255) with a pair of Jacks + + + +PokerStars Game #18934320061: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:02 WET [2010/06/04 14:54:02 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (1540 in chips) +Seat 2: Player21 (1960 in chips) +Seat 4: Player11 (255 in chips) +Seat 5: Player18 (6765 in chips) +Seat 6: Player7 (255 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player11: posts small blind 100 +Player18: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Ts 9h] +Player7: raises 15 to 215 and is all-in +Player6: calls 215 +Player21: folds +Player11: calls 115 and is all-in +Player16 is connected +Player18: calls 15 +*** FLOP *** [8h Td 7s] +Player18: checks +Player6: bets 400 +Player18: raises 800 to 1200 +Player6: raises 85 to 1285 and is all-in +Player18: calls 85 +*** TURN *** [8h Td 7s] [6s] +*** RIVER *** [8h Td 7s 6s] [Kd] +*** SHOW DOWN *** +Player18: shows [Ts 9h] (a straight, Six to Ten) +Player6: shows [Jh Tc] (a pair of Tens) +Player18 collected 2570 from side pot +Player7: shows [Ah 9d] (a straight, Six to Ten) +Player11: shows [9s Qd] (a straight, Six to Ten) +Player11 collected 354 from main pot +Player18 collected 353 from main pot +Player7 collected 353 from main pot +Player6 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3630 Main pot 1060. Side pot 2570. | Rake 0 +Board [8h Td 7s 6s Kd] +Seat 1: Player6 showed [Jh Tc] and lost with a pair of Tens +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 4: Player11 (small blind) showed [9s Qd] and won (354) with a straight, Six to Ten +Seat 5: Player18 (big blind) showed [Ts 9h] and won (2923) with a straight, Six to Ten +Seat 6: Player7 showed [Ah 9d] and won (353) with a straight, Six to Ten + + + +PokerStars Game #14415194893: Tournament #999999999, 1FPP Hold'em No Limit - Level III (100/200) - 2010/06/04 19:54:54 WET [2010/06/04 14:54:54 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (600 in chips) +Seat 2: Player21 (1920 in chips) +Seat 3: Player16 (3020 in chips) +Seat 4: Player11 (354 in chips) +Seat 5: Player18 (8148 in chips) +Seat 6: Player7 (353 in chips) +Player6: posts the ante 40 +Player21: posts the ante 40 +Player16: posts the ante 40 +Player11: posts the ante 40 +Player18: posts the ante 40 +Player7: posts the ante 40 +Player18: posts small blind 100 +Player7: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player18 [Ks 4c] +Player6 said, "dikhead" +Player6: folds +Player18 said, "chatban" +Player21: folds +Player16: raises 200 to 400 +Player11: calls 314 and is all-in +Player18: calls 300 +Player7: calls 113 and is all-in +*** FLOP *** [9c 5d 2d] +Player18: checks +Player16: checks +*** TURN *** [9c 5d 2d] [Kh] +Player18: checks +Player16: checks +*** RIVER *** [9c 5d 2d Kh] [9d] +Player18: checks +Player16: checks +*** SHOW DOWN *** +Player18: shows [Ks 4c] (two pair, Kings and Nines) +Player16: mucks hand +Player18 collected 172 from side pot-2 +Player11: mucks hand +Player6 said, "cok face dip shiit" +Player18 collected 3 from side pot-1 +Player7: mucks hand +Player18 collected 1492 from main pot +Player7 re-buys and receives 600 chips for 2 FPPs +Player11 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 1667 Main pot 1492. Side pot-1 3. Side pot-2 172. | Rake 0 +Board [9c 5d 2d Kh 9d] +Seat 1: Player6 folded before Flop (didn't bet) +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player16 mucked [Ad 5c] +Seat 4: Player11 (button) mucked [4h 4d] +Seat 5: Player18 (small blind) showed [Ks 4c] and won (1667) with two pair, Kings and Nines +Seat 6: Player7 (big blind) mucked [Qh 2s] + + + +PokerStars Game #48839292212: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:55:58 WET [2010/06/04 14:55:58 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player6 (560 in chips) +Seat 2: Player21 (1880 in chips) +Seat 3: Player16 (2580 in chips) +Seat 4: Player11 (600 in chips) +Seat 5: Player18 (9375 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player11: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player7: posts small blind 200 +Player6: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [As Ad] +Player18 said, "chatban" +Player21: raises 1400 to 1800 and is all-in +Player16: folds +Player11: calls 520 and is all-in +Player18: raises 7495 to 9295 and is all-in +Player7: calls 320 and is all-in +Player6: calls 80 and is all-in +Uncalled bet (7495) returned to Player18 +*** FLOP *** [6h 8d 2c] +*** TURN *** [6h 8d 2c] [8s] +Player11 is disconnected +*** RIVER *** [6h 8d 2c 8s] [8h] +*** SHOW DOWN *** +Player21: shows [5d 5s] (a full house, Eights full of Fives) +Player18: shows [As Ad] (a full house, Eights full of Aces) +Player6 said, "cok face dik sucker" +Player18 collected 2560 from side pot-2 +Player7: shows [3h Jh] (three of a kind, Eights) +Player11: shows [5h Kd] (three of a kind, Eights) +Player18 collected 160 from side pot-1 +Player6: shows [3d Tc] (three of a kind, Eights) +Player18 collected 2880 from main pot +Player6 said, "cok head" +Player7 re-buys and receives 600 chips for 2 FPPs +Player18 said, "lol" +Player6 said, "dik" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dikd" +Player6 said, "idk" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dik" +Player18 said, "tilt" +Player6 said, "dik" +Player6 said, "dik" +Player6 said, "dik" +Player18 said, "hahahahaha" +Player6 said, "dik" +Player6 said, "dio" +Player11 has timed out while disconnected +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 re-buys and receives 300 chips for 1 FPPs +Player11 finished the tournament in 185th place +*** SUMMARY *** +Total pot 5600 Main pot 2880. Side pot-1 160. Side pot-2 2560. | Rake 0 +Board [6h 8d 2c 8s 8h] +Seat 1: Player6 (big blind) showed [3d Tc] and lost with three of a kind, Eights +Seat 2: Player21 showed [5d 5s] and lost with a full house, Eights full of Fives +Seat 3: Player16 folded before Flop (didn't bet) +Seat 4: Player11 showed [5h Kd] and lost with three of a kind, Eights +Seat 5: Player18 (button) showed [As Ad] and won (5600) with a full house, Eights full of Aces +Seat 6: Player7 (small blind) showed [3h Jh] and lost with three of a kind, Eights + + + +PokerStars Game #15911190352: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:01 WET [2010/06/04 14:57:01 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player6 (300 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (2500 in chips) +Seat 5: Player18 (13095 in chips) +Seat 6: Player7 (600 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player6: posts small blind 200 +Player21: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [3s 4d] +Player16: folds +Player18: raises 400 to 800 +Player7: folds +Player6: calls 20 and is all-in +Player21: calls 120 and is all-in +Uncalled bet (280) returned to Player18 +*** FLOP *** [Kh Jc 7c] +*** TURN *** [Kh Jc 7c] [Kd] +*** RIVER *** [Kh Jc 7c Kd] [3c] +*** SHOW DOWN *** +Player21: shows [5h Qc] (a pair of Kings) +Player18: shows [3s 4d] (two pair, Kings and Threes) +Player1 is connected +Player6 said, "haha dik" +Player18 collected 600 from side pot +Player6: shows [4s 7d] (two pair, Kings and Sevens) +Player6 collected 1060 from main pot +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 said, "dik head" +*** SUMMARY *** +Total pot 1660 Main pot 1060. Side pot 600. | Rake 0 +Board [Kh Jc 7c Kd 3c] +Seat 1: Player6 (small blind) showed [4s 7d] and won (1060) with two pair, Kings and Sevens +Seat 2: Player21 (big blind) showed [5h Qc] and lost with a pair of Kings +Seat 3: Player16 folded before Flop (didn't bet) +Seat 5: Player18 showed [3s 4d] and won (600) with two pair, Kings and Threes +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #31048178850: Tournament #999999999, 1FPP Hold'em No Limit - Level IV (200/400) - 2010/06/04 19:57:38 WET [2010/06/04 14:57:38 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player6 (1060 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (2420 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (13095 in chips) +Seat 6: Player7 (520 in chips) +Player6: posts the ante 80 +Player21: posts the ante 80 +Player16: posts the ante 80 +Player1: posts the ante 80 +Player18: posts the ante 80 +Player7: posts the ante 80 +Player21: posts small blind 200 +Player16: posts big blind 400 +*** HOLE CARDS *** +Dealt to Player18 [5d 6c] +Player18 said, "hahahaha" +Player1: raises 120 to 520 and is all-in +Player18: calls 520 +Player7: calls 440 and is all-in +Player6: folds +Player21: calls 320 and is all-in +Player16: calls 120 +*** FLOP *** [8d 8c 7d] +Player16: checks +Player18: checks +*** TURN *** [8d 8c 7d] [Qd] +Player16: checks +Player18: checks +*** RIVER *** [8d 8c 7d Qd] [Ah] +Player16: checks +Player18: checks +*** SHOW DOWN *** +Player21: shows [Th Ts] (two pair, Tens and Eights) +Player16: mucks hand +Player1: mucks hand +Player18: mucks hand +Player21 collected 320 from side pot +Player7: shows [Td Qc] (two pair, Queens and Eights) +Player6 said, "dik" +Player7 collected 2680 from main pot +Player1 re-buys and receives 600 chips for 2 FPPs +*** SUMMARY *** +Total pot 3000 Main pot 2680. Side pot 320. | Rake 0 +Board [8d 8c 7d Qd Ah] +Seat 1: Player6 (button) folded before Flop (didn't bet) +Seat 2: Player21 (small blind) showed [Th Ts] and won (320) with two pair, Tens and Eights +Seat 3: Player16 (big blind) mucked [Js 2c] +Seat 4: Player1 mucked [2h 9d] +Seat 5: Player18 mucked [5d 6c] +Seat 6: Player7 showed [Td Qc] and won (2680) with two pair, Queens and Eights + + + +PokerStars Game #61011805711: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:10 WET [2010/06/04 14:59:10 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player6 (980 in chips) +Seat 2: Player21 (320 in chips) +Seat 3: Player16 (1820 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (12495 in chips) +Seat 6: Player7 (2680 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player16: posts small blind 300 +Player1: posts big blind 480 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [2c 9h] +Player18: folds +Player7: folds +Player6: raises 380 to 860 and is all-in +Player21: folds +Player16: calls 560 +*** FLOP *** [Kd 7c Ad] +Player6 said, "bye dik head" +*** TURN *** [Kd 7c Ad] [4d] +*** RIVER *** [Kd 7c Ad 4d] [6d] +*** SHOW DOWN *** +Player16: shows [Jh 3h] (high card Ace) +Player6: shows [Jc 9c] (high card Ace - King+Jack+Nine kicker) +Player6 collected 760 from side pot +Player1: shows [Js 7h] (a pair of Sevens) +Player1 collected 2160 from main pot +*** SUMMARY *** +Total pot 2920 Main pot 2160. Side pot 760. | Rake 0 +Board [Kd 7c Ad 4d 6d] +Seat 1: Player6 showed [Jc 9c] and won (760) with high card Ace +Seat 2: Player21 (button) folded before Flop (didn't bet) +Seat 3: Player16 (small blind) showed [Jh 3h] and lost with high card Ace +Seat 4: Player1 (big blind) showed [Js 7h] and won (2160) with a pair of Sevens +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #41541235827: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 19:59:40 WET [2010/06/04 14:59:40 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player6 (760 in chips) +Seat 2: Player21 (200 in chips) +Seat 3: Player16 (840 in chips) +Seat 4: Player1 (2160 in chips) +Seat 5: Player18 (12375 in chips) +Seat 6: Player7 (2560 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player1: posts small blind 300 +Player18: posts big blind 600 +*** HOLE CARDS *** +Dealt to Player18 [2d 4h] +Player7: folds +Player6 said, "dik face" +Player6: raises 40 to 640 and is all-in +Player21: calls 80 and is all-in +Player16: folds +Player1: folds +Player18: calls 40 +*** FLOP *** [5h 4d 9h] +Player6 said, "bye dumb shiiit" +*** TURN *** [5h 4d 9h] [6d] +*** RIVER *** [5h 4d 9h 6d] [Jd] +*** SHOW DOWN *** +Player18: shows [2d 4h] (a pair of Fours) +Player6: shows [Jc Ad] (a pair of Jacks) +Player6 collected 1340 from side pot +Player21: shows [7h 7d] (a pair of Sevens) +Player6 collected 1040 from main pot +Player6 said, "ok" +Player21 re-buys and receives 600 chips for 2 FPPs +Player6 said, "not yet" +*** SUMMARY *** +Total pot 2380 Main pot 1040. Side pot 1340. | Rake 0 +Board [5h 4d 9h 6d Jd] +Seat 1: Player6 showed [Jc Ad] and won (2380) with a pair of Jacks +Seat 2: Player21 showed [7h 7d] and lost with a pair of Sevens +Seat 3: Player16 (button) folded before Flop (didn't bet) +Seat 4: Player1 (small blind) folded before Flop +Seat 5: Player18 (big blind) showed [2d 4h] and lost with a pair of Fours +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #27976721395: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:00:16 WET [2010/06/04 15:00:16 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player6 (2380 in chips) +Seat 2: Player21 (600 in chips) +Seat 3: Player16 (720 in chips) +Seat 4: Player1 (1740 in chips) +Seat 5: Player18 (11615 in chips) +Seat 6: Player7 (2440 in chips) +Player6: posts the ante 120 +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player18: posts small blind 300 +Player7: posts big blind 600 +*** HOLE CARDS *** +Dealt to Player18 [Jd Js] +Player6: raises 1660 to 2260 and is all-in +Player21: folds +Player16: calls 600 and is all-in +Player1: calls 1620 and is all-in +Player18: calls 1960 +Player7: folds +*** FLOP *** [Kc 8d Qh] +Player6 said, "comn dik face omg ur so **** dik heads" +*** TURN *** [Kc 8d Qh] [5s] +*** RIVER *** [Kc 8d Qh 5s] [9s] +*** SHOW DOWN *** +Player18: shows [Jd Js] (a pair of Jacks) +Player6: shows [4c 4s] (a pair of Fours) +Player18 collected 1280 from side pot-2 +Player1: shows [As 4d] (high card Ace) +Player18 collected 3060 from side pot-1 +Player16: shows [Td Ks] (a pair of Kings) +Player6 said, "bye **** head" +Player16 collected 3720 from main pot +Player18 said, "byebye" +Player1 re-buys and receives 600 chips for 2 FPPs +Player6 finished the tournament in 155th place +*** SUMMARY *** +Total pot 8060 Main pot 3720. Side pot-1 3060. Side pot-2 1280. | Rake 0 +Board [Kc 8d Qh 5s 9s] +Seat 1: Player6 showed [4c 4s] and lost with a pair of Fours +Seat 2: Player21 folded before Flop (didn't bet) +Seat 3: Player16 showed [Td Ks] and won (3720) with a pair of Kings +Seat 4: Player1 (button) showed [As 4d] and lost with high card Ace +Seat 5: Player18 (small blind) showed [Jd Js] and won (4340) with a pair of Jacks +Seat 6: Player7 (big blind) folded before Flop + + + +PokerStars Game #25234313412: Tournament #999999999, 1FPP Hold'em No Limit - Level V (300/600) - 2010/06/04 20:01:02 WET [2010/06/04 15:01:02 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 2: Player21 (480 in chips) +Seat 3: Player16 (3720 in chips) +Seat 4: Player1 (600 in chips) +Seat 5: Player18 (13575 in chips) +Seat 6: Player7 (1720 in chips) +Player21: posts the ante 120 +Player16: posts the ante 120 +Player1: posts the ante 120 +Player18: posts the ante 120 +Player7: posts the ante 120 +Player7: posts small blind 300 +Player21: posts big blind 360 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [Qh 3s] +Player16: folds +Player1: calls 480 and is all-in +Player18: folds +Player7: calls 180 +*** FLOP *** [8h 5c 3d] +*** TURN *** [8h 5c 3d] [7d] +*** RIVER *** [8h 5c 3d 7d] [2s] +*** SHOW DOWN *** +Player7: shows [9s Ac] (high card Ace) +Player1: shows [5h Qs] (a pair of Fives) +Player1 collected 240 from side pot +Player21: shows [6c Ks] (high card King) +Player1 collected 1680 from main pot +Player5 is connected +Player21 finished the tournament in 148th place +*** SUMMARY *** +Total pot 1920 Main pot 1680. Side pot 240. | Rake 0 +Board [8h 5c 3d 7d 2s] +Seat 2: Player21 (big blind) showed [6c Ks] and lost with high card King +Seat 3: Player16 folded before Flop (didn't bet) +Seat 4: Player1 showed [5h Qs] and won (1920) with a pair of Fives +Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 6: Player7 (small blind) showed [9s Ac] and lost with high card Ace + + + +PokerStars Game #95143913174: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:03:37 WET [2010/06/04 15:03:37 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player5 (1940 in chips) out of hand (moved from another table into small blind) +Seat 2: Player4 (3540 in chips) out of hand (moved from another table into small blind) +Seat 3: Player16 (4100 in chips) +Seat 4: Player1 (2420 in chips) +Seat 5: Player18 (13955 in chips) +Seat 6: Player7 (1620 in chips) +Player16: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player16: posts small blind 400 +Player1: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [Qs 4h] +Player18: folds +Player7: folds +Player16: raises 3140 to 3940 and is all-in +Player1: calls 1460 and is all-in +Uncalled bet (1680) returned to Player16 +*** FLOP *** [2d 7c Jh] +*** TURN *** [2d 7c Jh] [3c] +*** RIVER *** [2d 7c Jh 3c] [5h] +*** SHOW DOWN *** +Player16: shows [Ah Kh] (high card Ace) +Player1: shows [Tc 5s] (a pair of Fives) +Player1 collected 5160 from pot +*** SUMMARY *** +Total pot 5160 | Rake 0 +Board [2d 7c Jh 3c 5h] +Seat 3: Player16 (small blind) showed [Ah Kh] and lost with high card Ace +Seat 4: Player1 (big blind) showed [Tc 5s] and won (5160) with a pair of Fives +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #50411262384: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:15 WET [2010/06/04 15:04:15 ET] +Table '999999998 11' 6-max Seat #3 is the button +Seat 1: Player5 (1940 in chips) +Seat 2: Player4 (3540 in chips) +Seat 3: Player16 (1680 in chips) +Seat 4: Player1 (5160 in chips) +Seat 5: Player18 (13795 in chips) +Seat 6: Player7 (1460 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player16: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player1: posts small blind 400 +Player18: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [Ac Th] +Player7: folds +Player5: folds +Player4: folds +Player16: raises 720 to 1520 and is all-in +Player1: raises 3480 to 5000 and is all-in +Player18: folds +Uncalled bet (3480) returned to Player1 +*** FLOP *** [4s 3c Kc] +*** TURN *** [4s 3c Kc] [7s] +*** RIVER *** [4s 3c Kc 7s] [9s] +*** SHOW DOWN *** +Player1: shows [Qs Kh] (a pair of Kings) +Player16: shows [9d Qc] (a pair of Nines) +Player1 collected 4800 from pot +Player16 finished the tournament in 120th place +*** SUMMARY *** +Total pot 4800 | Rake 0 +Board [4s 3c Kc 7s 9s] +Seat 1: Player5 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player16 (button) showed [9d Qc] and lost with a pair of Nines +Seat 4: Player1 (small blind) showed [Qs Kh] and won (4800) with a pair of Kings +Seat 5: Player18 (big blind) folded before Flop +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #16124236191: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:04:51 WET [2010/06/04 15:04:51 ET] +Table '999999998 11' 6-max Seat #4 is the button +Seat 1: Player5 (1780 in chips) +Seat 2: Player4 (3380 in chips) +Seat 4: Player1 (8280 in chips) +Seat 5: Player18 (12835 in chips) +Seat 6: Player7 (1300 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player18: posts small blind 400 +Player7: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [9d 7d] +Player5: folds +Player4: folds +Player1: calls 800 +Player9 is connected +Player18: calls 400 +Player7: checks +*** FLOP *** [Tc Qd 9c] +Player18: checks +Player7: bets 340 and is all-in +Player1: calls 340 +Player18: calls 340 +*** TURN *** [Tc Qd 9c] [Td] +Player18: checks +Player1: checks +*** RIVER *** [Tc Qd 9c Td] [Jh] +Player18: checks +Player1: bets 2400 +Player18: folds +Uncalled bet (2400) returned to Player1 +*** SHOW DOWN *** +Player1: shows [6c 8d] (a straight, Eight to Queen) +Player7: shows [Jc 8c] (a straight, Eight to Queen) +Player7 collected 2110 from pot +Player1 collected 2110 from pot +*** SUMMARY *** +Total pot 4220 | Rake 0 +Board [Tc Qd 9c Td Jh] +Seat 1: Player5 folded before Flop (didn't bet) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 4: Player1 (button) showed [6c 8d] and won (2110) with a straight, Eight to Queen +Seat 5: Player18 (small blind) folded on the River +Seat 6: Player7 (big blind) showed [Jc 8c] and won (2110) with a straight, Eight to Queen + + + +PokerStars Game #20501244423: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:05:47 WET [2010/06/04 15:05:47 ET] +Table '999999998 11' 6-max Seat #5 is the button +Seat 1: Player5 (1620 in chips) +Seat 2: Player4 (3220 in chips) +Seat 3: Player9 (3065 in chips) +Seat 4: Player1 (9090 in chips) +Seat 5: Player18 (11535 in chips) +Seat 6: Player7 (2110 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player7: posts small blind 400 +Player5: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [3c Kd] +Player4: folds +Player9: folds +Player1: folds +Player18: folds +Player7: folds +Uncalled bet (400) returned to Player5 +Player5 collected 1760 from pot +*** SUMMARY *** +Total pot 1760 | Rake 0 +Seat 1: Player5 (big blind) collected (1760) +Seat 2: Player4 folded before Flop (didn't bet) +Seat 3: Player9 folded before Flop (didn't bet) +Seat 4: Player1 folded before Flop (didn't bet) +Seat 5: Player18 (button) folded before Flop (didn't bet) +Seat 6: Player7 (small blind) folded before Flop + + + +PokerStars Game #18390596592: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:03 WET [2010/06/04 15:06:03 ET] +Table '999999998 11' 6-max Seat #6 is the button +Seat 1: Player5 (2820 in chips) +Seat 2: Player4 (3060 in chips) +Seat 3: Player9 (2905 in chips) +Seat 4: Player1 (8930 in chips) +Seat 5: Player18 (11375 in chips) +Seat 6: Player7 (1550 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player5: posts small blind 400 +Player4: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [2h Qc] +Player9: folds +Player1: folds +Player18: folds +Player7: folds +Player5: calls 400 +Player4: checks +*** FLOP *** [9c 6d Td] +Player5: checks +Player4: checks +*** TURN *** [9c 6d Td] [4d] +Player5: checks +Player4: bets 2100 and is all-in +Player5: folds +Uncalled bet (2100) returned to Player4 +Player4 collected 2560 from pot +Player4: doesn't show hand +*** SUMMARY *** +Total pot 2560 | Rake 0 +Board [9c 6d Td 4d] +Seat 1: Player5 (small blind) folded on the Turn +Seat 2: Player4 (big blind) collected (2560) +Seat 3: Player9 folded before Flop (didn't bet) +Seat 4: Player1 folded before Flop (didn't bet) +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 (button) folded before Flop (didn't bet) + + + +PokerStars Game #52768090525: Tournament #999999999, 1FPP Hold'em No Limit - Level VI (400/800) - 2010/06/04 20:06:35 WET [2010/06/04 15:06:35 ET] +Table '999999998 11' 6-max Seat #1 is the button +Seat 1: Player5 (1860 in chips) +Seat 2: Player4 (4660 in chips) +Seat 3: Player9 (2745 in chips) +Seat 4: Player1 (8770 in chips) +Seat 5: Player18 (11215 in chips) +Seat 6: Player7 (1390 in chips) +Player5: posts the ante 160 +Player4: posts the ante 160 +Player9: posts the ante 160 +Player1: posts the ante 160 +Player18: posts the ante 160 +Player7: posts the ante 160 +Player4: posts small blind 400 +Player9: posts big blind 800 +*** HOLE CARDS *** +Dealt to Player18 [3s 3c] +Player1: raises 4800 to 5600 +Player18: folds +Player7: folds +Player5: folds +Player4: folds +Player9: folds +Uncalled bet (4800) returned to Player1 +Player1 collected 2960 from pot +*** SUMMARY *** +Total pot 2960 | Rake 0 +Seat 1: Player5 (button) folded before Flop (didn't bet) +Seat 2: Player4 (small blind) folded before Flop +Seat 3: Player9 (big blind) folded before Flop +Seat 4: Player1 collected (2960) +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 folded before Flop (didn't bet) + + + +PokerStars Game #23011819420: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:06:55 WET [2010/06/04 15:06:55 ET] +Table '999999998 11' 6-max Seat #2 is the button +Seat 1: Player5 (1700 in chips) +Seat 2: Player4 (4100 in chips) +Seat 3: Player9 (1785 in chips) +Seat 4: Player1 (10770 in chips) +Seat 5: Player18 (11055 in chips) +Seat 6: Player7 (1230 in chips) +Player5: posts the ante 240 +Player4: posts the ante 240 +Player9: posts the ante 240 +Player1: posts the ante 240 +Player18: posts the ante 240 +Player7: posts the ante 240 +Player9: posts small blind 600 +Player1: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2c 6d] +Player18: folds +Player7: calls 990 and is all-in +Player5: raises 260 to 1460 and is all-in +Player4: folds +Player9: folds +Player1: calls 260 +*** FLOP *** [Ts 7d Js] +*** TURN *** [Ts 7d Js] [4c] +*** RIVER *** [Ts 7d Js 4c] [3d] +*** SHOW DOWN *** +Player1: shows [2h 9s] (high card Jack) +Player5: shows [Jc Jd] (three of a kind, Jacks) +Player5 collected 940 from side pot +Player7: shows [4d Ac] (a pair of Fours) +Player5 collected 5010 from main pot +*** SUMMARY *** +Total pot 5950 Main pot 5010. Side pot 940. | Rake 0 +Board [Ts 7d Js 4c 3d] +Seat 1: Player5 showed [Jc Jd] and won (5950) with three of a kind, Jacks +Seat 2: Player4 (button) folded before Flop (didn't bet) +Seat 3: Player9 (small blind) folded before Flop +Seat 4: Player1 (big blind) showed [2h 9s] and lost with high card Jack +Seat 5: Player18 folded before Flop (didn't bet) +Seat 6: Player7 showed [4d Ac] and lost with a pair of Fours + + + +PokerStars Game #24661247813: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:27 WET [2010/06/04 15:07:27 ET] +Table '999999998 48' 6-max Seat #1 is the button +Seat 1: Player17 (14798 in chips) +Seat 2: Player3 (7215 in chips) +Seat 3: Player15 (6378 in chips) +Seat 4: Player18 (10815 in chips) +Seat 5: Player2 (8520 in chips) +Seat 6: Player22 (11935 in chips) +Player17: posts the ante 240 +Player3: posts the ante 240 +Player15: posts the ante 240 +Player18: posts the ante 240 +Player2: posts the ante 240 +Player22: posts the ante 240 +Player3: posts small blind 600 +Player15: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2s Td] +Player18: folds +Player2: raises 7080 to 8280 and is all-in +Player22: calls 8280 +Player17: folds +Player3: folds +Player15: calls 4938 and is all-in +*** FLOP *** [Ac Th 9d] +*** TURN *** [Ac Th 9d] [3c] +*** RIVER *** [Ac Th 9d 3c] [4d] +*** SHOW DOWN *** +Player2: shows [Kd 5s] (high card Ace) +Player22: shows [2c Ah] (a pair of Aces) +Player22 collected 4284 from side pot +Player15: shows [7d 7c] (a pair of Sevens) +Player22 collected 20454 from main pot +Player2 finished the tournament in 74th place +Player15 finished the tournament in 75th place +*** SUMMARY *** +Total pot 24738 Main pot 20454. Side pot 4284. | Rake 0 +Board [Ac Th 9d 3c 4d] +Seat 1: Player17 (button) folded before Flop (didn't bet) +Seat 2: Player3 (small blind) folded before Flop +Seat 3: Player15 (big blind) showed [7d 7c] and lost with a pair of Sevens +Seat 4: Player18 folded before Flop (didn't bet) +Seat 5: Player2 showed [Kd 5s] and lost with high card Ace +Seat 6: Player22 showed [2c Ah] and won (24738) with a pair of Aces + + + +PokerStars Game #28167203221: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:07:59 WET [2010/06/04 15:07:59 ET] +Table '999999998 48' 6-max Seat #2 is the button +Seat 1: Player17 (14558 in chips) +Seat 2: Player3 (6375 in chips) +Seat 4: Player18 (10575 in chips) +Seat 6: Player22 (28153 in chips) +Player17: posts the ante 240 +Player3: posts the ante 240 +Player18: posts the ante 240 +Player22: posts the ante 240 +Player18: posts small blind 600 +Player22: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [6h Jd] +Player17: folds +Player3: raises 4935 to 6135 and is all-in +Player18: folds +Player19 is connected +Player22: calls 4935 +Player10 is connected +*** FLOP *** [2s Kh 9s] +*** TURN *** [2s Kh 9s] [Kc] +*** RIVER *** [2s Kh 9s Kc] [3c] +*** SHOW DOWN *** +Player22: shows [Ah Tc] (a pair of Kings) +Player3: shows [5h As] (a pair of Kings - lower kicker) +Player22 collected 13830 from pot +Player3 finished the tournament in 70th place +*** SUMMARY *** +Total pot 13830 | Rake 0 +Board [2s Kh 9s Kc 3c] +Seat 1: Player17 folded before Flop (didn't bet) +Seat 2: Player3 (button) showed [5h As] and lost with a pair of Kings +Seat 4: Player18 (small blind) folded before Flop +Seat 6: Player22 (big blind) showed [Ah Tc] and won (13830) with a pair of Kings + + + +PokerStars Game #30715143285: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:26 WET [2010/06/04 15:08:26 ET] +Table '999999998 48' 6-max Seat #4 is the button +Seat 1: Player17 (14318 in chips) +Seat 3: Player19 (1508 in chips) +Seat 4: Player18 (9735 in chips) +Seat 5: Player10 (5690 in chips) out of hand (moved from another table into small blind) +Seat 6: Player22 (35608 in chips) +Player17: posts the ante 240 +Player19: posts the ante 240 +Player18: posts the ante 240 +Player22: posts the ante 240 +Player22: posts small blind 600 +Player17: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [2s Ac] +Player19: folds +Player18: raises 8295 to 9495 and is all-in +Player22: folds +Player17: calls 8295 +*** FLOP *** [Kc 5d 3d] +*** TURN *** [Kc 5d 3d] [6c] +*** RIVER *** [Kc 5d 3d 6c] [Ad] +*** SHOW DOWN *** +Player17: shows [Jh Qd] (high card Ace) +Player18: shows [2s Ac] (a pair of Aces) +Player18 collected 20550 from pot +*** SUMMARY *** +Total pot 20550 | Rake 0 +Board [Kc 5d 3d 6c Ad] +Seat 1: Player17 (big blind) showed [Jh Qd] and lost with high card Ace +Seat 3: Player19 folded before Flop (didn't bet) +Seat 4: Player18 (button) showed [2s Ac] and won (20550) with a pair of Aces +Seat 6: Player22 (small blind) folded before Flop + + + +PokerStars Game #16429177523: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:08:51 WET [2010/06/04 15:08:51 ET] +Table '999999998 48' 6-max Seat #6 is the button +Seat 1: Player17 (4583 in chips) +Seat 3: Player19 (1268 in chips) +Seat 4: Player18 (20550 in chips) +Seat 5: Player10 (5690 in chips) +Seat 6: Player22 (34768 in chips) +Player17: posts the ante 240 +Player19: posts the ante 240 +Player18: posts the ante 240 +Player10: posts the ante 240 +Player22: posts the ante 240 +Player17: posts small blind 600 +Player19: posts big blind 1028 and is all-in +*** HOLE CARDS *** +Dealt to Player18 [3d 6c] +Player18: folds +Player10: folds +Player22: raises 1372 to 2400 +Player17: calls 1800 +*** FLOP *** [9c 4s Ac] +Player17: checks +Player22: bets 1200 +Player17: folds +Uncalled bet (1200) returned to Player22 +*** TURN *** [9c 4s Ac] [Kc] +*** RIVER *** [9c 4s Ac Kc] [Qs] +*** SHOW DOWN *** +Player22: shows [Jd Qd] (a pair of Queens) +Player22 collected 2744 from side pot +Player19: shows [7s 4c] (a pair of Fours) +Player22 collected 4284 from main pot +*** SUMMARY *** +Total pot 7028 Main pot 4284. Side pot 2744. | Rake 0 +Board [9c 4s Ac Kc Qs] +Seat 1: Player17 (small blind) folded on the Flop +Seat 3: Player19 (big blind) showed [7s 4c] and lost with a pair of Fours +Seat 4: Player18 folded before Flop (didn't bet) +Seat 5: Player10 folded before Flop (didn't bet) +Seat 6: Player22 (button) showed [Jd Qd] and won (7028) with a pair of Queens + + + +PokerStars Game #14176179211: Tournament #999999999, 1FPP Hold'em No Limit - Level VII (600/1200) - 2010/06/04 20:09:27 WET [2010/06/04 15:09:27 ET] +Table '999999998 5' 6-max Seat #4 is the button +Seat 1: Player14 (5780 in chips) +Seat 2: Player17 (1943 in chips) +Seat 3: Player18 (20310 in chips) +Seat 4: Player20 (23421 in chips) +Seat 5: Player8 (19258 in chips) +Seat 6: Player23 (26326 in chips) +Player14: posts the ante 240 +Player17: posts the ante 240 +Player18: posts the ante 240 +Player20: posts the ante 240 +Player8: posts the ante 240 +Player23: posts the ante 240 +Player8: posts small blind 600 +Player23: posts big blind 1200 +*** HOLE CARDS *** +Dealt to Player18 [7d As] +Player14: folds +Player17: folds +Player18: raises 18000 to 19200 +Player20: raises 3981 to 23181 and is all-in +Player8: folds +Player23: folds +Player18: calls 870 and is all-in +Uncalled bet (3111) returned to Player20 +*** FLOP *** [7h 4h 3s] +*** TURN *** [7h 4h 3s] [Th] +*** RIVER *** [7h 4h 3s Th] [Ah] +*** SHOW DOWN *** +Player18: shows [7d As] (two pair, Aces and Sevens) +Player20: shows [Ad Kh] (a flush, Ace high) +Player20 collected 43380 from pot +Player18 finished the tournament in 54th place +*** SUMMARY *** +Total pot 43380 | Rake 0 +Board [7h 4h 3s Th Ah] +Seat 1: Player14 folded before Flop (didn't bet) +Seat 2: Player17 folded before Flop (didn't bet) +Seat 3: Player18 showed [7d As] and lost with two pair, Aces and Sevens +Seat 4: Player20 (button) showed [Ad Kh] and won (43380) with a flush, Ace high +Seat 5: Player8 (small blind) folded before Flop +Seat 6: Player23 (big blind) folded before Flop + + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt index 951fd0c7..f26e7c51 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-1-201004.8betPF.txt @@ -1,65 +1,65 @@ -PokerStars Game #74759586758: Tournament #589688686, $1.00+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/04/10 22:18:19 WET [2010/04/10 17:18:19 ET] -Table '589688686 1' 10-max Seat #4 is the button -Seat 1: Player3 (1400 in chips) -Seat 2: Player5 (1470 in chips) -Seat 3: Player0 (1820 in chips) -Seat 4: Player2 (1620 in chips) -Seat 5: Player6 (560 in chips) -Seat 6: Player7 (1500 in chips) -Seat 7: Player8 (1500 in chips) -Seat 8: Player4 (1500 in chips) -Seat 9: Player1 (1500 in chips) -Seat 10: Player9 (2130 in chips) -Player6: posts small blind 10 -Player7: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [8c Tc] -Player8: calls 20 -Player4: folds -Player1: folds -Player9: folds -Player3: folds -Player5: calls 20 -Player0: calls 20 -Player2: raises 20 to 40 -Player6: calls 30 -Player7: folds -Player8: calls 20 -Player5: calls 20 -Player0: raises 20 to 60 -Player2: raises 20 to 80 -Player6: calls 40 -Player8: calls 40 -Player5: folds -Player0: raises 20 to 100 -Player2: raises 20 to 120 -Player6: calls 40 -Player8: calls 40 -Player0: raises 20 to 140 -Player2: raises 1480 to 1620 and is all-in -Player6: folds -Player8: folds -Player0: calls 1480 -*** FLOP *** [8d 7d Qs] -*** TURN *** [8d 7d Qs] [Qc] -*** RIVER *** [8d 7d Qs Qc] [7c] -*** SHOW DOWN *** -Player0: shows [8c Tc] (two pair, Queens and Eights) -Player2: shows [3d Ad] (two pair, Queens and Sevens) -Player0 collected 3540 from pot -*** SUMMARY *** -Total pot 3540 | Rake 0 -Board [8d 7d Qs Qc 7c] -Seat 1: Player3 folded before Flop (didn't bet) -Seat 2: Player5 folded before Flop -Seat 3: Player0 showed [8c Tc] and won (3540) with two pair, Queens and Eights -Seat 4: Player2 (button) showed [3d Ad] and lost with two pair, Queens and Sevens -Seat 5: Player6 (small blind) folded before Flop -Seat 6: Player7 (big blind) folded before Flop -Seat 7: Player8 folded before Flop -Seat 8: Player4 folded before Flop (didn't bet) -Seat 9: Player1 folded before Flop (didn't bet) -Seat 10: Player9 folded before Flop (didn't bet) - - +PokerStars Game #74759586758: Tournament #589688686, $1.00+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/04/10 22:18:19 WET [2010/04/10 17:18:19 ET] +Table '589688686 1' 10-max Seat #4 is the button +Seat 1: Player3 (1400 in chips) +Seat 2: Player5 (1470 in chips) +Seat 3: Player0 (1820 in chips) +Seat 4: Player2 (1620 in chips) +Seat 5: Player6 (560 in chips) +Seat 6: Player7 (1500 in chips) +Seat 7: Player8 (1500 in chips) +Seat 8: Player4 (1500 in chips) +Seat 9: Player1 (1500 in chips) +Seat 10: Player9 (2130 in chips) +Player6: posts small blind 10 +Player7: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [8c Tc] +Player8: calls 20 +Player4: folds +Player1: folds +Player9: folds +Player3: folds +Player5: calls 20 +Player0: calls 20 +Player2: raises 20 to 40 +Player6: calls 30 +Player7: folds +Player8: calls 20 +Player5: calls 20 +Player0: raises 20 to 60 +Player2: raises 20 to 80 +Player6: calls 40 +Player8: calls 40 +Player5: folds +Player0: raises 20 to 100 +Player2: raises 20 to 120 +Player6: calls 40 +Player8: calls 40 +Player0: raises 20 to 140 +Player2: raises 1480 to 1620 and is all-in +Player6: folds +Player8: folds +Player0: calls 1480 +*** FLOP *** [8d 7d Qs] +*** TURN *** [8d 7d Qs] [Qc] +*** RIVER *** [8d 7d Qs Qc] [7c] +*** SHOW DOWN *** +Player0: shows [8c Tc] (two pair, Queens and Eights) +Player2: shows [3d Ad] (two pair, Queens and Sevens) +Player0 collected 3540 from pot +*** SUMMARY *** +Total pot 3540 | Rake 0 +Board [8d 7d Qs Qc 7c] +Seat 1: Player3 folded before Flop (didn't bet) +Seat 2: Player5 folded before Flop +Seat 3: Player0 showed [8c Tc] and won (3540) with two pair, Queens and Eights +Seat 4: Player2 (button) showed [3d Ad] and lost with two pair, Queens and Sevens +Seat 5: Player6 (small blind) folded before Flop +Seat 6: Player7 (big blind) folded before Flop +Seat 7: Player8 folded before Flop +Seat 8: Player4 folded before Flop (didn't bet) +Seat 9: Player1 folded before Flop (didn't bet) +Seat 10: Player9 folded before Flop (didn't bet) + + diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt index 6bf36f9f..d97d3ca1 100644 --- a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-STT-20-201006.DONturbo.txt @@ -1,2867 +1,2867 @@ -PokerStars Game #62678213223: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1500 in chips) -Seat 3: Player3 (1500 in chips) -Seat 4: Player4 (1500 in chips) -Seat 5: Player5 (1500 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1500 in chips) -Seat 9: Player9 (1500 in chips) -Seat 10: Player8 (1500 in chips) -Player1: posts small blind 10 -Player3: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [4c 7d] -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player9: folds -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (10) returned to Player3 -Player3 collected 20 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 20 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) collected (20) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32163049071: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1490 in chips) -Seat 3: Player3 (1510 in chips) -Seat 4: Player4 (1500 in chips) -Seat 5: Player5 (1500 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1500 in chips) -Seat 9: Player9 (1500 in chips) -Seat 10: Player8 (1500 in chips) -Player3: posts small blind 10 -Player4: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [8h Jh] -Player5: folds -Player2: folds -Player6: folds -Player0: raises 40 to 60 -Player9: folds -Player8: folds -Player7: folds -Player1: calls 60 -Player3: folds -Player4: folds -*** FLOP *** [2h 7c Th] -Player0: bets 80 -Player1: calls 80 -*** TURN *** [2h 7c Th] [5s] -Player0: checks -Player1: bets 217 -Player0: calls 217 -*** RIVER *** [2h 7c Th 5s] [Jd] -Player0: checks -Player1: checks -*** SHOW DOWN *** -Player0: shows [8h Jh] (a pair of Jacks) -Player1: mucks hand -Player0 collected 744 from pot -*** SUMMARY *** -Total pot 744 | Rake 0 -Board [2h 7c Th 5s Jd] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) mucked [9c 9s] -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 showed [8h Jh] and won (744) with a pair of Jacks -Seat 9: Player9 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32288202831: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (1500 in chips) -Seat 4: Player4 (1480 in chips) -Seat 5: Player5 (1500 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (1500 in chips) -Seat 10: Player8 (1500 in chips) -Player4: posts small blind 10 -Player5: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [Ks 8s] -Player2: folds -Player6: folds -Player0: folds -Player9: calls 20 -Player8: folds -Player7: folds -Player1: folds -Player3: raises 60 to 80 -Player4: folds -Player5: folds -Player9: folds -Uncalled bet (60) returned to Player3 -Player3 collected 70 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 70 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) collected (70) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #42832402272: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (1550 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1480 in chips) -Seat 6: Player2 (1500 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (1480 in chips) -Seat 10: Player8 (1500 in chips) -Player5: posts small blind 10 -Player2: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [7c 5c] -Player6: folds -Player0: folds -Player9: calls 20 -Player8: folds -Player7: folds -Player1: folds -Player3: raises 60 to 80 -Player4: folds -Player5: folds -Player2: folds -Player9: calls 60 -*** FLOP *** [Ks Qc Td] -Player9: bets 80 -Player3: folds -Uncalled bet (80) returned to Player9 -Player9 collected 190 from pot -*** SUMMARY *** -Total pot 190 | Rake 0 -Board [Ks Qc Td] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded on the Flop -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 collected (190) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #23213683913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (1470 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1480 in chips) -Seat 7: Player6 (1500 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (1590 in chips) -Seat 10: Player8 (1500 in chips) -Player2: posts small blind 10 -Player6: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [Jh Qc] -Player0: folds -Player9: raises 40 to 60 -Player8: folds -Player7: folds -Player1: folds -Player3: raises 100 to 160 -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player9: calls 100 -*** FLOP *** [8h Qd Js] -Player9: bets 160 -Player3: raises 160 to 320 -Player9: raises 280 to 600 -Player3: raises 710 to 1310 and is all-in -Player9: calls 710 -*** TURN *** [8h Qd Js] [8s] -*** RIVER *** [8h Qd Js 8s] [2h] -*** SHOW DOWN *** -Player9: shows [Qs Kd] (two pair, Queens and Eights) -Player3: shows [Kc Ks] (two pair, Kings and Eights) -Player3 collected 2970 from pot -*** SUMMARY *** -Total pot 2970 | Rake 0 -Board [8h Qd Js 8s 2h] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 showed [Kc Ks] and won (2970) with two pair, Kings and Eights -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 9: Player9 showed [Qs Kd] and lost with two pair, Queens and Eights -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #63032690445: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (2970 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1480 in chips) -Seat 8: Player0 (1887 in chips) -Seat 9: Player9 (120 in chips) -Seat 10: Player8 (1500 in chips) -Player6: posts small blind 10 -Player0: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [7h 8c] -Player9: raises 100 to 120 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: calls 100 -*** FLOP *** [4h 9h 3s] -*** TURN *** [4h 9h 3s] [Ks] -*** RIVER *** [4h 9h 3s Ks] [9s] -*** SHOW DOWN *** -Player0: shows [7h 8c] (a pair of Nines) -Player9: shows [2d 2c] (two pair, Nines and Deuces) -Player9 collected 250 from pot -*** SUMMARY *** -Total pot 250 | Rake 0 -Board [4h 9h 3s Ks 9s] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) showed [7h 8c] and lost with a pair of Nines -Seat 9: Player9 showed [2d 2c] and won (250) with two pair, Nines and Deuces -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #26424166162: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] -Table '999999993 1' 10-max Seat #7 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (2970 in chips) -Seat 4: Player4 (1470 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1470 in chips) -Seat 8: Player0 (1767 in chips) -Seat 9: Player9 (250 in chips) -Seat 10: Player8 (1500 in chips) -Player0: posts small blind 10 -Player9: posts big blind 20 -*** HOLE CARDS *** -Dealt to Player0 [2d 4s] -Player8: folds -Player7: folds -Player1: folds -Player3: raises 60 to 80 -Player4: calls 80 -Player5: folds -Player2: folds -Player6: calls 80 -Player0: folds -Player9: folds -*** FLOP *** [Ks 8s 8c] -Player3: checks -Player4: checks -Player6: checks -*** TURN *** [Ks 8s 8c] [2c] -Player3: checks -Player4: checks -Player6: bets 140 -Player3: folds -Player4: folds -Uncalled bet (140) returned to Player6 -Player6 collected 270 from pot -*** SUMMARY *** -Total pot 270 | Rake 0 -Board [Ks 8s 8c 2c] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded on the Turn -Seat 4: Player4 folded on the Turn -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 (button) collected (270) -Seat 8: Player0 (small blind) folded before Flop -Seat 9: Player9 (big blind) folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #17689229111: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (2890 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1757 in chips) -Seat 9: Player9 (230 in chips) -Seat 10: Player8 (1500 in chips) -Player9: posts small blind 15 -Player8: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Th Kd] -Player7: folds -Player1: folds -Player3: raises 90 to 120 -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player9: raises 110 to 230 and is all-in -Player8: folds -Player3: calls 110 -*** FLOP *** [5s 5d 6s] -*** TURN *** [5s 5d 6s] [Qs] -*** RIVER *** [5s 5d 6s Qs] [Jc] -*** SHOW DOWN *** -Player9: shows [Ks 8d] (a pair of Fives) -Player3: shows [Ac Qc] (two pair, Queens and Fives) -Player3 collected 490 from pot -Player9 finished the tournament in 10th place -*** SUMMARY *** -Total pot 490 | Rake 0 -Board [5s 5d 6s Qs Jc] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 showed [Ac Qc] and won (490) with two pair, Queens and Fives -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 9: Player9 (small blind) showed [Ks 8d] and lost with a pair of Fives -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #24859173248: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1133 in chips) -Seat 3: Player3 (3150 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1757 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts small blind 15 -Player1: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Ah Td] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: raises 90 to 120 -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (90) returned to Player0 -Player0 collected 75 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 75 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 collected (75) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #23369170253: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1103 in chips) -Seat 3: Player3 (3150 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1470 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player1: posts small blind 15 -Player3: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Js Qs] -Player4: folds -Player5: folds -Player2: raises 30 to 60 -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: calls 45 -Player3: folds -*** FLOP *** [2d 7d 4s] -Player1: bets 120 -Player2: raises 150 to 270 -Player1: calls 150 -*** TURN *** [2d 7d 4s] [3c] -Player1: checks -Player2: checks -*** RIVER *** [2d 7d 4s 3c] [5d] -Player1: bets 773 and is all-in -Player2: folds -Uncalled bet (773) returned to Player1 -Player1 collected 690 from pot -*** SUMMARY *** -Total pot 690 | Rake 0 -Board [2d 7d 4s 3c 5d] -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) collected (690) -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded on the River -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #10078346175: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3120 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1140 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player3: posts small blind 15 -Player4: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [6h Kc] -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Uncalled bet (15) returned to Player4 -Player4 collected 30 from pot -*** SUMMARY *** -Total pot 30 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) collected (30) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #14493477081: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1405 in chips) -Seat 5: Player5 (1470 in chips) -Seat 6: Player2 (1140 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player4: posts small blind 15 -Player5: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [Td 9c] -Player2: raises 60 to 90 -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (60) returned to Player2 -Player2 collected 75 from pot -Player2: doesn't show hand -*** SUMMARY *** -Total pot 75 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 collected (75) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #17974129386: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1440 in chips) -Seat 6: Player2 (1185 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player5: posts small blind 15 -Player2: posts big blind 30 -*** HOLE CARDS *** -Dealt to Player0 [4c Ts] -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (15) returned to Player2 -Player2 collected 30 from pot -Player2: doesn't show hand -*** SUMMARY *** -Total pot 30 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) collected (30) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #21963114551: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1463 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1390 in chips) -Seat 5: Player5 (1425 in chips) -Seat 6: Player2 (1200 in chips) -Seat 7: Player6 (1660 in chips) -Seat 8: Player0 (1802 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player2: posts small blind 25 -Player6: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [3c Th] -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 3050 to 3100 and is all-in -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Uncalled bet (3050) returned to Player3 -Player3 collected 170 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (170) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #67720495136: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1480 in chips) -Seat 2: Player1 (1458 in chips) -Seat 3: Player3 (3220 in chips) -Seat 4: Player4 (1385 in chips) -Seat 5: Player5 (1420 in chips) -Seat 6: Player2 (1170 in chips) -Seat 7: Player6 (1605 in chips) -Seat 8: Player0 (1797 in chips) -Seat 10: Player8 (1465 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player6: posts small blind 25 -Player0: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [Ad 3h] -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: raises 150 to 200 -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Uncalled bet (150) returned to Player4 -Player4 collected 170 from pot -Player4: shows [Th Td] (a pair of Tens) -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 collected (170) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #82492925521: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] -Table '999999993 1' 10-max Seat #7 is the button -Seat 1: Player7 (1475 in chips) -Seat 2: Player1 (1453 in chips) -Seat 3: Player3 (3215 in chips) -Seat 4: Player4 (1500 in chips) -Seat 5: Player5 (1415 in chips) -Seat 6: Player2 (1165 in chips) -Seat 7: Player6 (1575 in chips) -Seat 8: Player0 (1742 in chips) -Seat 10: Player8 (1460 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player0: posts small blind 25 -Player8: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [4c 3d] -Player7: folds -Player1: folds -Player3: raises 50 to 100 -Player4: folds -Player5: folds -Player2: folds -Player6: calls 100 -Player0: folds -Player8: folds -*** FLOP *** [As 7h Td] -Player3: bets 3110 and is all-in -Player6: folds -Uncalled bet (3110) returned to Player3 -Player3 collected 320 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 320 | Rake 0 -Board [As 7h Td] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (320) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 (button) folded on the Flop -Seat 8: Player0 (small blind) folded before Flop -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #21093287397: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1470 in chips) -Seat 2: Player1 (1448 in chips) -Seat 3: Player3 (3430 in chips) -Seat 4: Player4 (1495 in chips) -Seat 5: Player5 (1410 in chips) -Seat 6: Player2 (1160 in chips) -Seat 7: Player6 (1470 in chips) -Seat 8: Player0 (1712 in chips) -Seat 10: Player8 (1405 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player8: posts small blind 25 -Player7: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [Js Qd] -Player1: folds -Player3: raises 50 to 100 -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (50) returned to Player3 -Player3 collected 170 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (170) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #71563601774: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1415 in chips) -Seat 2: Player1 (1443 in chips) -Seat 3: Player3 (3545 in chips) -Seat 4: Player4 (1490 in chips) -Seat 5: Player5 (1405 in chips) -Seat 6: Player2 (1155 in chips) -Seat 7: Player6 (1465 in chips) -Seat 8: Player0 (1707 in chips) -Seat 10: Player8 (1375 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player7: posts small blind 25 -Player1: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [4h Qh] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: raises 100 to 150 -Player7: folds -Player1: folds -Uncalled bet (100) returned to Player8 -Player8 collected 170 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) collected (170) - - - -PokerStars Game #28530256453: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1385 in chips) -Seat 2: Player1 (1388 in chips) -Seat 3: Player3 (3540 in chips) -Seat 4: Player4 (1485 in chips) -Seat 5: Player5 (1400 in chips) -Seat 6: Player2 (1150 in chips) -Seat 7: Player6 (1460 in chips) -Seat 8: Player0 (1702 in chips) -Seat 10: Player8 (1490 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player1: posts small blind 25 -Player3: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [Td 7c] -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (25) returned to Player3 -Player3 collected 95 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 95 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) collected (95) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #30086223433: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1380 in chips) -Seat 2: Player1 (1358 in chips) -Seat 3: Player3 (3605 in chips) -Seat 4: Player4 (1480 in chips) -Seat 5: Player5 (1395 in chips) -Seat 6: Player2 (1145 in chips) -Seat 7: Player6 (1455 in chips) -Seat 8: Player0 (1697 in chips) -Seat 10: Player8 (1485 in chips) -Player7: posts the ante 5 -Player1: posts the ante 5 -Player3: posts the ante 5 -Player4: posts the ante 5 -Player5: posts the ante 5 -Player2: posts the ante 5 -Player6: posts the ante 5 -Player0: posts the ante 5 -Player8: posts the ante 5 -Player3: posts small blind 25 -Player4: posts big blind 50 -*** HOLE CARDS *** -Dealt to Player0 [8s 7h] -Player5: raises 100 to 150 -Player2: folds -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (100) returned to Player5 -Player5 collected 170 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot 170 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 collected (170) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #24072342623: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1375 in chips) -Seat 2: Player1 (1353 in chips) -Seat 3: Player3 (3575 in chips) -Seat 4: Player4 (1425 in chips) -Seat 5: Player5 (1510 in chips) -Seat 6: Player2 (1140 in chips) -Seat 7: Player6 (1450 in chips) -Seat 8: Player0 (1692 in chips) -Seat 10: Player8 (1480 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player4: posts small blind 50 -Player5: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Ts As] -Player2: folds -Player6: folds -Player0: raises 200 to 300 -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (200) returned to Player0 -Player0 collected 340 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 340 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 collected (340) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #48301138530: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1365 in chips) -Seat 2: Player1 (1343 in chips) -Seat 3: Player3 (3565 in chips) -Seat 4: Player4 (1365 in chips) -Seat 5: Player5 (1400 in chips) -Seat 6: Player2 (1130 in chips) -Seat 7: Player6 (1440 in chips) -Seat 8: Player0 (1922 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player5: posts small blind 50 -Player2: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Th 7d] -Player6: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 100 to 200 -Player4: folds -Player5: folds -Player2: calls 100 -*** FLOP *** [Ts 6c 5s] -Player2: checks -Player3: bets 200 -Player2: calls 200 -*** TURN *** [Ts 6c 5s] [7s] -Player2: bets 300 -Player3: folds -Uncalled bet (300) returned to Player2 -Player2 collected 940 from pot -Player2: doesn't show hand -*** SUMMARY *** -Total pot 940 | Rake 0 -Board [Ts 6c 5s 7s] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded on the Turn -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) collected (940) -Seat 7: Player6 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #24109969712: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1355 in chips) -Seat 2: Player1 (1333 in chips) -Seat 3: Player3 (3155 in chips) -Seat 4: Player4 (1355 in chips) -Seat 5: Player5 (1340 in chips) -Seat 6: Player2 (1660 in chips) -Seat 7: Player6 (1430 in chips) -Seat 8: Player0 (1912 in chips) -Seat 10: Player8 (1460 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player2: posts small blind 50 -Player6: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Tc 4c] -Player0: folds -Player8: folds -Player7: folds -Player1: raises 1223 to 1323 and is all-in -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Uncalled bet (1223) returned to Player1 -Player1 collected 340 from pot -*** SUMMARY *** -Total pot 340 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 collected (340) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 7: Player6 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #30792250485: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1345 in chips) -Seat 2: Player1 (1563 in chips) -Seat 3: Player3 (3145 in chips) -Seat 4: Player4 (1345 in chips) -Seat 5: Player5 (1330 in chips) -Seat 6: Player2 (1600 in chips) -Seat 7: Player6 (1320 in chips) -Seat 8: Player0 (1902 in chips) -Seat 10: Player8 (1450 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player6: posts small blind 50 -Player0: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [7s 2h] -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player6: folds -Uncalled bet (50) returned to Player0 -Player0 collected 190 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 190 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 7: Player6 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (190) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #13065275367: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] -Table '999999993 1' 10-max Seat #7 is the button -Seat 1: Player7 (1335 in chips) -Seat 2: Player1 (1553 in chips) -Seat 3: Player3 (3135 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (1320 in chips) -Seat 6: Player2 (1590 in chips) -Seat 7: Player6 (1260 in chips) -Seat 8: Player0 (2032 in chips) -Seat 10: Player8 (1440 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player6: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player0: posts small blind 50 -Player8: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Jc 6h] -Player7: folds -Player1: folds -Player3: folds -Player4: raises 100 to 200 -Player5: folds -Player2: raises 300 to 500 -Player6: raises 750 to 1250 and is all-in -Player0: folds -Player8: folds -Player4: folds -Player2: calls 750 -*** FLOP *** [5s 9s 2c] -*** TURN *** [5s 9s 2c] [6d] -*** RIVER *** [5s 9s 2c 6d] [Qd] -*** SHOW DOWN *** -Player2: shows [Js Jd] (a pair of Jacks) -Player6: shows [Kc Ad] (high card Ace) -Player2 collected 2940 from pot -Player6 finished the tournament in 9th place -*** SUMMARY *** -Total pot 2940 | Rake 0 -Board [5s 9s 2c 6d Qd] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 showed [Js Jd] and won (2940) with a pair of Jacks -Seat 7: Player6 (button) showed [Kc Ad] and lost with high card Ace -Seat 8: Player0 (small blind) folded before Flop -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #21787227501: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1325 in chips) -Seat 2: Player1 (1543 in chips) -Seat 3: Player3 (3125 in chips) -Seat 4: Player4 (1125 in chips) -Seat 5: Player5 (1310 in chips) -Seat 6: Player2 (3270 in chips) -Seat 8: Player0 (1972 in chips) -Seat 10: Player8 (1330 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player8: posts small blind 50 -Player7: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [Tc Kd] -Player4 said, "Hey Newfyboy,, you were ragging everyone about fishing at our last table,,,,what about you shoving all in to me with Q 10 in the small blind position and me busting you with KK" -Player1: raises 1433 to 1533 and is all-in -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (1433) returned to Player1 -Player1 collected 330 from pot -*** SUMMARY *** -Total pot 330 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 collected (330) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #97333030912: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1215 in chips) -Seat 2: Player1 (1763 in chips) -Seat 3: Player3 (3115 in chips) -Seat 4: Player4 (1115 in chips) -Seat 5: Player5 (1300 in chips) -Seat 6: Player2 (3260 in chips) -Seat 8: Player0 (1962 in chips) -Seat 10: Player8 (1270 in chips) -Player7: posts the ante 10 -Player1: posts the ante 10 -Player3: posts the ante 10 -Player4: posts the ante 10 -Player5: posts the ante 10 -Player2: posts the ante 10 -Player0: posts the ante 10 -Player8: posts the ante 10 -Player7: posts small blind 50 -Player1: posts big blind 100 -*** HOLE CARDS *** -Dealt to Player0 [2s Js] -Player3: folds -Player4: raises 200 to 300 -Player0 is connected -Player5 said, "i wasnt ragging everyone..just the guy that donked me in a couple trnys" -Player5: folds -Player2: folds -Player4 said, "oh,,," -Player0: folds -Player0 is sitting out -Player8: folds -Player7: folds -Player0 has returned -Player1: folds -Uncalled bet (200) returned to Player4 -Player4 collected 330 from pot -Player4: shows [Ah Ac] (a pair of Aces) -*** SUMMARY *** -Total pot 330 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 collected (330) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #15498191522: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1155 in chips) -Seat 2: Player1 (1653 in chips) -Seat 3: Player3 (3105 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (1290 in chips) -Seat 6: Player2 (3250 in chips) -Seat 8: Player0 (1952 in chips) -Seat 10: Player8 (1260 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player1: posts small blind 75 -Player3: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [9d Tc] -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: raises 990 to 1140 and is all-in -Player1: folds -Player3: folds -Uncalled bet (990) returned to Player7 -Player7 collected 495 from pot -Player7: doesn't show hand -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 (button) collected (495) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #14585315141: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1485 in chips) -Seat 2: Player1 (1563 in chips) -Seat 3: Player3 (2940 in chips) -Seat 4: Player4 (1320 in chips) -Seat 5: Player5 (1275 in chips) -Seat 6: Player2 (3235 in chips) -Seat 8: Player0 (1937 in chips) -Seat 10: Player8 (1245 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player3: posts small blind 75 -Player4: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Jh 7d] -Player4 said, "just unlucky timing is all" -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: raises 1320 to 1470 and is all-in -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (1320) returned to Player7 -Player7 collected 495 from pot -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 collected (495) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #11948180943: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1815 in chips) -Seat 2: Player1 (1548 in chips) -Seat 3: Player3 (2850 in chips) -Seat 4: Player4 (1155 in chips) -Seat 5: Player5 (1260 in chips) -Seat 6: Player2 (3220 in chips) -Seat 8: Player0 (1922 in chips) -Seat 10: Player8 (1230 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player4: posts small blind 75 -Player5: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Td 6d] -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: calls 75 -Player5: checks -*** FLOP *** [9h 3s 7d] -Player4: bets 450 -Player5: folds -Uncalled bet (450) returned to Player4 -Player4 collected 420 from pot -Player4: shows [Kc 9c] (a pair of Nines) -*** SUMMARY *** -Total pot 420 | Rake 0 -Board [9h 3s 7d] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) collected (420) -Seat 5: Player5 (big blind) folded on the Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #17624911842: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1800 in chips) -Seat 2: Player1 (1533 in chips) -Seat 3: Player3 (2835 in chips) -Seat 4: Player4 (1410 in chips) -Seat 5: Player5 (1095 in chips) -Seat 6: Player2 (3205 in chips) -Seat 8: Player0 (1907 in chips) -Seat 10: Player8 (1215 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player5: posts small blind 75 -Player2: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [3c 5h] -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: raises 930 to 1080 and is all-in -Player2: folds -Uncalled bet (930) returned to Player5 -Player5 collected 420 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot 420 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) collected (420) -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #23032927970: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1785 in chips) -Seat 2: Player1 (1518 in chips) -Seat 3: Player3 (2820 in chips) -Seat 4: Player4 (1395 in chips) -Seat 5: Player5 (1350 in chips) -Seat 6: Player2 (3040 in chips) -Seat 8: Player0 (1892 in chips) -Seat 10: Player8 (1200 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player2: posts small blind 75 -Player0: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Tc 8s] -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player5 said, "3 outered once again..had k 10" -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (75) returned to Player0 -Player0 collected 270 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 270 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (270) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #23986188992: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1770 in chips) -Seat 2: Player1 (1503 in chips) -Seat 3: Player3 (2805 in chips) -Seat 4: Player4 (1380 in chips) -Seat 5: Player5 (1335 in chips) -Seat 6: Player2 (2950 in chips) -Seat 8: Player0 (2072 in chips) -Seat 10: Player8 (1185 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player0: posts small blind 75 -Player8: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [2c 6h] -Player7: folds -Player4 said, "i showed,,,,you see K 9" -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Uncalled bet (75) returned to Player8 -Player8 collected 270 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 270 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) folded before Flop -Seat 10: Player8 (big blind) collected (270) - - - -PokerStars Game #56828726239: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1755 in chips) -Seat 2: Player1 (1488 in chips) -Seat 3: Player3 (2790 in chips) -Seat 4: Player4 (1365 in chips) -Seat 5: Player5 (1320 in chips) -Seat 6: Player2 (2935 in chips) -Seat 8: Player0 (1982 in chips) -Seat 10: Player8 (1365 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player8: posts small blind 75 -Player7: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [Js 6d] -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: raises 1817 to 1967 and is all-in -Player8: folds -Player7: folds -Uncalled bet (1817) returned to Player0 -Player0 collected 495 from pot -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) collected (495) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #38112793216: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1590 in chips) -Seat 2: Player1 (1473 in chips) -Seat 3: Player3 (2775 in chips) -Seat 4: Player4 (1350 in chips) -Seat 5: Player5 (1305 in chips) -Seat 6: Player2 (2920 in chips) -Seat 8: Player0 (2312 in chips) -Seat 10: Player8 (1275 in chips) -Player7: posts the ante 15 -Player1: posts the ante 15 -Player3: posts the ante 15 -Player4: posts the ante 15 -Player5: posts the ante 15 -Player2: posts the ante 15 -Player0: posts the ante 15 -Player8: posts the ante 15 -Player7: posts small blind 75 -Player1: posts big blind 150 -*** HOLE CARDS *** -Dealt to Player0 [4s Ks] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: raises 1110 to 1260 and is all-in -Player7: folds -Player1: folds -Uncalled bet (1110) returned to Player8 -Player8 collected 495 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 495 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) collected (495) - - - -PokerStars Game #31069130752: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (1308 in chips) -Seat 3: Player3 (2760 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (1290 in chips) -Seat 6: Player2 (2905 in chips) -Seat 8: Player0 (2297 in chips) -Seat 10: Player8 (1605 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player1: posts small blind 100 -Player3: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [5d Ac] -Player4: raises 600 to 800 -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Uncalled bet (600) returned to Player4 -Player4 collected 660 from pot -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 collected (660) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32482731311: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1480 in chips) -Seat 2: Player1 (1188 in chips) -Seat 3: Player3 (2540 in chips) -Seat 4: Player4 (1775 in chips) -Seat 5: Player5 (1270 in chips) -Seat 6: Player2 (2885 in chips) -Seat 8: Player0 (2277 in chips) -Seat 10: Player8 (1585 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player3: posts small blind 100 -Player4: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Qc Ac] -Player5: folds -Player2: folds -Player0: raises 2057 to 2257 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (2057) returned to Player0 -Player0 collected 660 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (660) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #88351539130: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1460 in chips) -Seat 2: Player1 (1168 in chips) -Seat 3: Player3 (2420 in chips) -Seat 4: Player4 (1555 in chips) -Seat 5: Player5 (1250 in chips) -Seat 6: Player2 (2865 in chips) -Seat 8: Player0 (2717 in chips) -Seat 10: Player8 (1565 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player4: posts small blind 100 -Player5: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [4d 8d] -Player2: folds -Player0: folds -Player8: raises 1345 to 1545 and is all-in -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Uncalled bet (1345) returned to Player8 -Player8 collected 660 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 collected (660) - - - -PokerStars Game #17361301211: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1440 in chips) -Seat 2: Player1 (1148 in chips) -Seat 3: Player3 (2400 in chips) -Seat 4: Player4 (1435 in chips) -Seat 5: Player5 (1030 in chips) -Seat 6: Player2 (2845 in chips) -Seat 8: Player0 (2697 in chips) -Seat 10: Player8 (2005 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player5: posts small blind 100 -Player2: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Tc 9d] -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 2180 to 2380 and is all-in -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (2180) returned to Player3 -Player3 collected 660 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 collected (660) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #97221803271: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1420 in chips) -Seat 2: Player1 (1128 in chips) -Seat 3: Player3 (2840 in chips) -Seat 4: Player4 (1415 in chips) -Seat 5: Player5 (910 in chips) -Seat 6: Player2 (2625 in chips) -Seat 8: Player0 (2677 in chips) -Seat 10: Player8 (1985 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player2: posts small blind 100 -Player0: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Th Jd] -Player8: folds -Player7: raises 1200 to 1400 and is all-in -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Uncalled bet (1200) returned to Player7 -Player7 collected 660 from pot -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 collected (660) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) folded before Flop -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #15548756265: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1860 in chips) -Seat 2: Player1 (1108 in chips) -Seat 3: Player3 (2820 in chips) -Seat 4: Player4 (1395 in chips) -Seat 5: Player5 (890 in chips) -Seat 6: Player2 (2505 in chips) -Seat 8: Player0 (2457 in chips) -Seat 10: Player8 (1965 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player0: posts small blind 100 -Player8: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Kc 8s] -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: raises 1200 to 1400 -Player8: folds -Uncalled bet (1200) returned to Player0 -Player0 collected 560 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 560 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (560) -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #12086528146: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1840 in chips) -Seat 2: Player1 (1088 in chips) -Seat 3: Player3 (2800 in chips) -Seat 4: Player4 (1375 in chips) -Seat 5: Player5 (870 in chips) -Seat 6: Player2 (2485 in chips) -Seat 8: Player0 (2797 in chips) -Seat 10: Player8 (1745 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player8: posts small blind 100 -Player7: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [9h 4h] -Player1: raises 868 to 1068 and is all-in -Player3: raises 1712 to 2780 and is all-in -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (1712) returned to Player3 -*** FLOP *** [4s 7h 7s] -*** TURN *** [4s 7h 7s] [4c] -*** RIVER *** [4s 7h 7s 4c] [9s] -*** SHOW DOWN *** -Player1: shows [Ts Ks] (a flush, King high) -Player3: shows [Qh Ad] (two pair, Sevens and Fours) -Player1 collected 2596 from pot -*** SUMMARY *** -Total pot 2596 | Rake 0 -Board [4s 7h 7s 4c 9s] -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 showed [Ts Ks] and won (2596) with a flush, King high -Seat 3: Player3 showed [Qh Ad] and lost with two pair, Sevens and Fours -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #13697312495: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1620 in chips) -Seat 2: Player1 (2596 in chips) -Seat 3: Player3 (1712 in chips) -Seat 4: Player4 (1355 in chips) -Seat 5: Player5 (850 in chips) -Seat 6: Player2 (2465 in chips) -Seat 8: Player0 (2777 in chips) -Seat 10: Player8 (1625 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player7: posts small blind 100 -Player1: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [9c 6h] -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: folds -Player8: raises 1405 to 1605 and is all-in -Player7: folds -Player1: folds -Uncalled bet (1405) returned to Player8 -Player8 collected 660 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) collected (660) - - - -PokerStars Game #13761146921: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1500 in chips) -Seat 2: Player1 (2376 in chips) -Seat 3: Player3 (1692 in chips) -Seat 4: Player4 (1335 in chips) -Seat 5: Player5 (830 in chips) -Seat 6: Player2 (2445 in chips) -Seat 8: Player0 (2757 in chips) -Seat 10: Player8 (2065 in chips) -Player7: posts the ante 20 -Player1: posts the ante 20 -Player3: posts the ante 20 -Player4: posts the ante 20 -Player5: posts the ante 20 -Player2: posts the ante 20 -Player0: posts the ante 20 -Player8: posts the ante 20 -Player1: posts small blind 100 -Player3: posts big blind 200 -*** HOLE CARDS *** -Dealt to Player0 [Qh 3h] -Player4: folds -Player5: raises 610 to 810 and is all-in -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Uncalled bet (610) returned to Player5 -Player5 collected 660 from pot -Player5: doesn't show hand -*** SUMMARY *** -Total pot 660 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 collected (660) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #30422752324: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (1480 in chips) -Seat 2: Player1 (2256 in chips) -Seat 3: Player3 (1472 in chips) -Seat 4: Player4 (1315 in chips) -Seat 5: Player5 (1270 in chips) -Seat 6: Player2 (2425 in chips) -Seat 8: Player0 (2737 in chips) -Seat 10: Player8 (2045 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player3: posts small blind 125 -Player4: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [7c 9c] -Player5: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Player3: raises 250 to 500 -Player4: raises 500 to 1000 -Player3: folds -Uncalled bet (500) returned to Player4 -Player4 collected 1200 from pot -Player4: shows [Ad As] (a pair of Aces) -*** SUMMARY *** -Total pot 1200 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) collected (1200) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #24883115542: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1455 in chips) -Seat 2: Player1 (2231 in chips) -Seat 3: Player3 (947 in chips) -Seat 4: Player4 (1990 in chips) -Seat 5: Player5 (1245 in chips) -Seat 6: Player2 (2400 in chips) -Seat 8: Player0 (2712 in chips) -Seat 10: Player8 (2020 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player4: posts small blind 125 -Player5: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [8h Js] -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: raises 1956 to 2206 and is all-in -Player3: calls 922 and is all-in -Player4: folds -Player5: folds -Uncalled bet (1284) returned to Player1 -*** FLOP *** [4s 6h 5s] -*** TURN *** [4s 6h 5s] [5c] -*** RIVER *** [4s 6h 5s 5c] [9d] -*** SHOW DOWN *** -Player1: shows [Jd Qh] (a pair of Fives) -Player3: shows [Ah Ad] (two pair, Aces and Fives) -Player3 collected 2419 from pot -*** SUMMARY *** -Total pot 2419 | Rake 0 -Board [4s 6h 5s 5c 9d] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 showed [Jd Qh] and lost with a pair of Fives -Seat 3: Player3 (button) showed [Ah Ad] and won (2419) with two pair, Aces and Fives -Seat 4: Player4 (small blind) folded before Flop -Seat 5: Player5 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #22311473630: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1430 in chips) -Seat 2: Player1 (1284 in chips) -Seat 3: Player3 (2419 in chips) -Seat 4: Player4 (1840 in chips) -Seat 5: Player5 (970 in chips) -Seat 6: Player2 (2375 in chips) -Seat 8: Player0 (2687 in chips) -Seat 10: Player8 (1995 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player5: posts small blind 125 -Player2: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [5c Ks] -Player0: folds -Player8: folds -Player7: folds -Player1: raises 1009 to 1259 and is all-in -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (1009) returned to Player1 -Player1 collected 825 from pot -*** SUMMARY *** -Total pot 825 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 collected (825) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 5: Player5 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #21725324525: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] -Table '999999993 1' 10-max Seat #5 is the button -Seat 1: Player7 (1405 in chips) -Seat 2: Player1 (1834 in chips) -Seat 3: Player3 (2394 in chips) -Seat 4: Player4 (1815 in chips) -Seat 5: Player5 (820 in chips) -Seat 6: Player2 (2100 in chips) -Seat 8: Player0 (2662 in chips) -Seat 10: Player8 (1970 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player2: posts small blind 125 -Player0: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [4s Ks] -Player8: folds -Player4 said, "gamlet,,,A 10,,,nice suck out" -Player7: folds -Player1: folds -Player4 said, "you lucked out" -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Uncalled bet (125) returned to Player0 -Player0 collected 450 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 450 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) collected (450) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #25457310702: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (1380 in chips) -Seat 2: Player1 (1809 in chips) -Seat 3: Player3 (2369 in chips) -Seat 4: Player4 (1790 in chips) -Seat 5: Player5 (795 in chips) -Seat 6: Player2 (1950 in chips) -Seat 8: Player0 (2962 in chips) -Seat 10: Player8 (1945 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player0: posts small blind 125 -Player8: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [3d 7s] -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player5: folds -Player2: folds -Player0: raises 2687 to 2937 and is all-in -Player8: folds -Uncalled bet (2687) returned to Player0 -Player0 collected 700 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 700 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (700) -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #16450285998: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (1355 in chips) -Seat 2: Player1 (1784 in chips) -Seat 3: Player3 (2344 in chips) -Seat 4: Player4 (1765 in chips) -Seat 5: Player5 (770 in chips) -Seat 6: Player2 (1925 in chips) -Seat 8: Player0 (3387 in chips) -Seat 10: Player8 (1670 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player5: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player8: posts small blind 125 -Player7: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [2d As] -Player1: raises 1509 to 1759 and is all-in -Player3: folds -Player4: folds -Player5: calls 745 and is all-in -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (1014) returned to Player1 -*** FLOP *** [3c 2c Ks] -*** TURN *** [3c 2c Ks] [7c] -*** RIVER *** [3c 2c Ks 7c] [5s] -*** SHOW DOWN *** -Player1: shows [Tc Ac] (a flush, Ace high) -Player5: shows [Ts Td] (a pair of Tens) -Player1 collected 2065 from pot -Player5 finished the tournament in 8th place -*** SUMMARY *** -Total pot 2065 | Rake 0 -Board [3c 2c Ks 7c 5s] -Seat 1: Player7 (big blind) folded before Flop -Seat 2: Player1 showed [Tc Ac] and won (2065) with a flush, Ace high -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 5: Player5 showed [Ts Td] and lost with a pair of Tens -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #29432277481: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1080 in chips) -Seat 2: Player1 (3079 in chips) -Seat 3: Player3 (2319 in chips) -Seat 4: Player4 (1740 in chips) -Seat 6: Player2 (1900 in chips) -Seat 8: Player0 (3362 in chips) -Seat 10: Player8 (1520 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player7: posts small blind 125 -Player1: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [Qh 2s] -Player3: raises 250 to 500 -Player4: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player1: folds -Uncalled bet (250) returned to Player3 -Player3 collected 800 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 800 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 2: Player1 (big blind) folded before Flop -Seat 3: Player3 collected (800) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #14663167952: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (930 in chips) -Seat 2: Player1 (2804 in chips) -Seat 3: Player3 (2844 in chips) -Seat 4: Player4 (1715 in chips) -Seat 6: Player2 (1875 in chips) -Seat 8: Player0 (3337 in chips) -Seat 10: Player8 (1495 in chips) -Player7: posts the ante 25 -Player1: posts the ante 25 -Player3: posts the ante 25 -Player4: posts the ante 25 -Player2: posts the ante 25 -Player0: posts the ante 25 -Player8: posts the ante 25 -Player1: posts small blind 125 -Player3: posts big blind 250 -*** HOLE CARDS *** -Dealt to Player0 [Ad Ts] -Player4: folds -Player2: folds -Player0: raises 500 to 750 -Player8: folds -Player7: raises 155 to 905 and is all-in -Player1: folds -Player3: folds -Player0: calls 155 -*** FLOP *** [5h 7h As] -*** TURN *** [5h 7h As] [8h] -*** RIVER *** [5h 7h As 8h] [Jh] -*** SHOW DOWN *** -Player0: shows [Ad Ts] (a pair of Aces) -Player7: shows [Kh Kc] (a flush, King high) -Player7 collected 2360 from pot -*** SUMMARY *** -Total pot 2360 | Rake 0 -Board [5h 7h As 8h Jh] -Seat 1: Player7 (button) showed [Kh Kc] and won (2360) with a flush, King high -Seat 2: Player1 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 showed [Ad Ts] and lost with a pair of Aces -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #25038217401: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] -Table '999999993 1' 10-max Seat #2 is the button -Seat 1: Player7 (2360 in chips) -Seat 2: Player1 (2654 in chips) -Seat 3: Player3 (2569 in chips) -Seat 4: Player4 (1690 in chips) -Seat 6: Player2 (1850 in chips) -Seat 8: Player0 (2407 in chips) -Seat 10: Player8 (1470 in chips) -Player7: posts the ante 30 -Player1: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player3: posts small blind 150 -Player4: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [As Kc] -Player2: folds -Player0: raises 2077 to 2377 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Uncalled bet (2077) returned to Player0 -Player0 collected 960 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 960 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (960) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #16107184333: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (2330 in chips) -Seat 2: Player1 (2624 in chips) -Seat 3: Player3 (2389 in chips) -Seat 4: Player4 (1360 in chips) -Seat 6: Player2 (1820 in chips) -Seat 8: Player0 (3037 in chips) -Seat 10: Player8 (1440 in chips) -Player7: posts the ante 30 -Player1: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player4: posts small blind 150 -Player2: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [2s 2d] -Player0: raises 2707 to 3007 and is all-in -Player8: folds -Player7: folds -Player1: folds -Player3: folds -Player4: folds -Player2: folds -Uncalled bet (2707) returned to Player0 -Player0 collected 960 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 960 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 collected (960) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #97952060720: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (2300 in chips) -Seat 2: Player1 (2594 in chips) -Seat 3: Player3 (2359 in chips) -Seat 4: Player4 (1180 in chips) -Seat 6: Player2 (1490 in chips) -Seat 8: Player0 (3667 in chips) -Seat 10: Player8 (1410 in chips) -Player7: posts the ante 30 -Player1: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player2: posts small blind 150 -Player0: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [Th Td] -Player8: folds -Player7: folds -Player1: raises 2264 to 2564 and is all-in -Player3: folds -Player4: folds -Player2: folds -Player0: calls 2264 -*** FLOP *** [Ad Kc 7c] -*** TURN *** [Ad Kc 7c] [9s] -*** RIVER *** [Ad Kc 7c 9s] [Qs] -*** SHOW DOWN *** -Player0: shows [Th Td] (a pair of Tens) -Player1: shows [Tc 9c] (a pair of Nines) -Player0 collected 5488 from pot -Player1 finished the tournament in 7th place -*** SUMMARY *** -Total pot 5488 | Rake 0 -Board [Ad Kc 7c 9s Qs] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 2: Player1 showed [Tc 9c] and lost with a pair of Nines -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) folded before Flop -Seat 8: Player0 (big blind) showed [Th Td] and won (5488) with a pair of Tens -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #32542183913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] -Table '999999993 1' 10-max Seat #6 is the button -Seat 1: Player7 (2270 in chips) -Seat 3: Player3 (2329 in chips) -Seat 4: Player4 (1150 in chips) -Seat 6: Player2 (1310 in chips) -Seat 8: Player0 (6561 in chips) -Seat 10: Player8 (1380 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player0: posts small blind 150 -Player8: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [6d 7s] -Player7: folds -Player3: folds -Player4: folds -Player2: folds -Player0: raises 1800 to 2100 -Player8: folds -Uncalled bet (1800) returned to Player0 -Player0 collected 780 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 780 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 (button) folded before Flop (didn't bet) -Seat 8: Player0 (small blind) collected (780) -Seat 10: Player8 (big blind) folded before Flop - - - -PokerStars Game #13633150393: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] -Table '999999993 1' 10-max Seat #8 is the button -Seat 1: Player7 (2240 in chips) -Seat 3: Player3 (2299 in chips) -Seat 4: Player4 (1120 in chips) -Seat 6: Player2 (1280 in chips) -Seat 8: Player0 (7011 in chips) -Seat 10: Player8 (1050 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player8: posts small blind 150 -Player7: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [Kc Jc] -Player3: raises 300 to 600 -Player4: folds -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Uncalled bet (300) returned to Player3 -Player3 collected 930 from pot -Player3: doesn't show hand -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 (big blind) folded before Flop -Seat 3: Player3 collected (930) -Seat 4: Player4 folded before Flop (didn't bet) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 (button) folded before Flop (didn't bet) -Seat 10: Player8 (small blind) folded before Flop - - - -PokerStars Game #29869218603: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] -Table '999999993 1' 10-max Seat #10 is the button -Seat 1: Player7 (1910 in chips) -Seat 3: Player3 (2899 in chips) -Seat 4: Player4 (1090 in chips) -Seat 6: Player2 (1250 in chips) -Seat 8: Player0 (6981 in chips) -Seat 10: Player8 (870 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player7: posts small blind 150 -Player3: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [9c 4d] -Player4: raises 760 to 1060 and is all-in -Player2: folds -Player0: folds -Player8: folds -Player7: folds -Player3: folds -Uncalled bet (760) returned to Player4 -Player4 collected 930 from pot -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 (small blind) folded before Flop -Seat 3: Player3 (big blind) folded before Flop -Seat 4: Player4 collected (930) -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 (button) folded before Flop (didn't bet) - - - -PokerStars Game #31933493206: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] -Table '999999993 1' 10-max Seat #1 is the button -Seat 1: Player7 (1730 in chips) -Seat 3: Player3 (2569 in chips) -Seat 4: Player4 (1690 in chips) -Seat 6: Player2 (1220 in chips) -Seat 8: Player0 (6951 in chips) -Seat 10: Player8 (840 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player3: posts small blind 150 -Player4: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [4d Ac] -Player2: folds -Player0: raises 600 to 900 -Player8: folds -Player7: folds -Player3: folds -Player4: folds -Uncalled bet (600) returned to Player0 -Player0 collected 930 from pot -Player0: doesn't show hand -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 (button) folded before Flop (didn't bet) -Seat 3: Player3 (small blind) folded before Flop -Seat 4: Player4 (big blind) folded before Flop -Seat 6: Player2 folded before Flop (didn't bet) -Seat 8: Player0 collected (930) -Seat 10: Player8 folded before Flop (didn't bet) - - - -PokerStars Game #27455183722: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] -Table '999999993 1' 10-max Seat #3 is the button -Seat 1: Player7 (1700 in chips) -Seat 3: Player3 (2389 in chips) -Seat 4: Player4 (1360 in chips) -Seat 6: Player2 (1190 in chips) -Seat 8: Player0 (7551 in chips) -Seat 10: Player8 (810 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player4: posts small blind 150 -Player2: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [9d 6s] -Player0: folds -Player8: raises 450 to 750 -Player7: folds -Player3: folds -Player4: folds -Player2: folds -Uncalled bet (450) returned to Player8 -Player8 collected 930 from pot -Player8: doesn't show hand -*** SUMMARY *** -Total pot 930 | Rake 0 -Seat 1: Player7 folded before Flop (didn't bet) -Seat 3: Player3 (button) folded before Flop (didn't bet) -Seat 4: Player4 (small blind) folded before Flop -Seat 6: Player2 (big blind) folded before Flop -Seat 8: Player0 folded before Flop (didn't bet) -Seat 10: Player8 collected (930) - - - -PokerStars Game #12858227913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] -Table '999999993 1' 10-max Seat #4 is the button -Seat 1: Player7 (1670 in chips) -Seat 3: Player3 (2359 in chips) -Seat 4: Player4 (1180 in chips) -Seat 6: Player2 (860 in chips) -Seat 8: Player0 (7521 in chips) -Seat 10: Player8 (1410 in chips) -Player7: posts the ante 30 -Player3: posts the ante 30 -Player4: posts the ante 30 -Player2: posts the ante 30 -Player0: posts the ante 30 -Player8: posts the ante 30 -Player2: posts small blind 150 -Player0: posts big blind 300 -*** HOLE CARDS *** -Dealt to Player0 [Kd 7c] -Player8: folds -Player7: folds -Player3: folds -Player4: folds -Player2: raises 530 to 830 and is all-in -Player0: calls 530 -*** FLOP *** [7s Kc 3s] -*** TURN *** [7s Kc 3s] [9c] -*** RIVER *** [7s Kc 3s 9c] [6s] -*** SHOW DOWN *** -Player2: shows [Ah 6c] (a pair of Sixes) -Player0: shows [Kd 7c] (two pair, Kings and Sevens) -Player0 collected 1840 from pot -Player2 finished the tournament in 6th place -Player7 finished the tournament in 1st place and received $40.00. -Player3 finished the tournament in 1st place and received $40.00. -Player4 finished the tournament in 1st place and received $40.00. -Player0 finished the tournament in 1st place and received $40.00. -Player8 finished the tournament in 1st place and received $40.00. -*** SUMMARY *** -Total pot 1840 | Rake 0 -Board [7s Kc 3s 9c 6s] -Seat 1: Player7 folded before Flop (didn't bet) -Seat 3: Player3 folded before Flop (didn't bet) -Seat 4: Player4 (button) folded before Flop (didn't bet) -Seat 6: Player2 (small blind) showed [Ah 6c] and lost with a pair of Sixes -Seat 8: Player0 (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens -Seat 10: Player8 folded before Flop (didn't bet) - - - +PokerStars Game #62678213223: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:20:59 WET [2010/06/05 13:20:59 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1500 in chips) +Seat 3: Player3 (1500 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1500 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player1: posts small blind 10 +Player3: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [4c 7d] +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player9: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (10) returned to Player3 +Player3 collected 20 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 20 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) collected (20) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32163049071: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:21:28 WET [2010/06/05 13:21:28 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1490 in chips) +Seat 3: Player3 (1510 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1500 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player3: posts small blind 10 +Player4: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [8h Jh] +Player5: folds +Player2: folds +Player6: folds +Player0: raises 40 to 60 +Player9: folds +Player8: folds +Player7: folds +Player1: calls 60 +Player3: folds +Player4: folds +*** FLOP *** [2h 7c Th] +Player0: bets 80 +Player1: calls 80 +*** TURN *** [2h 7c Th] [5s] +Player0: checks +Player1: bets 217 +Player0: calls 217 +*** RIVER *** [2h 7c Th 5s] [Jd] +Player0: checks +Player1: checks +*** SHOW DOWN *** +Player0: shows [8h Jh] (a pair of Jacks) +Player1: mucks hand +Player0 collected 744 from pot +*** SUMMARY *** +Total pot 744 | Rake 0 +Board [2h 7c Th 5s Jd] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) mucked [9c 9s] +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 showed [8h Jh] and won (744) with a pair of Jacks +Seat 9: Player9 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32288202831: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:22:27 WET [2010/06/05 13:22:27 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1500 in chips) +Seat 4: Player4 (1480 in chips) +Seat 5: Player5 (1500 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1500 in chips) +Seat 10: Player8 (1500 in chips) +Player4: posts small blind 10 +Player5: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [Ks 8s] +Player2: folds +Player6: folds +Player0: folds +Player9: calls 20 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: folds +Player5: folds +Player9: folds +Uncalled bet (60) returned to Player3 +Player3 collected 70 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 70 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) collected (70) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #42832402272: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:00 WET [2010/06/05 13:23:00 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1550 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1480 in chips) +Seat 6: Player2 (1500 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1480 in chips) +Seat 10: Player8 (1500 in chips) +Player5: posts small blind 10 +Player2: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [7c 5c] +Player6: folds +Player0: folds +Player9: calls 20 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: folds +Player5: folds +Player2: folds +Player9: calls 60 +*** FLOP *** [Ks Qc Td] +Player9: bets 80 +Player3: folds +Uncalled bet (80) returned to Player9 +Player9 collected 190 from pot +*** SUMMARY *** +Total pot 190 | Rake 0 +Board [Ks Qc Td] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Flop +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 collected (190) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #23213683913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:23:43 WET [2010/06/05 13:23:43 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (1470 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1480 in chips) +Seat 7: Player6 (1500 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (1590 in chips) +Seat 10: Player8 (1500 in chips) +Player2: posts small blind 10 +Player6: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [Jh Qc] +Player0: folds +Player9: raises 40 to 60 +Player8: folds +Player7: folds +Player1: folds +Player3: raises 100 to 160 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player9: calls 100 +*** FLOP *** [8h Qd Js] +Player9: bets 160 +Player3: raises 160 to 320 +Player9: raises 280 to 600 +Player3: raises 710 to 1310 and is all-in +Player9: calls 710 +*** TURN *** [8h Qd Js] [8s] +*** RIVER *** [8h Qd Js 8s] [2h] +*** SHOW DOWN *** +Player9: shows [Qs Kd] (two pair, Queens and Eights) +Player3: shows [Kc Ks] (two pair, Kings and Eights) +Player3 collected 2970 from pot +*** SUMMARY *** +Total pot 2970 | Rake 0 +Board [8h Qd Js 8s 2h] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 showed [Kc Ks] and won (2970) with two pair, Kings and Eights +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 9: Player9 showed [Qs Kd] and lost with two pair, Queens and Eights +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #63032690445: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:24:42 WET [2010/06/05 13:24:42 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2970 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1480 in chips) +Seat 8: Player0 (1887 in chips) +Seat 9: Player9 (120 in chips) +Seat 10: Player8 (1500 in chips) +Player6: posts small blind 10 +Player0: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [7h 8c] +Player9: raises 100 to 120 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: calls 100 +*** FLOP *** [4h 9h 3s] +*** TURN *** [4h 9h 3s] [Ks] +*** RIVER *** [4h 9h 3s Ks] [9s] +*** SHOW DOWN *** +Player0: shows [7h 8c] (a pair of Nines) +Player9: shows [2d 2c] (two pair, Nines and Deuces) +Player9 collected 250 from pot +*** SUMMARY *** +Total pot 250 | Rake 0 +Board [4h 9h 3s Ks 9s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) showed [7h 8c] and lost with a pair of Nines +Seat 9: Player9 showed [2d 2c] and won (250) with two pair, Nines and Deuces +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #26424166162: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level I (10/20) - 2010/06/05 18:25:40 WET [2010/06/05 13:25:40 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2970 in chips) +Seat 4: Player4 (1470 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1470 in chips) +Seat 8: Player0 (1767 in chips) +Seat 9: Player9 (250 in chips) +Seat 10: Player8 (1500 in chips) +Player0: posts small blind 10 +Player9: posts big blind 20 +*** HOLE CARDS *** +Dealt to Player0 [2d 4s] +Player8: folds +Player7: folds +Player1: folds +Player3: raises 60 to 80 +Player4: calls 80 +Player5: folds +Player2: folds +Player6: calls 80 +Player0: folds +Player9: folds +*** FLOP *** [Ks 8s 8c] +Player3: checks +Player4: checks +Player6: checks +*** TURN *** [Ks 8s 8c] [2c] +Player3: checks +Player4: checks +Player6: bets 140 +Player3: folds +Player4: folds +Uncalled bet (140) returned to Player6 +Player6 collected 270 from pot +*** SUMMARY *** +Total pot 270 | Rake 0 +Board [Ks 8s 8c 2c] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Turn +Seat 4: Player4 folded on the Turn +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 (button) collected (270) +Seat 8: Player0 (small blind) folded before Flop +Seat 9: Player9 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #17689229111: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:26:52 WET [2010/06/05 13:26:52 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (2890 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1757 in chips) +Seat 9: Player9 (230 in chips) +Seat 10: Player8 (1500 in chips) +Player9: posts small blind 15 +Player8: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Th Kd] +Player7: folds +Player1: folds +Player3: raises 90 to 120 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player9: raises 110 to 230 and is all-in +Player8: folds +Player3: calls 110 +*** FLOP *** [5s 5d 6s] +*** TURN *** [5s 5d 6s] [Qs] +*** RIVER *** [5s 5d 6s Qs] [Jc] +*** SHOW DOWN *** +Player9: shows [Ks 8d] (a pair of Fives) +Player3: shows [Ac Qc] (two pair, Queens and Fives) +Player3 collected 490 from pot +Player9 finished the tournament in 10th place +*** SUMMARY *** +Total pot 490 | Rake 0 +Board [5s 5d 6s Qs Jc] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 showed [Ac Qc] and won (490) with two pair, Queens and Fives +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 9: Player9 (small blind) showed [Ks 8d] and lost with a pair of Fives +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #24859173248: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:27:52 WET [2010/06/05 13:27:52 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1133 in chips) +Seat 3: Player3 (3150 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1757 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts small blind 15 +Player1: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Ah Td] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: raises 90 to 120 +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (90) returned to Player0 +Player0 collected 75 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 75 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 collected (75) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #23369170253: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:28:38 WET [2010/06/05 13:28:38 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1103 in chips) +Seat 3: Player3 (3150 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1470 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player1: posts small blind 15 +Player3: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Js Qs] +Player4: folds +Player5: folds +Player2: raises 30 to 60 +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: calls 45 +Player3: folds +*** FLOP *** [2d 7d 4s] +Player1: bets 120 +Player2: raises 150 to 270 +Player1: calls 150 +*** TURN *** [2d 7d 4s] [3c] +Player1: checks +Player2: checks +*** RIVER *** [2d 7d 4s 3c] [5d] +Player1: bets 773 and is all-in +Player2: folds +Uncalled bet (773) returned to Player1 +Player1 collected 690 from pot +*** SUMMARY *** +Total pot 690 | Rake 0 +Board [2d 7d 4s 3c 5d] +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) collected (690) +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded on the River +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #10078346175: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:29:47 WET [2010/06/05 13:29:47 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3120 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player3: posts small blind 15 +Player4: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [6h Kc] +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (15) returned to Player4 +Player4 collected 30 from pot +*** SUMMARY *** +Total pot 30 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) collected (30) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #14493477081: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:22 WET [2010/06/05 13:30:22 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1405 in chips) +Seat 5: Player5 (1470 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player4: posts small blind 15 +Player5: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [Td 9c] +Player2: raises 60 to 90 +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (60) returned to Player2 +Player2 collected 75 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 75 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 collected (75) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #17974129386: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level II (15/30) - 2010/06/05 18:30:59 WET [2010/06/05 13:30:59 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1440 in chips) +Seat 6: Player2 (1185 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player5: posts small blind 15 +Player2: posts big blind 30 +*** HOLE CARDS *** +Dealt to Player0 [4c Ts] +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (15) returned to Player2 +Player2 collected 30 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 30 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) collected (30) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #21963114551: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:31:32 WET [2010/06/05 13:31:32 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1463 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1390 in chips) +Seat 5: Player5 (1425 in chips) +Seat 6: Player2 (1200 in chips) +Seat 7: Player6 (1660 in chips) +Seat 8: Player0 (1802 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player2: posts small blind 25 +Player6: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [3c Th] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 3050 to 3100 and is all-in +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (3050) returned to Player3 +Player3 collected 170 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (170) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #67720495136: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:32:17 WET [2010/06/05 13:32:17 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (1458 in chips) +Seat 3: Player3 (3220 in chips) +Seat 4: Player4 (1385 in chips) +Seat 5: Player5 (1420 in chips) +Seat 6: Player2 (1170 in chips) +Seat 7: Player6 (1605 in chips) +Seat 8: Player0 (1797 in chips) +Seat 10: Player8 (1465 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player6: posts small blind 25 +Player0: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Ad 3h] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: raises 150 to 200 +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Uncalled bet (150) returned to Player4 +Player4 collected 170 from pot +Player4: shows [Th Td] (a pair of Tens) +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 collected (170) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #82492925521: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:33:16 WET [2010/06/05 13:33:16 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1475 in chips) +Seat 2: Player1 (1453 in chips) +Seat 3: Player3 (3215 in chips) +Seat 4: Player4 (1500 in chips) +Seat 5: Player5 (1415 in chips) +Seat 6: Player2 (1165 in chips) +Seat 7: Player6 (1575 in chips) +Seat 8: Player0 (1742 in chips) +Seat 10: Player8 (1460 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player0: posts small blind 25 +Player8: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [4c 3d] +Player7: folds +Player1: folds +Player3: raises 50 to 100 +Player4: folds +Player5: folds +Player2: folds +Player6: calls 100 +Player0: folds +Player8: folds +*** FLOP *** [As 7h Td] +Player3: bets 3110 and is all-in +Player6: folds +Uncalled bet (3110) returned to Player3 +Player3 collected 320 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 320 | Rake 0 +Board [As 7h Td] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (320) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 (button) folded on the Flop +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #21093287397: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:10 WET [2010/06/05 13:34:10 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1470 in chips) +Seat 2: Player1 (1448 in chips) +Seat 3: Player3 (3430 in chips) +Seat 4: Player4 (1495 in chips) +Seat 5: Player5 (1410 in chips) +Seat 6: Player2 (1160 in chips) +Seat 7: Player6 (1470 in chips) +Seat 8: Player0 (1712 in chips) +Seat 10: Player8 (1405 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player8: posts small blind 25 +Player7: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Js Qd] +Player1: folds +Player3: raises 50 to 100 +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (50) returned to Player3 +Player3 collected 170 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (170) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #71563601774: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:34:40 WET [2010/06/05 13:34:40 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1415 in chips) +Seat 2: Player1 (1443 in chips) +Seat 3: Player3 (3545 in chips) +Seat 4: Player4 (1490 in chips) +Seat 5: Player5 (1405 in chips) +Seat 6: Player2 (1155 in chips) +Seat 7: Player6 (1465 in chips) +Seat 8: Player0 (1707 in chips) +Seat 10: Player8 (1375 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player7: posts small blind 25 +Player1: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [4h Qh] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: raises 100 to 150 +Player7: folds +Player1: folds +Uncalled bet (100) returned to Player8 +Player8 collected 170 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (170) + + + +PokerStars Game #28530256453: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:15 WET [2010/06/05 13:35:15 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1385 in chips) +Seat 2: Player1 (1388 in chips) +Seat 3: Player3 (3540 in chips) +Seat 4: Player4 (1485 in chips) +Seat 5: Player5 (1400 in chips) +Seat 6: Player2 (1150 in chips) +Seat 7: Player6 (1460 in chips) +Seat 8: Player0 (1702 in chips) +Seat 10: Player8 (1490 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player1: posts small blind 25 +Player3: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [Td 7c] +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (25) returned to Player3 +Player3 collected 95 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 95 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) collected (95) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #30086223433: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level III (25/50) - 2010/06/05 18:35:54 WET [2010/06/05 13:35:54 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1380 in chips) +Seat 2: Player1 (1358 in chips) +Seat 3: Player3 (3605 in chips) +Seat 4: Player4 (1480 in chips) +Seat 5: Player5 (1395 in chips) +Seat 6: Player2 (1145 in chips) +Seat 7: Player6 (1455 in chips) +Seat 8: Player0 (1697 in chips) +Seat 10: Player8 (1485 in chips) +Player7: posts the ante 5 +Player1: posts the ante 5 +Player3: posts the ante 5 +Player4: posts the ante 5 +Player5: posts the ante 5 +Player2: posts the ante 5 +Player6: posts the ante 5 +Player0: posts the ante 5 +Player8: posts the ante 5 +Player3: posts small blind 25 +Player4: posts big blind 50 +*** HOLE CARDS *** +Dealt to Player0 [8s 7h] +Player5: raises 100 to 150 +Player2: folds +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (100) returned to Player5 +Player5 collected 170 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 170 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 collected (170) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #24072342623: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:36:30 WET [2010/06/05 13:36:30 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1375 in chips) +Seat 2: Player1 (1353 in chips) +Seat 3: Player3 (3575 in chips) +Seat 4: Player4 (1425 in chips) +Seat 5: Player5 (1510 in chips) +Seat 6: Player2 (1140 in chips) +Seat 7: Player6 (1450 in chips) +Seat 8: Player0 (1692 in chips) +Seat 10: Player8 (1480 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player4: posts small blind 50 +Player5: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Ts As] +Player2: folds +Player6: folds +Player0: raises 200 to 300 +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (200) returned to Player0 +Player0 collected 340 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 collected (340) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #48301138530: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:37:10 WET [2010/06/05 13:37:10 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1365 in chips) +Seat 2: Player1 (1343 in chips) +Seat 3: Player3 (3565 in chips) +Seat 4: Player4 (1365 in chips) +Seat 5: Player5 (1400 in chips) +Seat 6: Player2 (1130 in chips) +Seat 7: Player6 (1440 in chips) +Seat 8: Player0 (1922 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player5: posts small blind 50 +Player2: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Th 7d] +Player6: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 100 to 200 +Player4: folds +Player5: folds +Player2: calls 100 +*** FLOP *** [Ts 6c 5s] +Player2: checks +Player3: bets 200 +Player2: calls 200 +*** TURN *** [Ts 6c 5s] [7s] +Player2: bets 300 +Player3: folds +Uncalled bet (300) returned to Player2 +Player2 collected 940 from pot +Player2: doesn't show hand +*** SUMMARY *** +Total pot 940 | Rake 0 +Board [Ts 6c 5s 7s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded on the Turn +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) collected (940) +Seat 7: Player6 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #24109969712: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:38:32 WET [2010/06/05 13:38:32 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1355 in chips) +Seat 2: Player1 (1333 in chips) +Seat 3: Player3 (3155 in chips) +Seat 4: Player4 (1355 in chips) +Seat 5: Player5 (1340 in chips) +Seat 6: Player2 (1660 in chips) +Seat 7: Player6 (1430 in chips) +Seat 8: Player0 (1912 in chips) +Seat 10: Player8 (1460 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player2: posts small blind 50 +Player6: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Tc 4c] +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1223 to 1323 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (1223) returned to Player1 +Player1 collected 340 from pot +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 collected (340) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 7: Player6 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #30792250485: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:08 WET [2010/06/05 13:39:08 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1345 in chips) +Seat 2: Player1 (1563 in chips) +Seat 3: Player3 (3145 in chips) +Seat 4: Player4 (1345 in chips) +Seat 5: Player5 (1330 in chips) +Seat 6: Player2 (1600 in chips) +Seat 7: Player6 (1320 in chips) +Seat 8: Player0 (1902 in chips) +Seat 10: Player8 (1450 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player6: posts small blind 50 +Player0: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [7s 2h] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player6: folds +Uncalled bet (50) returned to Player0 +Player0 collected 190 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 190 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 7: Player6 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (190) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #13065275367: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:39:39 WET [2010/06/05 13:39:39 ET] +Table '999999993 1' 10-max Seat #7 is the button +Seat 1: Player7 (1335 in chips) +Seat 2: Player1 (1553 in chips) +Seat 3: Player3 (3135 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1320 in chips) +Seat 6: Player2 (1590 in chips) +Seat 7: Player6 (1260 in chips) +Seat 8: Player0 (2032 in chips) +Seat 10: Player8 (1440 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player6: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player0: posts small blind 50 +Player8: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Jc 6h] +Player7: folds +Player1: folds +Player3: folds +Player4: raises 100 to 200 +Player5: folds +Player2: raises 300 to 500 +Player6: raises 750 to 1250 and is all-in +Player0: folds +Player8: folds +Player4: folds +Player2: calls 750 +*** FLOP *** [5s 9s 2c] +*** TURN *** [5s 9s 2c] [6d] +*** RIVER *** [5s 9s 2c 6d] [Qd] +*** SHOW DOWN *** +Player2: shows [Js Jd] (a pair of Jacks) +Player6: shows [Kc Ad] (high card Ace) +Player2 collected 2940 from pot +Player6 finished the tournament in 9th place +*** SUMMARY *** +Total pot 2940 | Rake 0 +Board [5s 9s 2c 6d Qd] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 showed [Js Jd] and won (2940) with a pair of Jacks +Seat 7: Player6 (button) showed [Kc Ad] and lost with high card Ace +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #21787227501: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:26 WET [2010/06/05 13:40:26 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1325 in chips) +Seat 2: Player1 (1543 in chips) +Seat 3: Player3 (3125 in chips) +Seat 4: Player4 (1125 in chips) +Seat 5: Player5 (1310 in chips) +Seat 6: Player2 (3270 in chips) +Seat 8: Player0 (1972 in chips) +Seat 10: Player8 (1330 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player8: posts small blind 50 +Player7: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [Tc Kd] +Player4 said, "Hey Newfyboy,, you were ragging everyone about fishing at our last table,,,,what about you shoving all in to me with Q 10 in the small blind position and me busting you with KK" +Player1: raises 1433 to 1533 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1433) returned to Player1 +Player1 collected 330 from pot +*** SUMMARY *** +Total pot 330 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 collected (330) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #97333030912: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level IV (50/100) - 2010/06/05 18:40:57 WET [2010/06/05 13:40:57 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1215 in chips) +Seat 2: Player1 (1763 in chips) +Seat 3: Player3 (3115 in chips) +Seat 4: Player4 (1115 in chips) +Seat 5: Player5 (1300 in chips) +Seat 6: Player2 (3260 in chips) +Seat 8: Player0 (1962 in chips) +Seat 10: Player8 (1270 in chips) +Player7: posts the ante 10 +Player1: posts the ante 10 +Player3: posts the ante 10 +Player4: posts the ante 10 +Player5: posts the ante 10 +Player2: posts the ante 10 +Player0: posts the ante 10 +Player8: posts the ante 10 +Player7: posts small blind 50 +Player1: posts big blind 100 +*** HOLE CARDS *** +Dealt to Player0 [2s Js] +Player3: folds +Player4: raises 200 to 300 +Player0 is connected +Player5 said, "i wasnt ragging everyone..just the guy that donked me in a couple trnys" +Player5: folds +Player2: folds +Player4 said, "oh,,," +Player0: folds +Player0 is sitting out +Player8: folds +Player7: folds +Player0 has returned +Player1: folds +Uncalled bet (200) returned to Player4 +Player4 collected 330 from pot +Player4: shows [Ah Ac] (a pair of Aces) +*** SUMMARY *** +Total pot 330 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 collected (330) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #15498191522: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:41:53 WET [2010/06/05 13:41:53 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1155 in chips) +Seat 2: Player1 (1653 in chips) +Seat 3: Player3 (3105 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1290 in chips) +Seat 6: Player2 (3250 in chips) +Seat 8: Player0 (1952 in chips) +Seat 10: Player8 (1260 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player1: posts small blind 75 +Player3: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [9d Tc] +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: raises 990 to 1140 and is all-in +Player1: folds +Player3: folds +Uncalled bet (990) returned to Player7 +Player7 collected 495 from pot +Player7: doesn't show hand +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (button) collected (495) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #14585315141: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:25 WET [2010/06/05 13:42:25 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1485 in chips) +Seat 2: Player1 (1563 in chips) +Seat 3: Player3 (2940 in chips) +Seat 4: Player4 (1320 in chips) +Seat 5: Player5 (1275 in chips) +Seat 6: Player2 (3235 in chips) +Seat 8: Player0 (1937 in chips) +Seat 10: Player8 (1245 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player3: posts small blind 75 +Player4: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Jh 7d] +Player4 said, "just unlucky timing is all" +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: raises 1320 to 1470 and is all-in +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (1320) returned to Player7 +Player7 collected 495 from pot +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 collected (495) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #11948180943: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:42:54 WET [2010/06/05 13:42:54 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1815 in chips) +Seat 2: Player1 (1548 in chips) +Seat 3: Player3 (2850 in chips) +Seat 4: Player4 (1155 in chips) +Seat 5: Player5 (1260 in chips) +Seat 6: Player2 (3220 in chips) +Seat 8: Player0 (1922 in chips) +Seat 10: Player8 (1230 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player4: posts small blind 75 +Player5: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Td 6d] +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: calls 75 +Player5: checks +*** FLOP *** [9h 3s 7d] +Player4: bets 450 +Player5: folds +Uncalled bet (450) returned to Player4 +Player4 collected 420 from pot +Player4: shows [Kc 9c] (a pair of Nines) +*** SUMMARY *** +Total pot 420 | Rake 0 +Board [9h 3s 7d] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) collected (420) +Seat 5: Player5 (big blind) folded on the Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #17624911842: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:33 WET [2010/06/05 13:43:33 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1800 in chips) +Seat 2: Player1 (1533 in chips) +Seat 3: Player3 (2835 in chips) +Seat 4: Player4 (1410 in chips) +Seat 5: Player5 (1095 in chips) +Seat 6: Player2 (3205 in chips) +Seat 8: Player0 (1907 in chips) +Seat 10: Player8 (1215 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player5: posts small blind 75 +Player2: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [3c 5h] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: raises 930 to 1080 and is all-in +Player2: folds +Uncalled bet (930) returned to Player5 +Player5 collected 420 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 420 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) collected (420) +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #23032927970: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:43:56 WET [2010/06/05 13:43:56 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1785 in chips) +Seat 2: Player1 (1518 in chips) +Seat 3: Player3 (2820 in chips) +Seat 4: Player4 (1395 in chips) +Seat 5: Player5 (1350 in chips) +Seat 6: Player2 (3040 in chips) +Seat 8: Player0 (1892 in chips) +Seat 10: Player8 (1200 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player2: posts small blind 75 +Player0: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Tc 8s] +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player5 said, "3 outered once again..had k 10" +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (75) returned to Player0 +Player0 collected 270 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 270 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (270) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #23986188992: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:44:24 WET [2010/06/05 13:44:24 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1770 in chips) +Seat 2: Player1 (1503 in chips) +Seat 3: Player3 (2805 in chips) +Seat 4: Player4 (1380 in chips) +Seat 5: Player5 (1335 in chips) +Seat 6: Player2 (2950 in chips) +Seat 8: Player0 (2072 in chips) +Seat 10: Player8 (1185 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player0: posts small blind 75 +Player8: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [2c 6h] +Player7: folds +Player4 said, "i showed,,,,you see K 9" +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Uncalled bet (75) returned to Player8 +Player8 collected 270 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 270 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) folded before Flop +Seat 10: Player8 (big blind) collected (270) + + + +PokerStars Game #56828726239: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:08 WET [2010/06/05 13:45:08 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1755 in chips) +Seat 2: Player1 (1488 in chips) +Seat 3: Player3 (2790 in chips) +Seat 4: Player4 (1365 in chips) +Seat 5: Player5 (1320 in chips) +Seat 6: Player2 (2935 in chips) +Seat 8: Player0 (1982 in chips) +Seat 10: Player8 (1365 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player8: posts small blind 75 +Player7: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [Js 6d] +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 1817 to 1967 and is all-in +Player8: folds +Player7: folds +Uncalled bet (1817) returned to Player0 +Player0 collected 495 from pot +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) collected (495) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #38112793216: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level V (75/150) - 2010/06/05 18:45:39 WET [2010/06/05 13:45:39 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1590 in chips) +Seat 2: Player1 (1473 in chips) +Seat 3: Player3 (2775 in chips) +Seat 4: Player4 (1350 in chips) +Seat 5: Player5 (1305 in chips) +Seat 6: Player2 (2920 in chips) +Seat 8: Player0 (2312 in chips) +Seat 10: Player8 (1275 in chips) +Player7: posts the ante 15 +Player1: posts the ante 15 +Player3: posts the ante 15 +Player4: posts the ante 15 +Player5: posts the ante 15 +Player2: posts the ante 15 +Player0: posts the ante 15 +Player8: posts the ante 15 +Player7: posts small blind 75 +Player1: posts big blind 150 +*** HOLE CARDS *** +Dealt to Player0 [4s Ks] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: raises 1110 to 1260 and is all-in +Player7: folds +Player1: folds +Uncalled bet (1110) returned to Player8 +Player8 collected 495 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 495 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (495) + + + +PokerStars Game #31069130752: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:08 WET [2010/06/05 13:46:08 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (1308 in chips) +Seat 3: Player3 (2760 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (1290 in chips) +Seat 6: Player2 (2905 in chips) +Seat 8: Player0 (2297 in chips) +Seat 10: Player8 (1605 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player1: posts small blind 100 +Player3: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [5d Ac] +Player4: raises 600 to 800 +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (600) returned to Player4 +Player4 collected 660 from pot +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 collected (660) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32482731311: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:46:45 WET [2010/06/05 13:46:45 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (1188 in chips) +Seat 3: Player3 (2540 in chips) +Seat 4: Player4 (1775 in chips) +Seat 5: Player5 (1270 in chips) +Seat 6: Player2 (2885 in chips) +Seat 8: Player0 (2277 in chips) +Seat 10: Player8 (1585 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player3: posts small blind 100 +Player4: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Qc Ac] +Player5: folds +Player2: folds +Player0: raises 2057 to 2257 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (2057) returned to Player0 +Player0 collected 660 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (660) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #88351539130: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:21 WET [2010/06/05 13:47:21 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1460 in chips) +Seat 2: Player1 (1168 in chips) +Seat 3: Player3 (2420 in chips) +Seat 4: Player4 (1555 in chips) +Seat 5: Player5 (1250 in chips) +Seat 6: Player2 (2865 in chips) +Seat 8: Player0 (2717 in chips) +Seat 10: Player8 (1565 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player4: posts small blind 100 +Player5: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [4d 8d] +Player2: folds +Player0: folds +Player8: raises 1345 to 1545 and is all-in +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Uncalled bet (1345) returned to Player8 +Player8 collected 660 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 collected (660) + + + +PokerStars Game #17361301211: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:47:46 WET [2010/06/05 13:47:46 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1440 in chips) +Seat 2: Player1 (1148 in chips) +Seat 3: Player3 (2400 in chips) +Seat 4: Player4 (1435 in chips) +Seat 5: Player5 (1030 in chips) +Seat 6: Player2 (2845 in chips) +Seat 8: Player0 (2697 in chips) +Seat 10: Player8 (2005 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player5: posts small blind 100 +Player2: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Tc 9d] +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 2180 to 2380 and is all-in +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (2180) returned to Player3 +Player3 collected 660 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 collected (660) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #97221803271: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:48:23 WET [2010/06/05 13:48:23 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1420 in chips) +Seat 2: Player1 (1128 in chips) +Seat 3: Player3 (2840 in chips) +Seat 4: Player4 (1415 in chips) +Seat 5: Player5 (910 in chips) +Seat 6: Player2 (2625 in chips) +Seat 8: Player0 (2677 in chips) +Seat 10: Player8 (1985 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player2: posts small blind 100 +Player0: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Th Jd] +Player8: folds +Player7: raises 1200 to 1400 and is all-in +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Uncalled bet (1200) returned to Player7 +Player7 collected 660 from pot +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 collected (660) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) folded before Flop +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #15548756265: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:16 WET [2010/06/05 13:49:16 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1860 in chips) +Seat 2: Player1 (1108 in chips) +Seat 3: Player3 (2820 in chips) +Seat 4: Player4 (1395 in chips) +Seat 5: Player5 (890 in chips) +Seat 6: Player2 (2505 in chips) +Seat 8: Player0 (2457 in chips) +Seat 10: Player8 (1965 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player0: posts small blind 100 +Player8: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Kc 8s] +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 1200 to 1400 +Player8: folds +Uncalled bet (1200) returned to Player0 +Player0 collected 560 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 560 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (560) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #12086528146: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:49:41 WET [2010/06/05 13:49:41 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1840 in chips) +Seat 2: Player1 (1088 in chips) +Seat 3: Player3 (2800 in chips) +Seat 4: Player4 (1375 in chips) +Seat 5: Player5 (870 in chips) +Seat 6: Player2 (2485 in chips) +Seat 8: Player0 (2797 in chips) +Seat 10: Player8 (1745 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player8: posts small blind 100 +Player7: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [9h 4h] +Player1: raises 868 to 1068 and is all-in +Player3: raises 1712 to 2780 and is all-in +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1712) returned to Player3 +*** FLOP *** [4s 7h 7s] +*** TURN *** [4s 7h 7s] [4c] +*** RIVER *** [4s 7h 7s 4c] [9s] +*** SHOW DOWN *** +Player1: shows [Ts Ks] (a flush, King high) +Player3: shows [Qh Ad] (two pair, Sevens and Fours) +Player1 collected 2596 from pot +*** SUMMARY *** +Total pot 2596 | Rake 0 +Board [4s 7h 7s 4c 9s] +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 showed [Ts Ks] and won (2596) with a flush, King high +Seat 3: Player3 showed [Qh Ad] and lost with two pair, Sevens and Fours +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #13697312495: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:50:27 WET [2010/06/05 13:50:27 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1620 in chips) +Seat 2: Player1 (2596 in chips) +Seat 3: Player3 (1712 in chips) +Seat 4: Player4 (1355 in chips) +Seat 5: Player5 (850 in chips) +Seat 6: Player2 (2465 in chips) +Seat 8: Player0 (2777 in chips) +Seat 10: Player8 (1625 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player7: posts small blind 100 +Player1: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [9c 6h] +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: folds +Player8: raises 1405 to 1605 and is all-in +Player7: folds +Player1: folds +Uncalled bet (1405) returned to Player8 +Player8 collected 660 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) collected (660) + + + +PokerStars Game #13761146921: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VI (100/200) - 2010/06/05 18:51:00 WET [2010/06/05 13:51:00 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1500 in chips) +Seat 2: Player1 (2376 in chips) +Seat 3: Player3 (1692 in chips) +Seat 4: Player4 (1335 in chips) +Seat 5: Player5 (830 in chips) +Seat 6: Player2 (2445 in chips) +Seat 8: Player0 (2757 in chips) +Seat 10: Player8 (2065 in chips) +Player7: posts the ante 20 +Player1: posts the ante 20 +Player3: posts the ante 20 +Player4: posts the ante 20 +Player5: posts the ante 20 +Player2: posts the ante 20 +Player0: posts the ante 20 +Player8: posts the ante 20 +Player1: posts small blind 100 +Player3: posts big blind 200 +*** HOLE CARDS *** +Dealt to Player0 [Qh 3h] +Player4: folds +Player5: raises 610 to 810 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Uncalled bet (610) returned to Player5 +Player5 collected 660 from pot +Player5: doesn't show hand +*** SUMMARY *** +Total pot 660 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 collected (660) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #30422752324: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:51:36 WET [2010/06/05 13:51:36 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (1480 in chips) +Seat 2: Player1 (2256 in chips) +Seat 3: Player3 (1472 in chips) +Seat 4: Player4 (1315 in chips) +Seat 5: Player5 (1270 in chips) +Seat 6: Player2 (2425 in chips) +Seat 8: Player0 (2737 in chips) +Seat 10: Player8 (2045 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player3: posts small blind 125 +Player4: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [7c 9c] +Player5: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Player3: raises 250 to 500 +Player4: raises 500 to 1000 +Player3: folds +Uncalled bet (500) returned to Player4 +Player4 collected 1200 from pot +Player4: shows [Ad As] (a pair of Aces) +*** SUMMARY *** +Total pot 1200 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) collected (1200) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #24883115542: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:18 WET [2010/06/05 13:52:18 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1455 in chips) +Seat 2: Player1 (2231 in chips) +Seat 3: Player3 (947 in chips) +Seat 4: Player4 (1990 in chips) +Seat 5: Player5 (1245 in chips) +Seat 6: Player2 (2400 in chips) +Seat 8: Player0 (2712 in chips) +Seat 10: Player8 (2020 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player4: posts small blind 125 +Player5: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [8h Js] +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1956 to 2206 and is all-in +Player3: calls 922 and is all-in +Player4: folds +Player5: folds +Uncalled bet (1284) returned to Player1 +*** FLOP *** [4s 6h 5s] +*** TURN *** [4s 6h 5s] [5c] +*** RIVER *** [4s 6h 5s 5c] [9d] +*** SHOW DOWN *** +Player1: shows [Jd Qh] (a pair of Fives) +Player3: shows [Ah Ad] (two pair, Aces and Fives) +Player3 collected 2419 from pot +*** SUMMARY *** +Total pot 2419 | Rake 0 +Board [4s 6h 5s 5c 9d] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 showed [Jd Qh] and lost with a pair of Fives +Seat 3: Player3 (button) showed [Ah Ad] and won (2419) with two pair, Aces and Fives +Seat 4: Player4 (small blind) folded before Flop +Seat 5: Player5 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #22311473630: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:52:55 WET [2010/06/05 13:52:55 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1430 in chips) +Seat 2: Player1 (1284 in chips) +Seat 3: Player3 (2419 in chips) +Seat 4: Player4 (1840 in chips) +Seat 5: Player5 (970 in chips) +Seat 6: Player2 (2375 in chips) +Seat 8: Player0 (2687 in chips) +Seat 10: Player8 (1995 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player5: posts small blind 125 +Player2: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [5c Ks] +Player0: folds +Player8: folds +Player7: folds +Player1: raises 1009 to 1259 and is all-in +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (1009) returned to Player1 +Player1 collected 825 from pot +*** SUMMARY *** +Total pot 825 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 collected (825) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 5: Player5 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #21725324525: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:29 WET [2010/06/05 13:53:29 ET] +Table '999999993 1' 10-max Seat #5 is the button +Seat 1: Player7 (1405 in chips) +Seat 2: Player1 (1834 in chips) +Seat 3: Player3 (2394 in chips) +Seat 4: Player4 (1815 in chips) +Seat 5: Player5 (820 in chips) +Seat 6: Player2 (2100 in chips) +Seat 8: Player0 (2662 in chips) +Seat 10: Player8 (1970 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player2: posts small blind 125 +Player0: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [4s Ks] +Player8: folds +Player4 said, "gamlet,,,A 10,,,nice suck out" +Player7: folds +Player1: folds +Player4 said, "you lucked out" +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Uncalled bet (125) returned to Player0 +Player0 collected 450 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 450 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) collected (450) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #25457310702: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:53:56 WET [2010/06/05 13:53:56 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (1380 in chips) +Seat 2: Player1 (1809 in chips) +Seat 3: Player3 (2369 in chips) +Seat 4: Player4 (1790 in chips) +Seat 5: Player5 (795 in chips) +Seat 6: Player2 (1950 in chips) +Seat 8: Player0 (2962 in chips) +Seat 10: Player8 (1945 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player0: posts small blind 125 +Player8: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [3d 7s] +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player5: folds +Player2: folds +Player0: raises 2687 to 2937 and is all-in +Player8: folds +Uncalled bet (2687) returned to Player0 +Player0 collected 700 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 700 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (700) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #16450285998: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:54:21 WET [2010/06/05 13:54:21 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (1355 in chips) +Seat 2: Player1 (1784 in chips) +Seat 3: Player3 (2344 in chips) +Seat 4: Player4 (1765 in chips) +Seat 5: Player5 (770 in chips) +Seat 6: Player2 (1925 in chips) +Seat 8: Player0 (3387 in chips) +Seat 10: Player8 (1670 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player5: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player8: posts small blind 125 +Player7: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [2d As] +Player1: raises 1509 to 1759 and is all-in +Player3: folds +Player4: folds +Player5: calls 745 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (1014) returned to Player1 +*** FLOP *** [3c 2c Ks] +*** TURN *** [3c 2c Ks] [7c] +*** RIVER *** [3c 2c Ks 7c] [5s] +*** SHOW DOWN *** +Player1: shows [Tc Ac] (a flush, Ace high) +Player5: shows [Ts Td] (a pair of Tens) +Player1 collected 2065 from pot +Player5 finished the tournament in 8th place +*** SUMMARY *** +Total pot 2065 | Rake 0 +Board [3c 2c Ks 7c 5s] +Seat 1: Player7 (big blind) folded before Flop +Seat 2: Player1 showed [Tc Ac] and won (2065) with a flush, Ace high +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 5: Player5 showed [Ts Td] and lost with a pair of Tens +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #29432277481: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:03 WET [2010/06/05 13:55:03 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1080 in chips) +Seat 2: Player1 (3079 in chips) +Seat 3: Player3 (2319 in chips) +Seat 4: Player4 (1740 in chips) +Seat 6: Player2 (1900 in chips) +Seat 8: Player0 (3362 in chips) +Seat 10: Player8 (1520 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player7: posts small blind 125 +Player1: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [Qh 2s] +Player3: raises 250 to 500 +Player4: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player1: folds +Uncalled bet (250) returned to Player3 +Player3 collected 800 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 800 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 2: Player1 (big blind) folded before Flop +Seat 3: Player3 collected (800) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #14663167952: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VII (125/250) - 2010/06/05 18:55:21 WET [2010/06/05 13:55:21 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (930 in chips) +Seat 2: Player1 (2804 in chips) +Seat 3: Player3 (2844 in chips) +Seat 4: Player4 (1715 in chips) +Seat 6: Player2 (1875 in chips) +Seat 8: Player0 (3337 in chips) +Seat 10: Player8 (1495 in chips) +Player7: posts the ante 25 +Player1: posts the ante 25 +Player3: posts the ante 25 +Player4: posts the ante 25 +Player2: posts the ante 25 +Player0: posts the ante 25 +Player8: posts the ante 25 +Player1: posts small blind 125 +Player3: posts big blind 250 +*** HOLE CARDS *** +Dealt to Player0 [Ad Ts] +Player4: folds +Player2: folds +Player0: raises 500 to 750 +Player8: folds +Player7: raises 155 to 905 and is all-in +Player1: folds +Player3: folds +Player0: calls 155 +*** FLOP *** [5h 7h As] +*** TURN *** [5h 7h As] [8h] +*** RIVER *** [5h 7h As 8h] [Jh] +*** SHOW DOWN *** +Player0: shows [Ad Ts] (a pair of Aces) +Player7: shows [Kh Kc] (a flush, King high) +Player7 collected 2360 from pot +*** SUMMARY *** +Total pot 2360 | Rake 0 +Board [5h 7h As 8h Jh] +Seat 1: Player7 (button) showed [Kh Kc] and won (2360) with a flush, King high +Seat 2: Player1 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 showed [Ad Ts] and lost with a pair of Aces +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #25038217401: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:07 WET [2010/06/05 13:56:07 ET] +Table '999999993 1' 10-max Seat #2 is the button +Seat 1: Player7 (2360 in chips) +Seat 2: Player1 (2654 in chips) +Seat 3: Player3 (2569 in chips) +Seat 4: Player4 (1690 in chips) +Seat 6: Player2 (1850 in chips) +Seat 8: Player0 (2407 in chips) +Seat 10: Player8 (1470 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player3: posts small blind 150 +Player4: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [As Kc] +Player2: folds +Player0: raises 2077 to 2377 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Uncalled bet (2077) returned to Player0 +Player0 collected 960 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (960) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #16107184333: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:23 WET [2010/06/05 13:56:23 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (2330 in chips) +Seat 2: Player1 (2624 in chips) +Seat 3: Player3 (2389 in chips) +Seat 4: Player4 (1360 in chips) +Seat 6: Player2 (1820 in chips) +Seat 8: Player0 (3037 in chips) +Seat 10: Player8 (1440 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player4: posts small blind 150 +Player2: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [2s 2d] +Player0: raises 2707 to 3007 and is all-in +Player8: folds +Player7: folds +Player1: folds +Player3: folds +Player4: folds +Player2: folds +Uncalled bet (2707) returned to Player0 +Player0 collected 960 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 collected (960) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #97952060720: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:56:37 WET [2010/06/05 13:56:37 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (2300 in chips) +Seat 2: Player1 (2594 in chips) +Seat 3: Player3 (2359 in chips) +Seat 4: Player4 (1180 in chips) +Seat 6: Player2 (1490 in chips) +Seat 8: Player0 (3667 in chips) +Seat 10: Player8 (1410 in chips) +Player7: posts the ante 30 +Player1: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player2: posts small blind 150 +Player0: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Th Td] +Player8: folds +Player7: folds +Player1: raises 2264 to 2564 and is all-in +Player3: folds +Player4: folds +Player2: folds +Player0: calls 2264 +*** FLOP *** [Ad Kc 7c] +*** TURN *** [Ad Kc 7c] [9s] +*** RIVER *** [Ad Kc 7c 9s] [Qs] +*** SHOW DOWN *** +Player0: shows [Th Td] (a pair of Tens) +Player1: shows [Tc 9c] (a pair of Nines) +Player0 collected 5488 from pot +Player1 finished the tournament in 7th place +*** SUMMARY *** +Total pot 5488 | Rake 0 +Board [Ad Kc 7c 9s Qs] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 2: Player1 showed [Tc 9c] and lost with a pair of Nines +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) folded before Flop +Seat 8: Player0 (big blind) showed [Th Td] and won (5488) with a pair of Tens +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #32542183913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:14 WET [2010/06/05 13:57:14 ET] +Table '999999993 1' 10-max Seat #6 is the button +Seat 1: Player7 (2270 in chips) +Seat 3: Player3 (2329 in chips) +Seat 4: Player4 (1150 in chips) +Seat 6: Player2 (1310 in chips) +Seat 8: Player0 (6561 in chips) +Seat 10: Player8 (1380 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player0: posts small blind 150 +Player8: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [6d 7s] +Player7: folds +Player3: folds +Player4: folds +Player2: folds +Player0: raises 1800 to 2100 +Player8: folds +Uncalled bet (1800) returned to Player0 +Player0 collected 780 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 780 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 (button) folded before Flop (didn't bet) +Seat 8: Player0 (small blind) collected (780) +Seat 10: Player8 (big blind) folded before Flop + + + +PokerStars Game #13633150393: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:57:47 WET [2010/06/05 13:57:47 ET] +Table '999999993 1' 10-max Seat #8 is the button +Seat 1: Player7 (2240 in chips) +Seat 3: Player3 (2299 in chips) +Seat 4: Player4 (1120 in chips) +Seat 6: Player2 (1280 in chips) +Seat 8: Player0 (7011 in chips) +Seat 10: Player8 (1050 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player8: posts small blind 150 +Player7: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Kc Jc] +Player3: raises 300 to 600 +Player4: folds +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Uncalled bet (300) returned to Player3 +Player3 collected 930 from pot +Player3: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (big blind) folded before Flop +Seat 3: Player3 collected (930) +Seat 4: Player4 folded before Flop (didn't bet) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 (button) folded before Flop (didn't bet) +Seat 10: Player8 (small blind) folded before Flop + + + +PokerStars Game #29869218603: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:09 WET [2010/06/05 13:58:09 ET] +Table '999999993 1' 10-max Seat #10 is the button +Seat 1: Player7 (1910 in chips) +Seat 3: Player3 (2899 in chips) +Seat 4: Player4 (1090 in chips) +Seat 6: Player2 (1250 in chips) +Seat 8: Player0 (6981 in chips) +Seat 10: Player8 (870 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player7: posts small blind 150 +Player3: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [9c 4d] +Player4: raises 760 to 1060 and is all-in +Player2: folds +Player0: folds +Player8: folds +Player7: folds +Player3: folds +Uncalled bet (760) returned to Player4 +Player4 collected 930 from pot +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (small blind) folded before Flop +Seat 3: Player3 (big blind) folded before Flop +Seat 4: Player4 collected (930) +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 (button) folded before Flop (didn't bet) + + + +PokerStars Game #31933493206: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:34 WET [2010/06/05 13:58:34 ET] +Table '999999993 1' 10-max Seat #1 is the button +Seat 1: Player7 (1730 in chips) +Seat 3: Player3 (2569 in chips) +Seat 4: Player4 (1690 in chips) +Seat 6: Player2 (1220 in chips) +Seat 8: Player0 (6951 in chips) +Seat 10: Player8 (840 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player3: posts small blind 150 +Player4: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [4d Ac] +Player2: folds +Player0: raises 600 to 900 +Player8: folds +Player7: folds +Player3: folds +Player4: folds +Uncalled bet (600) returned to Player0 +Player0 collected 930 from pot +Player0: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 (button) folded before Flop (didn't bet) +Seat 3: Player3 (small blind) folded before Flop +Seat 4: Player4 (big blind) folded before Flop +Seat 6: Player2 folded before Flop (didn't bet) +Seat 8: Player0 collected (930) +Seat 10: Player8 folded before Flop (didn't bet) + + + +PokerStars Game #27455183722: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:58:56 WET [2010/06/05 13:58:56 ET] +Table '999999993 1' 10-max Seat #3 is the button +Seat 1: Player7 (1700 in chips) +Seat 3: Player3 (2389 in chips) +Seat 4: Player4 (1360 in chips) +Seat 6: Player2 (1190 in chips) +Seat 8: Player0 (7551 in chips) +Seat 10: Player8 (810 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player4: posts small blind 150 +Player2: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [9d 6s] +Player0: folds +Player8: raises 450 to 750 +Player7: folds +Player3: folds +Player4: folds +Player2: folds +Uncalled bet (450) returned to Player8 +Player8 collected 930 from pot +Player8: doesn't show hand +*** SUMMARY *** +Total pot 930 | Rake 0 +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 (button) folded before Flop (didn't bet) +Seat 4: Player4 (small blind) folded before Flop +Seat 6: Player2 (big blind) folded before Flop +Seat 8: Player0 folded before Flop (didn't bet) +Seat 10: Player8 collected (930) + + + +PokerStars Game #12858227913: Tournament #999999999, $20.00+$0.80 USD Hold'em No Limit - Level VIII (150/300) - 2010/06/05 18:59:15 WET [2010/06/05 13:59:15 ET] +Table '999999993 1' 10-max Seat #4 is the button +Seat 1: Player7 (1670 in chips) +Seat 3: Player3 (2359 in chips) +Seat 4: Player4 (1180 in chips) +Seat 6: Player2 (860 in chips) +Seat 8: Player0 (7521 in chips) +Seat 10: Player8 (1410 in chips) +Player7: posts the ante 30 +Player3: posts the ante 30 +Player4: posts the ante 30 +Player2: posts the ante 30 +Player0: posts the ante 30 +Player8: posts the ante 30 +Player2: posts small blind 150 +Player0: posts big blind 300 +*** HOLE CARDS *** +Dealt to Player0 [Kd 7c] +Player8: folds +Player7: folds +Player3: folds +Player4: folds +Player2: raises 530 to 830 and is all-in +Player0: calls 530 +*** FLOP *** [7s Kc 3s] +*** TURN *** [7s Kc 3s] [9c] +*** RIVER *** [7s Kc 3s 9c] [6s] +*** SHOW DOWN *** +Player2: shows [Ah 6c] (a pair of Sixes) +Player0: shows [Kd 7c] (two pair, Kings and Sevens) +Player0 collected 1840 from pot +Player2 finished the tournament in 6th place +Player7 finished the tournament in 1st place and received $40.00. +Player3 finished the tournament in 1st place and received $40.00. +Player4 finished the tournament in 1st place and received $40.00. +Player0 finished the tournament in 1st place and received $40.00. +Player8 finished the tournament in 1st place and received $40.00. +*** SUMMARY *** +Total pot 1840 | Rake 0 +Board [7s Kc 3s 9c 6s] +Seat 1: Player7 folded before Flop (didn't bet) +Seat 3: Player3 folded before Flop (didn't bet) +Seat 4: Player4 (button) folded before Flop (didn't bet) +Seat 6: Player2 (small blind) showed [Ah 6c] and lost with a pair of Sixes +Seat 8: Player0 (big blind) showed [Kd 7c] and won (1840) with two pair, Kings and Sevens +Seat 10: Player8 folded before Flop (didn't bet) + + + From 4d4dafee8f0f1f0e70b46f18454a59a7b6a919cf Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Wed, 9 Jun 2010 20:28:15 +0200 Subject: [PATCH 067/253] Added aggression factor, aggression freq and Overall Cont. bet. At the moment the agrression based equations are not correct yet due to missing stat info... Missing stat code is mentioned in comment. using saw_x as an indication.... --- pyfpdb/Stats.py | 84 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index fc2e4ea8..be7e0485 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -503,6 +503,90 @@ 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_saw = stat_dict[player]['saw_2'] + stat_dict[player]['saw_3'] + stat_dict[player]['saw_4'] + """ Number of post flop folds this info is not yet in the database """ + post_fold = stat_dict[player]['f_freq_2'] + stat_dict[player]['f_freq_3'] + stat_dict[player]['f_freq_4'] + + stat = float (bet_raise) / float(post_saw + post_fold) + + return (stat, + '%3.1f' % (100*stat) + '%', + 'afr=%3.1f' % (100*stat) + '%', + 'agg_fr=%3.1f' % (100*stat) + '%', + '(%d/%d)' % (bet_raise, (post_saw + post_fold)), + '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) """ + """ Times called post flop is not availlable, streets seen used """ + stat = 0.0 + try: + bet_raise = stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] + stat_dict[player]['aggr_4'] + post_saw = stat_dict[player]['saw_2'] + stat_dict[player]['saw_3'] + stat_dict[player]['saw_4'] + + stat = float (bet_raise) / float(post_saw-bet_raise) + + return (stat, + '%2.1f' % (stat) , + 'afa=%2.1f' % (stat) , + 'agg_fa=%2.1f' % (stat) , + '(%d/%d)' % (bet_raise, post_saw-bet_raise), + 'Aggression Factor' + ) + except: + return (stat, + '%2.1f' % (0) , + 'afa=%2.1f' % (0) , + 'agg_fa=%2.1f' % (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.""" From db6f7989a98f474beafd002651c9e6ae74e12efe Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Thu, 10 Jun 2010 21:00:30 +0200 Subject: [PATCH 068/253] Street(x)Bet street(x)Calls were stored in (db.)handplayers. They were not yet available in (db.)hudchache. Using the Bets and Call, together with stree(x)Agression the aggression frequency and aggression factor can be calculated. --- pyfpdb/Database.py | 25 +++++++--- pyfpdb/DerivedStats.py | 1 + pyfpdb/SQL.py | 108 +++++++++++++++++++++++++++++++++++++++-- pyfpdb/Stats.py | 12 ++--- 4 files changed, 130 insertions(+), 16 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 01b78fe5..8ee07889 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1662,7 +1662,7 @@ class Database: #print "DEBUG: %s %s %s" %(hid, pids, pdata) inserts = [] for p in pdata: - line = [0]*61 + line = [0]*71 line[0] = 1 # HDs if pdata[p]['street0VPI']: line[1] = 1 @@ -1719,13 +1719,24 @@ 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 + + line[65] = gid # gametypeId + line[66] = pids[p] # playerId + line[67] = 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[68] = pos[pdata[p]['position']] + line[69] = pdata[p]['tourneyTypeId'] + line[70] = styleKey # styleKey inserts.append(line) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index b222fc01..d730c232 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -62,6 +62,7 @@ class DerivedStats(): for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 self.handsplayers[player[1]]['street%dBets' % i] = 0 + self.handsplayers[player[1]]['street%dRaises' % i] = 0 for i in range(1,5): self.handsplayers[player[1]]['street%dCBChance' %i] = False self.handsplayers[player[1]]['street%dCBDone' %i] = False diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index ad8ea025..bc337b9c 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1337,6 +1337,16 @@ 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 FROM Hands h INNER JOIN HandsPlayers hp ON (hp.handId = h.id) INNER JOIN HudCache hc ON ( hc.PlayerId = hp.PlayerId+0 @@ -1420,7 +1430,17 @@ 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 FROM Hands h INNER JOIN HandsPlayers hp ON (hp.handId = h.id) INNER JOIN HudCache hc ON (hc.playerId = hp.playerId) @@ -2759,6 +2779,16 @@ class Sql: ,street3CheckCallRaiseDone ,street4CheckCallRaiseChance ,street4CheckCallRaiseDone + ,street0Calls + ,street1Calls + ,street2Calls + ,street3Calls + ,street4Calls + ,street0Bets + ,street1Bets + ,street2Bets + ,street3Bets + ,street4Bets ) SELECT h.gametypeId ,hp.playerId @@ -2834,6 +2864,16 @@ 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) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) @@ -2908,6 +2948,16 @@ class Sql: ,street3CheckCallRaiseDone ,street4CheckCallRaiseChance ,street4CheckCallRaiseDone + ,street0Calls + ,street1Calls + ,street2Calls + ,street3Calls + ,street4Calls + ,street0Bets + ,street1Bets + ,street2Bets + ,street3Bets + ,street4Bets ) SELECT h.gametypeId ,hp.playerId @@ -2983,6 +3033,16 @@ 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)) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) @@ -3057,6 +3117,16 @@ class Sql: ,street3CheckCallRaiseDone ,street4CheckCallRaiseChance ,street4CheckCallRaiseDone + ,street0Calls + ,street1Calls + ,street2Calls + ,street3Calls + ,street4Calls + ,street0Bets + ,street1Bets + ,street2Bets + ,street3Bets + ,street4Bets ) SELECT h.gametypeId ,hp.playerId @@ -3132,6 +3202,16 @@ 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)) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) @@ -3205,7 +3285,17 @@ class Sql: street3CheckCallRaiseChance, street3CheckCallRaiseDone, street4CheckCallRaiseChance, - street4CheckCallRaiseDone) + street4CheckCallRaiseDone, + street0Calls, + street1Calls, + street2Calls, + street3Calls, + street4Calls, + street0Bets, + street1Bets, + street2Bets, + street3Bets, + street4Bets) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, @@ -3218,6 +3308,8 @@ 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)""" self.query['update_hudcache'] = """ @@ -3276,7 +3368,17 @@ 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 WHERE gametypeId+0=%s AND playerId=%s AND activeSeats=%s diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index be7e0485..616bdae4 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -512,17 +512,17 @@ def agg_freq(stat_dict, player): """ 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_saw = stat_dict[player]['saw_2'] + stat_dict[player]['saw_3'] + stat_dict[player]['saw_4'] + post_call = 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_2'] + stat_dict[player]['f_freq_3'] + stat_dict[player]['f_freq_4'] - stat = float (bet_raise) / float(post_saw + post_fold) + 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_saw + post_fold)), + '(%d/%d)' % (bet_raise, (post_call + post_fold + bet_raise)), 'Aggression Freq' ) except: @@ -541,15 +541,15 @@ def agg_fact(stat_dict, player): stat = 0.0 try: bet_raise = stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] + stat_dict[player]['aggr_4'] - post_saw = stat_dict[player]['saw_2'] + stat_dict[player]['saw_3'] + stat_dict[player]['saw_4'] + post_call = stat_dict[player]['call_2'] + stat_dict[player]['call_3'] + stat_dict[player]['call_4'] - stat = float (bet_raise) / float(post_saw-bet_raise) + stat = float (bet_raise) / float(post_call) return (stat, '%2.1f' % (stat) , 'afa=%2.1f' % (stat) , 'agg_fa=%2.1f' % (stat) , - '(%d/%d)' % (bet_raise, post_saw-bet_raise), + '(%d/%d)' % (bet_raise, post_call), 'Aggression Factor' ) except: From d9f6967c1c1122949efd276f10c04bd51c4cb3bb Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Fri, 11 Jun 2010 20:33:08 +0200 Subject: [PATCH 069/253] Street(x)Bet and street(x)Call and Street(x)Raises Now updates in hud chache also --- pyfpdb/Database.py | 26 +++++++++---- pyfpdb/SQL.py | 92 +++++++++++++++++++++++++++++++++++++++++----- pyfpdb/Stats.py | 16 ++++---- 3 files changed, 108 insertions(+), 26 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 8ee07889..37a1daf1 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1633,7 +1633,12 @@ class Database: pdata[p]['street3CheckCallRaiseChance'], pdata[p]['street3CheckCallRaiseDone'], pdata[p]['street4CheckCallRaiseChance'], - pdata[p]['street4CheckCallRaiseDone'] + pdata[p]['street4CheckCallRaiseDone'], + pdata[p]['street0Raises'], + pdata[p]['street1Raises'], + pdata[p]['street2Raises'], + pdata[p]['street3Raises'], + pdata[p]['street4Raises'] ) ) q = self.sql.query['store_hands_players'] @@ -1662,7 +1667,7 @@ class Database: #print "DEBUG: %s %s %s" %(hid, pids, pdata) inserts = [] for p in pdata: - line = [0]*71 + line = [0]*76 line[0] = 1 # HDs if pdata[p]['street0VPI']: line[1] = 1 @@ -1729,14 +1734,19 @@ class Database: 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[65] = gid # gametypeId - line[66] = pids[p] # playerId - line[67] = len(pids) # activeSeats + 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[68] = pos[pdata[p]['position']] - line[69] = pdata[p]['tourneyTypeId'] - line[70] = styleKey # styleKey + line[73] = pos[pdata[p]['position']] + line[74] = pdata[p]['tourneyTypeId'] + line[75] = styleKey # styleKey inserts.append(line) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index bc337b9c..d54ba9db 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1346,7 +1346,12 @@ class Sql: 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.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 @@ -1440,7 +1445,12 @@ class Sql: 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.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) @@ -1551,7 +1561,22 @@ class Sql: cast(hp2.street3CheckCallRaiseChance as integer) AS ccr_opp_3, cast(hp2.street3CheckCallRaiseDone as integer) AS ccr_3, cast(hp2.street4CheckCallRaiseChance as integer) AS ccr_opp_4, - cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4 + cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4, + cast(hp2.street0Calls as integer) AS call_0, + cast(hp2.street1Calls as integer) AS call_1, + cast(hp2.street2Calls as integer) AS call_2, + cast(hp2.street3Calls as integer) AS call_3, + cast(hp2.street4Calls as integer) AS call_4, + cast(hp2.street0Bets as integer) AS bet_0, + cast(hp2.street1Bets as integer) AS bet_1, + cast(hp2.street2Bets as integer) AS bet_2, + cast(hp2.street3Bets as integer) AS bet_3, + cast(hp2.street4Bets as integer) AS bet_4, + cast(hp2.street0Raises as integer) AS raise_0, + cast(hp2.street1Raises as integer) AS raise_1, + cast(hp2.street2Raises as integer) AS raise_2, + cast(hp2.street3Raises as integer) AS raise_3, + cast(hp2.street4Raises as integer) AS raise_4 FROM Hands h INNER JOIN Hands h2 ON (h2.id > %s AND h2.tableName = h.tableName) @@ -1638,8 +1663,23 @@ class Sql: cast(hp2.street3CheckCallRaiseChance as integer) AS ccr_opp_3, cast(hp2.street3CheckCallRaiseDone as integer) AS ccr_3, cast(hp2.street4CheckCallRaiseChance as integer) AS ccr_opp_4, - cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4 - FROM Hands h /* this hand */ + cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4, + cast(hp2.street0Calls as integer) AS call_0, + cast(hp2.street1Calls as integer) AS call_1, + cast(hp2.street2Calls as integer) AS call_2, + cast(hp2.street3Calls as integer) AS call_3, + cast(hp2.street4Calls as integer) AS call_4, + cast(hp2.street0Bets as integer) AS bet_0, + cast(hp2.street1Bets as integer) AS bet_1, + cast(hp2.street2Bets as integer) AS bet_2, + cast(hp2.street3Bets as integer) AS bet_3, + cast(hp2.street4Bets as integer) AS bet_4, + cast(hp2.street0Raises as integer) AS raise_0, + cast(hp2.street1Raises as integer) AS raise_1, + cast(hp2.street2Raises as integer) AS raise_2, + cast(hp2.street3Raises as integer) AS raise_3, + cast(hp2.street4Raises as integer) AS raise_4 + FROM Hands h /* this hand */ INNER JOIN Hands h2 ON ( h2.id > %s /* other hands */ AND h2.tableName = h.tableName) INNER JOIN HandsPlayers hp ON (h.id = hp.handId) /* players in this hand */ @@ -1726,8 +1766,23 @@ class Sql: cast(hp2.street3CheckCallRaiseChance as integer) AS ccr_opp_3, cast(hp2.street3CheckCallRaiseDone as integer) AS ccr_3, cast(hp2.street4CheckCallRaiseChance as integer) AS ccr_opp_4, - cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4 - FROM Hands h /* this hand */ + cast(hp2.street4CheckCallRaiseDone as integer) AS ccr_4, + cast(hp2.street0Calls as integer) AS call_0, + cast(hp2.street1Calls as integer) AS call_1, + cast(hp2.street2Calls as integer) AS call_2, + cast(hp2.street3Calls as integer) AS call_3, + cast(hp2.street4Calls as integer) AS call_4, + cast(hp2.street0Bets as integer) AS bet_0, + cast(hp2.street1Bets as integer) AS bet_1, + cast(hp2.street2Bets as integer) AS bet_2, + cast(hp2.street3Bets as integer) AS bet_3, + cast(hp2.street4Bets as integer) AS bet_4, + cast(hp2.street0Raises as integer) AS raise_0, + cast(hp2.street1Raises as integer) AS raise_1, + cast(hp2.street2Raises as integer) AS raise_2, + cast(hp2.street3Raises as integer) AS raise_3, + cast(hp2.street4Raises as integer) AS raise_4 + FROM Hands h /* this hand */ INNER JOIN Hands h2 ON ( h2.id > %s /* other hands */ AND h2.tableName = h.tableName) INNER JOIN HandsPlayers hp ON (h.id = hp.handId) /* players in this hand */ @@ -3295,7 +3350,12 @@ class Sql: street1Bets, street2Bets, street3Bets, - street4Bets) + street4Bets, + street0Raises, + street1Raises, + street2Raises, + street3Raises, + street4Raises) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, @@ -3310,6 +3370,7 @@ class Sql: %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'] = """ @@ -3378,7 +3439,12 @@ class Sql: street1Bets=street1Bets+%s, street2Bets=street2Bets+%s, street3Bets=street3Bets+%s, - street4Bets=street4Bets+%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 @@ -3704,7 +3770,12 @@ class Sql: street3CheckCallRaiseChance, street3CheckCallRaiseDone, street4CheckCallRaiseChance, - street4CheckCallRaiseDone + street4CheckCallRaiseDone, + street0Raises, + street1Raises, + street2Raises, + street3Raises, + street4Raises ) VALUES ( %s, %s, %s, %s, %s, @@ -3722,6 +3793,7 @@ class Sql: %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, + %s, %s, %s, %s, %s, %s, %s, %s, %s, %s )""" diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 616bdae4..1d4a46fd 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -540,23 +540,23 @@ def agg_fact(stat_dict, player): """ Times called post flop is not availlable, streets seen used """ stat = 0.0 try: - bet_raise = stat_dict[player]['aggr_2'] + stat_dict[player]['aggr_3'] + stat_dict[player]['aggr_4'] - post_call = stat_dict[player]['call_2'] + stat_dict[player]['call_3'] + stat_dict[player]['call_4'] + 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'] stat = float (bet_raise) / float(post_call) return (stat, - '%2.1f' % (stat) , - 'afa=%2.1f' % (stat) , - 'agg_fa=%2.1f' % (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.1f' % (0) , - 'afa=%2.1f' % (0) , - 'agg_fa=%2.1f' % (0), + '%2.2f' % (0) , + 'afa=%2.2f' % (0) , + 'agg_fa=%2.2f' % (0), '(%d/%d)' % (0, 0), 'Aggression Factor' ) From 1c238e411996ff053e74a87bd9716a531ccc348c Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Fri, 11 Jun 2010 20:35:34 +0200 Subject: [PATCH 070/253] Code change must be reviewed! The Handplayers and Hands both have a street(x)Raises index added to the query result. I'm not sure this solution works. --- pyfpdb/SQL.py | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index d54ba9db..94d7a21e 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -819,7 +819,6 @@ class Sql: street2Raises INT, street3Raises INT, street4Raises INT, - actionString REAL) """ @@ -2844,6 +2843,11 @@ class Sql: ,street2Bets ,street3Bets ,street4Bets + ,street0Raises + ,street1Raises + ,street2Raises + ,street3Raises + ,street4Raises ) SELECT h.gametypeId ,hp.playerId @@ -2929,6 +2933,11 @@ class Sql: ,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) @@ -3013,6 +3022,11 @@ class Sql: ,street2Bets ,street3Bets ,street4Bets + ,street0Raises + ,street1Raises + ,street2Raises + ,street3Raises + ,street4Raises ) SELECT h.gametypeId ,hp.playerId @@ -3098,6 +3112,11 @@ class Sql: ,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) @@ -3182,6 +3201,11 @@ class Sql: ,street2Bets ,street3Bets ,street4Bets + ,street0Raises + ,street1Raises + ,street2Raises + ,street3Raises + ,street4Raises ) SELECT h.gametypeId ,hp.playerId @@ -3267,6 +3291,11 @@ class Sql: ,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) From 1279c8d67ea86d45da1982498f1f9b0c526a3213 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Sun, 13 Jun 2010 12:16:26 +0200 Subject: [PATCH 071/253] When div by 0, still display usefull info --- pyfpdb/Stats.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 1d4a46fd..654d1652 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -543,8 +543,10 @@ def agg_fact(stat_dict, player): 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'] - stat = float (bet_raise) / float(post_call) - + if post_call > 0: + stat = float (bet_raise) / float(post_call) + else: + stat = bet_raise return (stat, '%2.2f' % (stat) , 'afa=%2.2f' % (stat) , From 16dc98b1b79f1b1fdffd3a69a3a296b5cdadbf54 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Wed, 16 Jun 2010 17:21:49 +0200 Subject: [PATCH 072/253] Aggression freq, aggression factor and Overall CBET added in default pop-up overlay --- pyfpdb/HUD_config.test.xml | 3 +++ pyfpdb/HUD_config.xml.example | 3 +++ 2 files changed, 6 insertions(+) diff --git a/pyfpdb/HUD_config.test.xml b/pyfpdb/HUD_config.test.xml index 1a5f77fa..a70d2b67 100644 --- a/pyfpdb/HUD_config.test.xml +++ b/pyfpdb/HUD_config.test.xml @@ -508,6 +508,9 @@ Left-Drag to Move" + + + diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index af1d9395..8966eb78 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -570,6 +570,9 @@ Left-Drag to Move" + + + From 00dd86ee19cf464c4cf4ea714f8e2efdd3f23734 Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 17 Jun 2010 12:57:31 +0800 Subject: [PATCH 073/253] Fix sessionStats query to exclude tourney hands. --- pyfpdb/SQL.py | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index ad8ea025..24dee18e 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -2632,25 +2632,6 @@ class Sql: GROUP BY h.handStart, hp.handId, hp.sawShowdown, hp.totalProfit ORDER BY h.handStart""" - #################################### - # Session stats query - #################################### - if db_server == 'mysql': - self.query['sessionStats'] = """ - SELECT UNIX_TIMESTAMP(h.handStart) as time, hp.handId, hp.startCash, hp.winnings, hp.totalProfit - FROM HandsPlayers hp - INNER JOIN Players pl ON (pl.id = hp.playerId) - INNER JOIN Hands h ON (h.id = hp.handId) - INNER JOIN Gametypes gt ON (gt.id = h.gametypeId) - WHERE pl.id in - AND pl.siteId in - AND h.handStart > '' - AND h.handStart < '' - - AND hp.tourneysPlayersId IS NULL - GROUP BY h.handStart, hp.handId, hp.totalProfit - ORDER BY h.handStart""" - #################################### # Session stats query #################################### @@ -2664,6 +2645,7 @@ class Sql: INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in AND date_format(h.handStart, '%Y-%m-%d') + AND hp.tourneysPlayersId IS NULL ORDER by time""" elif db_server == 'postgresql': self.query['sessionStats'] = """ @@ -2675,6 +2657,7 @@ class Sql: INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in AND h.handStart + AND hp.tourneysPlayersId IS NULL ORDER by time""" elif db_server == 'sqlite': self.query['sessionStats'] = """ @@ -2686,6 +2669,7 @@ class Sql: INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in AND h.handStart + AND hp.tourneysPlayersId IS NULL ORDER by time""" From 6189a67b1e091eb1b8487498e56b68dddc5cf2dd Mon Sep 17 00:00:00 2001 From: gimick Date: Thu, 17 Jun 2010 23:35:38 +0100 Subject: [PATCH 074/253] stop HUD_main window being closed. Temp fix to prevent lockup in .exe builds --- pyfpdb/HUD_main.pyw | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index 92f888d8..c31c87d1 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -98,7 +98,11 @@ class HUD_main(object): self.main_window = gtk.Window() self.main_window.connect("destroy", self.destroy) self.vb = gtk.VBox() - self.label = gtk.Label('Closing this window will exit from the HUD.') + #in .exe version, closing HUD_main window causes window lockup + #until next update cycle (i.e. cannot get focus on poker window while locked) + #temporary workaround to disable close button until fix is found + self.main_window.set_deletable(False) + self.label = gtk.Label(' To close, use "Stop Autoimport" in FPDB.') self.vb.add(self.label) self.main_window.add(self.vb) self.main_window.set_title("HUD Main Window") From 057a864794e3ebd1523dc019e0795c1288df635c Mon Sep 17 00:00:00 2001 From: Worros Date: Sat, 19 Jun 2010 08:42:49 +0800 Subject: [PATCH 075/253] Stars: Add 0.20/0.40 limit --- pyfpdb/PokerStarsToFpdb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 17a9b15c..89071ae7 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -145,6 +145,7 @@ class PokerStars(HandHistoryConverter): mg = m.groupdict() # translations from captured groups to fpdb info strings Lim_Blinds = { '0.04': ('0.01', '0.02'), '0.10': ('0.02', '0.05'), '0.20': ('0.05', '0.10'), + '0.80': ('0.20', '0.40'), '0.50': ('0.10', '0.25'), '1.00': ('0.25', '0.50'), '2.00': ('0.50', '1.00'), '2': ('0.50', '1.00'), '4': ('1.00', '2.00'), '6': ('1.00', '3.00'), '4.00': ('1.00', '2.00'), '6.00': ('1.00', '3.00'), '10.00': ('2.00', '5.00'), From f94fa0c6854259e4a2aef210a7a54d72f1d85346 Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Sun, 20 Jun 2010 09:58:34 +0200 Subject: [PATCH 076/253] Added aggression information in guiplayerstats --- pyfpdb/GuiPlayerStats.py | 5 ++++- pyfpdb/SQL.py | 37 +++++++++++++++++++++++++++++++++++++ pyfpdb/Stats.py | 7 +++---- 3 files changed, 44 insertions(+), 5 deletions(-) diff --git a/pyfpdb/GuiPlayerStats.py b/pyfpdb/GuiPlayerStats.py index 41e82ed8..5a1acc4d 100644 --- a/pyfpdb/GuiPlayerStats.py +++ b/pyfpdb/GuiPlayerStats.py @@ -93,10 +93,13 @@ class GuiPlayerStats (threading.Thread): , ["plposition", False, "Posn", 1.0, "%s", "str"] # true not allowed for this line (set in code) , ["pname", False, "Name", 0.0, "%s", "str"] # true not allowed for this line (set in code) , ["n", True, "Hds", 1.0, "%1.0f", "str"] - , ["avgseats", False, "Seats", 1.0, "%3.1f", "str"] + , ["avgseats", False, "Seats", 1.0, "%3.1f", "str"] , ["vpip", True, "VPIP", 1.0, "%3.1f", "str"] , ["pfr", True, "PFR", 1.0, "%3.1f", "str"] , ["pf3", True, "PF3", 1.0, "%3.1f", "str"] + , ["aggfac", True, "AggFac", 1.0, "%2.2f", "str"] + , ["aggfrq", True, "AggFreq", 1.0, "%3.1f", "str"] + , ["conbet", True, "ContBet", 1.0, "%3.1f", "str"] , ["steals", True, "Steals", 1.0, "%3.1f", "str"] , ["saw_f", True, "Saw_F", 1.0, "%3.1f", "str"] , ["sawsd", True, "SawSD", 1.0, "%3.1f", "str"] diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index de60105b..940a58ff 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1987,6 +1987,18 @@ class Sql: else 100.0*(sum(cast(hp.street1Aggr as integer))+sum(cast(hp.street2Aggr as integer))+sum(cast(hp.street3Aggr as integer))) /(sum(cast(hp.street1Seen as integer))+sum(cast(hp.street2Seen as integer))+sum(cast(hp.street3Seen as integer))) end AS pofafq + ,case when sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer)) = 0 then -999 + else (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + /(sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + end AS aggfac + ,100.0*(sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + / ((sum(cast(hp.foldToOtherRaisedStreet1 as integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as integer))) + + (sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + + (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) ) + AS aggfrq + ,100.0*(sum(cast(hp.street1CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street4CBDone as integer))) + / (sum(cast(hp.street1CBChance as integer))+ sum(cast(hp.street2CBChance as integer))+ sum(cast(hp.street3CBChance as integer))+ sum(cast(hp.street4CBChance as integer))) + AS conbet ,sum(hp.totalProfit)/100.0 AS net ,sum(hp.rake)/100.0 AS rake ,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100 @@ -2072,6 +2084,18 @@ class Sql: else 100.0*(sum(cast(hp.street1Aggr as integer))+sum(cast(hp.street2Aggr as integer))+sum(cast(hp.street3Aggr as integer))) /(sum(cast(hp.street1Seen as integer))+sum(cast(hp.street2Seen as integer))+sum(cast(hp.street3Seen as integer))) end AS pofafq + ,case when sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer)) = 0 then -999 + else (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + /(sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + end AS aggfac + ,100.0*(sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + / ((sum(cast(hp.foldToOtherRaisedStreet1 as integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as integer))) + + (sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + + (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) ) + AS aggfrq + ,100.0*(sum(cast(hp.street1CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street4CBDone as integer))) + / (sum(cast(hp.street1CBChance as integer))+ sum(cast(hp.street2CBChance as integer))+ sum(cast(hp.street3CBChance as integer))+ sum(cast(hp.street4CBChance as integer))) + AS conbet ,sum(hp.totalProfit)/100.0 AS net ,sum(hp.rake)/100.0 AS rake ,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100 @@ -2158,6 +2182,18 @@ class Sql: else 100.0*(sum(cast(hp.street1Aggr as integer))+sum(cast(hp.street2Aggr as integer))+sum(cast(hp.street3Aggr as integer))) /(sum(cast(hp.street1Seen as integer))+sum(cast(hp.street2Seen as integer))+sum(cast(hp.street3Seen as integer))) end AS pofafq + ,case when sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer)) = 0 then -999 + else (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + /(sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + end AS aggfac + ,100.0*(sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) + / ((sum(cast(hp.foldToOtherRaisedStreet1 as integer))+ sum(cast(hp.foldToOtherRaisedStreet2 as integer))+ sum(cast(hp.foldToOtherRaisedStreet3 as integer))+ sum(cast(hp.foldToOtherRaisedStreet4 as integer))) + + (sum(cast(hp.street1Calls as integer))+ sum(cast(hp.street2Calls as integer))+ sum(cast(hp.street3Calls as integer))+ sum(cast(hp.street4Calls as integer))) + + (sum(cast(hp.street1Aggr as integer)) + sum(cast(hp.street2Aggr as integer)) + sum(cast(hp.street3Aggr as integer)) + sum(cast(hp.street4Aggr as integer))) ) + AS aggfrq + ,100.0*(sum(cast(hp.street1CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street2CBDone as integer)) + sum(cast(hp.street4CBDone as integer))) + / (sum(cast(hp.street1CBChance as integer))+ sum(cast(hp.street2CBChance as integer))+ sum(cast(hp.street3CBChance as integer))+ sum(cast(hp.street4CBChance as integer))) + AS conbet ,sum(hp.totalProfit)/100.0 AS net ,sum(hp.rake)/100.0 AS rake ,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100 @@ -2706,6 +2742,7 @@ class Sql: GROUP BY h.handStart, hp.handId, hp.sawShowdown, hp.totalProfit ORDER BY h.handStart""" + #################################### # Session stats query #################################### diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 654d1652..0f3e726b 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -512,9 +512,9 @@ def agg_freq(stat_dict, player): """ 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_2'] + stat_dict[player]['call_3'] + stat_dict[player]['call_4'] + 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_2'] + stat_dict[player]['f_freq_3'] + stat_dict[player]['f_freq_4'] + 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) @@ -537,7 +537,6 @@ def agg_freq(stat_dict, player): def agg_fact(stat_dict, player): """ Post-Flop aggression frequency.""" """ Aggression factor = (times bet or raised post-flop) / (times called post-flop) """ - """ Times called post flop is not availlable, streets seen used """ 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'] @@ -546,7 +545,7 @@ def agg_fact(stat_dict, player): if post_call > 0: stat = float (bet_raise) / float(post_call) else: - stat = bet_raise + stat = float (bet_raise) return (stat, '%2.2f' % (stat) , 'afa=%2.2f' % (stat) , From 4d429531356fc810e307df6a2bfbdb5172908f53 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 20 Jun 2010 13:52:44 +0200 Subject: [PATCH 077/253] make rename and executes work in linux --- pyfpdb/fpdb.py | 5 ++++- pyfpdb/fpdb.pyw | 6 +++++- run_fpdb.py | 5 ++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 191f1d15..7ac8dfec 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -25,5 +25,8 @@ import sys sys.stdout.write('fpdb.py has been renamed to fpdb.pyw - now calling fpdb.pyw ...\n\n') sys.stdout.flush() -os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) +if os.name=='nt': + os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) +else: + os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 58a1b230..7b1d6cd0 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- #Copyright 2008 Steffen Jobbagy-Felso #This program is free software: you can redistribute it and/or modify @@ -35,7 +36,10 @@ if os.name == 'nt' and sys.version[0:3] not in ('2.5', '2.6') and '-r' not in sy os.environ['PATH'] = tmppath print "Python " + sys.version[0:3] + ' - press return to continue\n' sys.stdin.readline() - os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) + if os.name=='nt': + os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) + else: + os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) else: print "\npython 2.5 not found, please install python 2.5 or 2.6 for fpdb\n" raw_input("Press ENTER to continue.") diff --git a/run_fpdb.py b/run_fpdb.py index 82cbb9b5..dd031403 100755 --- a/run_fpdb.py +++ b/run_fpdb.py @@ -27,5 +27,8 @@ os.chdir(sys.path[0]) #print "sys.path[0] =", sys.path[0], "cwd =", os.getcwd() -os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ) +if os.name=='nt': + os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) +else: + os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ) # first arg is ignored (name of program being run) From de2d810ac5778a795dfa9e5ce675f00ca47f9307 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 20 Jun 2010 17:34:58 +0200 Subject: [PATCH 078/253] moved currency field from Sites to Gametypes&TourneyTypes, addded Sites.code --- pyfpdb/AlchemyMappings.py | 30 ++++++++++++++++-------------- pyfpdb/AlchemyTables.py | 4 +++- pyfpdb/Database.py | 25 +++++++++++++------------ pyfpdb/SQL.py | 13 ++++++++++--- 4 files changed, 42 insertions(+), 30 deletions(-) diff --git a/pyfpdb/AlchemyMappings.py b/pyfpdb/AlchemyMappings.py index c2e088a9..7b9c20a3 100644 --- a/pyfpdb/AlchemyMappings.py +++ b/pyfpdb/AlchemyMappings.py @@ -34,8 +34,8 @@ class Gametype(MappedBase): @staticmethod def get_or_create(session, siteId, gametype): map = zip( - ['type', 'base', 'category', 'limitType', 'smallBlind', 'bigBlind', 'smallBet', 'bigBet'], - ['type', 'base', 'category', 'limitType', 'sb', 'bb', 'dummy', 'dummy', ]) + ['type', 'base', 'category', 'limitType', 'smallBlind', 'bigBlind', 'smallBet', 'bigBet', 'currency'], + ['type', 'base', 'category', 'limitType', 'sb', 'bb', 'dummy', 'dummy', 'currency']) gametype = dict([(new, gametype.get(old)) for new, old in map ]) hilo = "h" @@ -340,18 +340,20 @@ class HandPlayer(MappedBase): class Site(object): """Class reflecting Players db table""" INITIAL_DATA = [ - (1 , 'Full Tilt Poker','USD'), - (2 , 'PokerStars', 'USD'), - (3 , 'Everleaf', 'USD'), - (4 , 'Win2day', 'USD'), - (5 , 'OnGame', 'USD'), - (6 , 'UltimateBet', 'USD'), - (7 , 'Betfair', 'USD'), - (8 , 'Absolute', 'USD'), - (9 , 'PartyPoker', 'USD'), - (10, 'Partouche', 'EUR'), + (1 , 'Full Tilt Poker','FT'), + (2 , 'PokerStars', 'PS'), + (3 , 'Everleaf', 'EV'), + (4 , 'Win2day', 'W2'), + (5 , 'OnGame', 'OG'), + (6 , 'UltimateBet', 'UB'), + (7 , 'Betfair', 'BF'), + (8 , 'Absolute', 'AB'), + (9 , 'PartyPoker', 'PP'), + (10, 'Partouche', 'PA'), + (11, 'Carbon', 'CA'), + (12, 'PKR', 'PK'), ] - INITIAL_DATA_KEYS = ('id', 'name', 'currency') + INITIAL_DATA_KEYS = ('id', 'name', 'code') INITIAL_DATA_DICTS = [ dict(zip(INITIAL_DATA_KEYS, datum)) for datum in INITIAL_DATA ] @@ -380,7 +382,7 @@ class TourneyType(MappedBase): Required kwargs: buyin fee speed maxSeats knockout - rebuyOrAddon headsUp shootout matrix sng + rebuyOrAddon headsUp shootout matrix sng currency """ return get_or_create(cls, session, **kwargs)[0] diff --git a/pyfpdb/AlchemyTables.py b/pyfpdb/AlchemyTables.py index 3165a480..2b0faa86 100644 --- a/pyfpdb/AlchemyTables.py +++ b/pyfpdb/AlchemyTables.py @@ -29,6 +29,7 @@ autorates_table = Table('Autorates', metadata, gametypes_table = Table('Gametypes', metadata, Column('id', SmallInteger, primary_key=True), Column('siteId', SmallInteger, ForeignKey("Sites.id"), nullable=False), # SMALLINT + Column('currency', String(4), nullable=False), # varchar(4) NOT NULL Column('type', String(4), nullable=False), # char(4) NOT NULL Column('base', String(4), nullable=False), # char(4) NOT NULL Column('category', String(9), nullable=False), # varchar(9) NOT NULL @@ -338,7 +339,7 @@ settings_table = Table('Settings', metadata, sites_table = Table('Sites', metadata, Column('id', SmallInteger, primary_key=True), Column('name', String(32), nullable=False), # varchar(32) NOT NULL - Column('currency', String(3), nullable=False), # char(3) NOT NULL + Column('code', String(2), nullable=False), # char(2) NOT NULL mysql_charset='utf8', mysql_engine='InnoDB', ) @@ -374,6 +375,7 @@ Index('siteTourneyNo', tourneys_table.c.siteTourneyNo, tourneys_table.c.tourneyT tourney_types_table = Table('TourneyTypes', metadata, Column('id', Integer, primary_key=True), Column('siteId', SmallInteger, ForeignKey("Sites.id"), nullable=False), + Column('currency', String(4), nullable=False), # varchar(4) NOT NULL Column('buyin', Integer, nullable=False), # INT NOT NULL Column('fee', Integer, nullable=False, default=0), # INT NOT NULL Column('maxSeats', Boolean, nullable=False, default=-1), # INT NOT NULL DEFAULT -1 diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 01b78fe5..ff3dc4e3 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- """Database.py Create and manage the database objects. @@ -1343,18 +1344,18 @@ class Database: def fillDefaultData(self): c = self.get_cursor() c.execute("INSERT INTO Settings (version) VALUES (%s);" % (DB_VERSION)) - c.execute("INSERT INTO Sites (name,currency) VALUES ('Full Tilt Poker', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('PokerStars', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('Everleaf', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('Win2day', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('OnGame', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('UltimateBet', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('Betfair', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('Absolute', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('PartyPoker', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('Partouche', 'EUR')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('Carbon', 'USD')") - c.execute("INSERT INTO Sites (name,currency) VALUES ('PKR', 'USD')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Full Tilt Poker', 'FT')") + c.execute("INSERT INTO Sites (name,code) VALUES ('PokerStars', 'PS')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Everleaf', 'EV')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Win2day', 'W2')") + c.execute("INSERT INTO Sites (name,code) VALUES ('OnGame', 'OG')") + c.execute("INSERT INTO Sites (name,code) VALUES ('UltimateBet', 'UB')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Betfair', 'BF')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Absolute', 'AB')") + c.execute("INSERT INTO Sites (name,code) VALUES ('PartyPoker', 'PP')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Partouche', 'PA')") + c.execute("INSERT INTO Sites (name,code) VALUES ('Carbon', 'CA')") + c.execute("INSERT INTO Sites (name,code) VALUES ('PKR', 'PK')") if self.backend == self.SQLITE: c.execute("INSERT INTO TourneyTypes (id, siteId, buyin, fee) VALUES (NULL, 1, 0, 0);") elif self.backend == self.PGSQL: diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 24dee18e..2e24b74e 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- """Returns a dict of SQL statements used in fpdb. """ # Copyright 2008-2009, Ray E. Barker @@ -114,18 +115,18 @@ class Sql: self.query['createSitesTable'] = """CREATE TABLE Sites ( id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id), name varchar(32) NOT NULL, - currency char(3) NOT NULL) + code char(2) NOT NULL) ENGINE=INNODB""" elif db_server == 'postgresql': self.query['createSitesTable'] = """CREATE TABLE Sites ( id SERIAL, PRIMARY KEY (id), name varchar(32), - currency char(3))""" + code char(2))""" elif db_server == 'sqlite': self.query['createSitesTable'] = """CREATE TABLE Sites ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, - currency TEXT NOT NULL)""" + code TEXT NOT NULL)""" ################################ @@ -136,6 +137,7 @@ class Sql: self.query['createGametypesTable'] = """CREATE TABLE Gametypes ( id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id), siteId SMALLINT UNSIGNED NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id), + currency varchar(4) NOT NULL, type char(4) NOT NULL, base char(4) NOT NULL, category varchar(9) NOT NULL, @@ -150,6 +152,7 @@ class Sql: self.query['createGametypesTable'] = """CREATE TABLE Gametypes ( id SERIAL, PRIMARY KEY (id), siteId INTEGER, FOREIGN KEY (siteId) REFERENCES Sites(id), + currency varchar(4), type char(4), base char(4), category varchar(9), @@ -163,6 +166,7 @@ class Sql: self.query['createGametypesTable'] = """CREATE TABLE GameTypes ( id INTEGER PRIMARY KEY, siteId INTEGER, + currency TEXT, type TEXT, base TEXT, category TEXT, @@ -358,6 +362,7 @@ class Sql: self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes ( id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id), siteId SMALLINT UNSIGNED NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id), + currency varchar(4) NOT NULL, buyin INT NOT NULL, fee INT NOT NULL, maxSeats INT NOT NULL DEFAULT -1, @@ -374,6 +379,7 @@ class Sql: self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes ( id SERIAL, PRIMARY KEY (id), siteId INT NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id), + currency varchar(4) NOT NULL, buyin INT NOT NULL, fee INT NOT NULL, maxSeats INT NOT NULL DEFAULT -1, @@ -389,6 +395,7 @@ class Sql: self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes ( id INTEGER PRIMARY KEY, siteId INT NOT NULL, + currency TEXT NOT NULL, buyin INT NOT NULL, fee INT NOT NULL, maxSeats INT NOT NULL DEFAULT -1, From 5f240aabb7129398c42a211a3dd70e47bcb156b8 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 20 Jun 2010 18:07:44 +0200 Subject: [PATCH 079/253] readd warning dialogue to restart after recreate after loosing it in merge --- pyfpdb/fpdb.pyw | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 7b1d6cd0..878f2059 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -416,6 +416,14 @@ class fpdb: #else: # for other dbs use same connection as holds global lock # self.fdb_lock.fdb.recreate_tables() + # TODO: figure out why this seems to be necessary + dia_restart = gtk.MessageDialog(parent=None, flags=0, type=gtk.MESSAGE_WARNING, + buttons=(gtk.BUTTONS_OK), message_format="Restart fpdb") + diastring = "You should now restart fpdb." + dia_restart.format_secondary_text(diastring) + + dia_restart.run() + dia_restart.destroy() elif response == gtk.RESPONSE_NO: print 'User cancelled recreating tables' #if not lock_released: From 8e65370027fb7d87039a332ee3d28250178f2786 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 20 Jun 2010 18:09:17 +0200 Subject: [PATCH 080/253] make CLI parameters to run_fpdb.py and fpdb.py work again --- pyfpdb/fpdb.py | 4 ++-- run_fpdb.py | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 7ac8dfec..b518994c 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -26,7 +26,7 @@ sys.stdout.write('fpdb.py has been renamed to fpdb.pyw - now calling fpdb.pyw .. sys.stdout.flush() if os.name=='nt': - os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) + os.execvpe('pythonw.exe', list(('pythonw.exe', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) else: - os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ) + os.execvpe('python', list(('python', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) # first arg is ignored (name of program being run) diff --git a/run_fpdb.py b/run_fpdb.py index dd031403..faafad89 100755 --- a/run_fpdb.py +++ b/run_fpdb.py @@ -16,7 +16,6 @@ #In the "official" distribution you can find the license in #agpl-3.0.txt in the docs folder of the package. - import os import sys @@ -26,9 +25,8 @@ sys.path[0] = sys.path[0]+os.sep+"pyfpdb" os.chdir(sys.path[0]) #print "sys.path[0] =", sys.path[0], "cwd =", os.getcwd() - if os.name=='nt': - os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) + os.execvpe('pythonw.exe', list(('pythonw.exe', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) else: - os.execvpe('python', ('python', 'fpdb.pyw', '-r'), os.environ) + os.execvpe('python', list(('python', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) # first arg is ignored (name of program being run) From d647a3a5ec1b4ed8a2c10c1bb41b66bbb01c82b3 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 12:44:13 +0800 Subject: [PATCH 081/253] Adjust author names on request --- pyfpdb/fpdb.pyw | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 58a1b230..7ac9c4f8 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -226,12 +226,12 @@ class fpdb: dia = gtk.AboutDialog() dia.set_name("Free Poker Database (FPDB)") dia.set_version(VERSION) - dia.set_copyright("2008-2010, Steffen, Eratosthenes, s0rrow, EricBlade, _mt, sqlcoder, Bostik, and others") + dia.set_copyright("2008-2010, Steffen, Eratosthenes, Carl Gherardi, Eric Blade, _mt, sqlcoder, Bostik, and others") dia.set_comments("GTK AboutDialog comments here") dia.set_license("GPL v3") dia.set_website("http://fpdb.sourceforge.net/") - dia.set_authors(['Steffen', 'Eratosthenes', 's0rrow', - 'EricBlade', '_mt', 'sqlcoder', 'Bostik', 'and others']) + dia.set_authors(['Steffen', 'Eratosthenes', 'Carl Gherardi', + 'Eric Blade', '_mt', 'sqlcoder', 'Bostik', 'and others']) dia.set_program_name("Free Poker Database (FPDB)") db_version = "" From 51a51dc8921d7399b55be1be77e8b229f73766d6 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 20 Jun 2010 18:07:44 +0200 Subject: [PATCH 082/253] readd warning dialogue to restart after recreate after loosing it in merge --- pyfpdb/fpdb.pyw | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 7ac9c4f8..19b42501 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -412,6 +412,14 @@ class fpdb: #else: # for other dbs use same connection as holds global lock # self.fdb_lock.fdb.recreate_tables() + # TODO: figure out why this seems to be necessary + dia_restart = gtk.MessageDialog(parent=None, flags=0, type=gtk.MESSAGE_WARNING, + buttons=(gtk.BUTTONS_OK), message_format="Restart fpdb") + diastring = "You should now restart fpdb." + dia_restart.format_secondary_text(diastring) + + dia_restart.run() + dia_restart.destroy() elif response == gtk.RESPONSE_NO: print 'User cancelled recreating tables' #if not lock_released: From 6902bf81505d027d4dd125a5673b5fc45dfe95cf Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 13:12:52 +0800 Subject: [PATCH 083/253] FTP Stud steal examples. Stud steal examples provided by Cardvark on 2+2 --- ...7-StudHL-USD-2-4-201006.Steal.examples.txt | 665 ++++++++++++++++++ 1 file changed, 665 insertions(+) create mode 100644 pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt diff --git a/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt b/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt new file mode 100644 index 00000000..294ba9e3 --- /dev/null +++ b/pyfpdb/regression-test-files/cash/FTP/Stud/7-StudHL-USD-2-4-201006.Steal.examples.txt @@ -0,0 +1,665 @@ +Full Tilt Poker Game #11111111813: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:14:27 ET - 2010/06/10 +Seat 1: Player4 ($7.40) +Seat 2: Player13 ($77.20) +Seat 3: Player1 ($111.80) +Seat 5: Player5 ($118.70) +Seat 7: Player6 ($36.30) +Player1 antes $0.40 +Player4 antes $0.40 +Player13 antes $0.40 +Player5 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player4 [9c] +Dealt to Player13 [8s] +Dealt to Player1 [Ac 9h] [3s] +Dealt to Player5 [3c] +Dealt to Player6 [Qs] +Player5 is low with [3c] +Player5 brings in for $0.50 +Player6 folds +Player4 completes it to $2 +Player14 sits down +Player13 folds +Player1 folds +Player14 adds $152 +Player5 calls $1.50 +*** 4TH STREET *** +Dealt to Player4 [9c] [9d] +Dealt to Player5 [3c] [8d] +Player4 bets $4 +Player5 folds +Uncalled bet of $4 returned to Player4 +Player4 mucks +Player4 wins the pot ($6) +*** SUMMARY *** +Total pot $6 | Rake $0 +Seat 1: Player4 collected ($6), mucked +Seat 2: Player13 folded on 3rd St. +Seat 3: Player1 folded on 3rd St. +Seat 5: Player5 folded on 4th St. +Seat 7: Player6 folded on 3rd St. + + + +Full Tilt Poker Game #11111111538: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:15:56 ET - 2010/06/10 +Seat 1: Player4 ($12.60) +Seat 2: Player13 ($89.90) +Seat 3: Player1 ($110.60) +Seat 5: Player5 ($115.50) +Seat 6: Player14 ($138.70) +Seat 7: Player6 ($35.10) +Player1 antes $0.40 +Player4 antes $0.40 +Player13 antes $0.40 +Player5 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player4 [Qc] +Dealt to Player13 [5s] +Dealt to Player1 [6c 5d] [3d] +Dealt to Player5 [9d] +Dealt to Player14 [8h] +Dealt to Player6 [Ts] +Player1 is low with [3d] +Player1 brings in for $0.50 +Player5 folds +Player14 folds +Player6 completes it to $2 +Player4 folds +Player13 folds +Player1 calls $1.50 +*** 4TH STREET *** +Dealt to Player1 [6c 5d 3d] [7c] +Dealt to Player6 [Ts] [6d] +Player6 bets $2 +Player1 calls $2 +*** 5TH STREET *** +Dealt to Player1 [6c 5d 3d 7c] [Qd] +Dealt to Player6 [Ts 6d] [9s] +Player1 checks +Player6 bets $4 +Player1 folds +Uncalled bet of $4 returned to Player6 +Player6 mucks +Player6 wins the pot ($10.40) +*** SUMMARY *** +Total pot $10.40 | Rake $0 +Seat 1: Player4 folded on 3rd St. +Seat 2: Player13 folded on 3rd St. +Seat 3: Player1 folded on 5th St. +Seat 5: Player5 folded on 3rd St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 collected ($10.40), mucked + + +Full Tilt Poker Game #11111111649: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:17:24 ET - 2010/06/10 +Seat 1: Player4 ($16.30) +Seat 2: Player13 ($88.70) +Seat 3: Player1 ($107.30) +Seat 5: Player5 ($114.30) +Seat 6: Player14 ($135.50) +Seat 7: Player6 ($40.30) +Player1 antes $0.40 +Player4 antes $0.40 +Player13 antes $0.40 +Player5 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player4 [9s] +Dealt to Player13 [9h] +Dealt to Player1 [8h Kd] [6s] +Dealt to Player5 [4c] +Dealt to Player14 [8d] +Dealt to Player6 [6c] +Player5 is low with [4c] +Player10 sits down +Player10 adds $40 +Player5 brings in for $0.50 +Player14 folds +Player6 folds +Player4 folds +Player13 completes it to $2 +Player1 folds +Player5 folds +Uncalled bet of $1.50 returned to Player13 +Player13 mucks +Player13 wins the pot ($3.40) +*** SUMMARY *** +Total pot $3.40 | Rake $0 +Seat 1: Player4 folded on 3rd St. +Seat 2: Player13 collected ($3.40), mucked +Seat 3: Player1 folded on 3rd St. +Seat 5: Player5 folded on 3rd St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. + + + +Full Tilt Poker Game #11111112277: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:17:41 ET - 2010/06/10 +Seat 1: Player4 ($15.90) +Seat 2: Player13 ($91.20) +Seat 3: Player1 ($106.90) +Seat 5: Player5 ($113.40) +Seat 6: Player14 ($135.10) +Seat 7: Player6 ($39.90) +Seat 8: Player10 ($40) +Player1 antes $0.40 +Player4 antes $0.40 +Player13 antes $0.40 +Player5 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +Player10 antes $0.40 +*** 3RD STREET *** +Dealt to Player4 [Qs] +Dealt to Player13 [8s] +Dealt to Player1 [3h 9c] [Ah] +Dealt to Player5 [Qc] +Dealt to Player14 [Kc] +Dealt to Player6 [Jh] +Dealt to Player10 [6d] +Player10 is low with [6d] +Player10 brings in for $0.50 +Player4 folds +Player13 folds +Player1 folds +Player5 completes it to $2 +Player14 raises to $4 +Player6 folds +Player10 calls $3.50 +Player5 calls $2 +*** 4TH STREET *** +Dealt to Player5 [Qc] [3c] +Dealt to Player14 [Kc] [Kh] +Dealt to Player10 [6d] [Td] +Player14 has 15 seconds left to act +Player14 bets $4 +Player10 folds +Player5 folds +Uncalled bet of $4 returned to Player14 +Player14 mucks +Player14 wins the pot ($14.80) +*** SUMMARY *** +Total pot $14.80 | Rake $0 +Seat 1: Player4 folded on 3rd St. +Seat 2: Player13 folded on 3rd St. +Seat 3: Player1 folded on 3rd St. +Seat 5: Player5 folded on 4th St. +Seat 6: Player14 collected ($14.80), mucked +Seat 7: Player6 folded on 3rd St. +Seat 8: Player10 folded on 4th St. + + + +Full Tilt Poker Game #11111110428: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:18:23 ET - 2010/06/10 +Seat 1: Player4 ($15.50) +Seat 2: Player13 ($90.80) +Seat 3: Player1 ($106.50) +Seat 5: Player5 ($109) +Seat 6: Player14 ($145.50) +Seat 7: Player6 ($39.50) +Seat 8: Player10 ($35.60) +Player10 antes $0.40 +Player13 antes $0.40 +Player1 antes $0.40 +Player4 antes $0.40 +Player5 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player4 [Th] +Dealt to Player13 [Kc] +Dealt to Player1 [Kh 9c] [5h] +Dealt to Player5 [6h] +Dealt to Player14 [Js] +Dealt to Player6 [Ac] +Dealt to Player10 [Ah] +Player1 is low with [5h] +Player1 brings in for $0.50 +Player5 folds +Player14 folds +Player6 folds +Player10 completes it to $2 +Player4 calls $2 +Player13 folds +Player1 folds +*** 4TH STREET *** +Dealt to Player4 [Th] [4h] +Dealt to Player10 [Ah] [3c] +Player10 bets $2 +Player4 calls $2 +*** 5TH STREET *** +Dealt to Player4 [Th 4h] [9h] +Dealt to Player10 [Ah 3c] [8h] +Player10 has 15 seconds left to act +Player10 bets $4 +Player4 raises to $8 +Player10 folds +Uncalled bet of $4 returned to Player4 +Player4 mucks +Player4 wins the pot ($19.30) +*** SUMMARY *** +Total pot $19.30 | Rake $0 +Seat 1: Player4 collected ($19.30), mucked +Seat 2: Player13 folded on 3rd St. +Seat 3: Player1 folded on 3rd St. +Seat 5: Player5 folded on 3rd St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. +Seat 8: Player10 folded on 5th St. + + + +Full Tilt Poker Game #11111112961: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:19:27 ET - 2010/06/10 +Seat 1: Player4 ($26) +Seat 2: Player13 ($90) +Seat 3: Player1 ($105.20) +Seat 5: Player5 ($108.20) +Seat 6: Player14 ($144.70) +Seat 7: Player6 ($41.50) +Seat 8: Player10 ($26.80) +Player4 antes $0.40 +Player13 antes $0.40 +Player1 antes $0.40 +Player5 antes $0.40 +Player10 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player4 [9d] +Dealt to Player13 [Qs] +Dealt to Player1 [9h 9s] [5c] +Dealt to Player5 [Th] +Dealt to Player14 [6c] +Dealt to Player6 [2d] +Dealt to Player10 [Qh] +Player6 is low with [2d] +Player6 brings in for $0.50 +Player10 folds +Player4 folds +Player13 folds +Player1 completes it to $2 +Player5 folds +Player14 folds +Player6 calls $1.50 +*** 4TH STREET *** +Dealt to Player1 [9h 9s 5c] [3s] +Dealt to Player6 [2d] [Ah] +Player6 checks +Player1 bets $2 +Player6 calls $2 +*** 5TH STREET *** +Dealt to Player1 [9h 9s 5c 3s] [Kh] +Dealt to Player6 [2d Ah] [Kc] +Player6 checks +Player1 bets $4 +Player6 raises to $8 +Player1 calls $4 +*** 6TH STREET *** +Dealt to Player1 [9h 9s 5c 3s Kh] [5d] +Dealt to Player6 [2d Ah Kc] [4d] +Player1 bets $4 +Player6 calls $4 +*** 7TH STREET *** +Dealt to Player1 [9h 9s 5c 3s Kh 5d] [8s] +Player1 bets $4 +Player6 calls $4 +*** SHOW DOWN *** +Player1 shows [9s 9h 5c 3s Kh 5d 8s] two pair, Nines and Fives +Player6 shows [Ad Kd 2d Ah Kc 4d 8h] two pair, Aces and Kings +Player6 wins the pot ($40.80) with two pair, Aces and Kings +*** SUMMARY *** +Total pot $42.80 | Rake $2 +Seat 1: Player4 folded on 3rd St. +Seat 2: Player13 folded on 3rd St. +Seat 3: Player1 showed [9s 9h 5c 3s Kh 5d 8s] and lost with two pair, Nines and Fives +Seat 5: Player5 folded on 3rd St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 showed [Ad Kd 2d Ah Kc 4d 8h] and won ($40.80) with two pair, Aces and Kings +Seat 8: Player10 folded on 3rd St. + + + +Full Tilt Poker Game #11111110018: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:26:21 ET - 2010/06/10 +Seat 1: Player12 ($66.10) +Seat 2: Player13 ($85.50) +Seat 3: Player1 ($81.10) +Seat 4: Player11 ($283.75) +Seat 5: Player5 ($109.40) +Seat 6: Player14 ($140.20) +Seat 7: Player6 ($59.80) +Seat 8: Player10 ($62.10) +Player10 antes $0.40 +Player13 antes $0.40 +Player1 antes $0.40 +Player5 antes $0.40 +Player14 antes $0.40 +Player12 antes $0.40 +Player11 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player12 [Qh] +Dealt to Player13 [Kd] +Dealt to Player1 [2d Kc] [5h] +Dealt to Player11 [9d] +Dealt to Player5 [6d] +Dealt to Player14 [Ad] +Dealt to Player6 [6h] +Dealt to Player10 [7h] +Player1 is low with [5h] +Player1 brings in for $0.50 +Player11 folds +Player5 folds +Player14 folds +Player6 folds +Player10 folds +Player12 folds +Player13 completes it to $2 +Player1 folds +Uncalled bet of $1.50 returned to Player13 +Player13 mucks +Player13 wins the pot ($4.20) +*** SUMMARY *** +Total pot $4.20 | Rake $0 +Seat 1: Player12 folded on 3rd St. +Seat 2: Player13 collected ($4.20), mucked +Seat 3: Player1 folded on 3rd St. +Seat 4: Player11 folded on 3rd St. +Seat 5: Player5 folded on 3rd St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. +Seat 8: Player10 folded on 3rd St. + + + +Full Tilt Poker Game #11111111146: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:26:47 ET - 2010/06/10 +Seat 1: Player12 ($65.70) +Seat 2: Player13 ($88.80) +Seat 3: Player1 ($80.20) +Seat 4: Player11 ($283.35) +Seat 5: Player5 ($109) +Seat 6: Player14 ($139.80) +Seat 7: Player6 ($59.40) +Seat 8: Player10 ($61.70) +Player10 antes $0.40 +Player1 antes $0.40 +Player13 antes $0.40 +Player5 antes $0.40 +Player11 antes $0.40 +Player12 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player12 [Qd] +Dealt to Player13 [5c] +Dealt to Player1 [4d 3s] [9s] +Dealt to Player11 [Ks] +Dealt to Player5 [2c] +Dealt to Player14 [3d] +Dealt to Player6 [2h] +Dealt to Player10 [2d] +Player5 is low with [2c] +Player5 brings in for $0.50 +Player14 folds +Player6 folds +Player10 folds +Player12 folds +Player13 folds +Player1 folds +Player11 completes it to $2 +Player5 calls $1.50 +*** 4TH STREET *** +Dealt to Player11 [Ks] [Ah] +Dealt to Player5 [2c] [5s] +Player11 bets $2 +Player5 folds +Uncalled bet of $2 returned to Player11 +Player11 mucks +Player11 wins the pot ($7.20) +*** SUMMARY *** +Total pot $7.20 | Rake $0 +Seat 1: Player12 folded on 3rd St. +Seat 2: Player13 folded on 3rd St. +Seat 3: Player1 folded on 3rd St. +Seat 4: Player11 collected ($7.20), mucked +Seat 5: Player5 folded on 4th St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. +Seat 8: Player10 folded on 3rd St. + + + +Full Tilt Poker Game #11111111633: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:37:55 ET - 2010/06/10 +Seat 1: Player12 ($72) +Seat 2: Player9 ($40), is sitting out +Seat 3: Player1 ($89.20) +Seat 4: Player2 ($96.10) +Seat 5: Player5 ($105.50), is sitting out +Seat 6: Player14 ($131.70) +Seat 7: Player6 ($54.70) +Seat 8: Player10 ($96.40) +Player10 antes $0.40 +Player1 antes $0.40 +Player12 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +5 seconds left to act +Player2 is sitting out +*** 3RD STREET *** +Dealt to Player12 [5c] +Dealt to Player1 [Td 9d] [Kc] +Dealt to Player14 [5h] +Dealt to Player6 [4s] +Dealt to Player10 [7s] +Player6 is low with [4s] +Player2 stands up +Player6 brings in for $0.50 +Player10 folds +Player12 folds +Player1 completes it to $2 +Player14 calls $2 +Player6 folds +*** 4TH STREET *** +Dealt to Player1 [Td 9d Kc] [9s] +Dealt to Player14 [5h] [9h] +Player1 bets $2 +Player14 raises to $4 +Player1 calls $2 +*** 5TH STREET *** +Dealt to Player1 [Td 9d Kc 9s] [Tc] +Dealt to Player14 [5h 9h] [3d] +Player1 checks +Player14 checks +*** 6TH STREET *** +Dealt to Player1 [Td 9d Kc 9s Tc] [9c] +Dealt to Player14 [5h 9h 3d] [Th] +Player1 bets $4 +Player14 calls $4 +*** 7TH STREET *** +Dealt to Player1 [Td 9d Kc 9s Tc 9c] [7h] +Player1 bets $4 +Player14 calls $4 +*** SHOW DOWN *** +Player1 shows [Td 9d Kc 9s Tc 9c 7h] a full house, Nines full of Tens +Player14 mucks +Player1 wins the pot ($29.50) with a full house, Nines full of Tens +*** SUMMARY *** +Total pot $30.50 | Rake $1 +Seat 1: Player12 folded on 3rd St. +Seat 2: Player9 is sitting out +Seat 3: Player1 showed [Td 9d Kc 9s Tc 9c 7h] and won ($29.50) with a full house, Nines full of Tens +Seat 4: Player2 is sitting out +Seat 5: Player5 is sitting out +Seat 6: Player14 mucked [8h 6h 5h 9h 3d Th 3h] - a flush, Ten high +Seat 7: Player6 folded on 3rd St. +Seat 8: Player10 folded on 3rd St. + + + +Full Tilt Poker Game #11111113928: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:39:41 ET - 2010/06/10 +Seat 1: Player12 ($68.70) +Seat 2: Player9 ($40), is sitting out +Seat 3: Player1 ($103.90) +Seat 6: Player14 ($116.40) +Seat 7: Player6 ($58.40) +Seat 8: Player10 ($95.60) +Player10 antes $0.40 +Player1 antes $0.40 +Player6 antes $0.40 +Player3 sits down +Player14 antes $0.40 +Player12 antes $0.40 +*** 3RD STREET *** +Dealt to Player12 [9c] +Dealt to Player1 [Ts 4h] [9h] +Dealt to Player14 [7c] +Dealt to Player6 [7s] +Dealt to Player10 [2h] +Player10 is low with [2h] +Player3 adds $40 +Player10 brings in for $0.50 +Player12 folds +Player1 completes it to $2 +Player14 folds +Player6 folds +Player10 folds +Uncalled bet of $1.50 returned to Player1 +Player1 mucks +Player1 wins the pot ($3) +*** SUMMARY *** +Total pot $3 | Rake $0 +Seat 1: Player12 folded on 3rd St. +Seat 2: Player9 is sitting out +Seat 3: Player1 collected ($3), mucked +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. +Seat 8: Player10 folded on 3rd St. + + + + +Full Tilt Poker Game #11111111062: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 13:51:45 ET - 2010/06/10 +Seat 1: Player12 ($83.40) +Seat 2: Player9 ($24.35) +Seat 3: Player1 ($147.90) +Seat 4: Player3 ($74.10) +Seat 5: Player8 ($63.10) +Seat 6: Player14 ($103) +Seat 7: Player6 ($63.20) +Seat 8: Player7 ($48.40) +Player7 antes $0.40 +Player1 antes $0.40 +Player8 antes $0.40 +Player3 antes $0.40 +Player9 antes $0.40 +Player12 antes $0.40 +Player14 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player12 [As] +Dealt to Player9 [7s] +Dealt to Player1 [7h 6s] [8d] +Dealt to Player3 [2d] +Dealt to Player8 [3c] +Dealt to Player14 [7c] +Dealt to Player6 [8h] +Dealt to Player7 [Qs] +Player3 is low with [2d] +Player3 brings in for $0.50 +Player8 folds +Player14 folds +Player6 folds +Player7 folds +Player12 completes it to $2 +Player9 folds +Player1 calls $2 +Player3 calls $1.50 +*** 4TH STREET *** +Dealt to Player12 [As] [5d] +Dealt to Player1 [7h 6s 8d] [Qc] +Dealt to Player3 [2d] [3h] +Player12 bets $2 +Player1 folds +Player3 calls $2 +*** 5TH STREET *** +Dealt to Player12 [As 5d] [4c] +Dealt to Player3 [2d 3h] [5s] +Player12 bets $4 +Player3 folds +Uncalled bet of $4 returned to Player12 +Player12 mucks +Player12 wins the pot ($13.20) +*** SUMMARY *** +Total pot $13.20 | Rake $0 +Seat 1: Player12 collected ($13.20), mucked +Seat 2: Player9 folded on 3rd St. +Seat 3: Player1 folded on 4th St. +Seat 4: Player3 folded on 5th St. +Seat 5: Player8 folded on 3rd St. +Seat 6: Player14 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. +Seat 8: Player7 folded on 3rd St. + + + +Full Tilt Poker Game #11111115744: Table Fpdb - $2/$4 Ante $0.40 - Limit Stud Hi - 14:02:17 ET - 2010/06/10 +Seat 2: Player0 ($60) +Seat 3: Player1 ($129.30) +Seat 4: Player3 ($125.75) +Seat 5: Player8 ($40.10) +Seat 7: Player6 ($72) +Seat 8: Player7 ($32.20) +Player0 antes $0.40 +Player8 antes $0.40 +Player7 antes $0.40 +Player1 antes $0.40 +Player3 antes $0.40 +Player6 antes $0.40 +*** 3RD STREET *** +Dealt to Player0 [Th] +Dealt to Player1 [9s Qc] [7d] +Dealt to Player3 [Qh] +Dealt to Player8 [Kd] +Dealt to Player6 [Jd] +Dealt to Player7 [Jh] +Player1 is low with [7d] +Player1 brings in for $0.50 +Player3 folds +Player8 folds +Player6 folds +Player7 completes it to $2 +Player0 calls $2 +Player1 folds +*** 4TH STREET *** +Dealt to Player0 [Th] [As] +Dealt to Player7 [Jh] [8c] +Player0 bets $2 +Player7 calls $2 +*** 5TH STREET *** +Dealt to Player0 [Th As] [Kh] +Dealt to Player7 [Jh 8c] [2s] +Player0 checks +Player7 checks +*** 6TH STREET *** +Dealt to Player0 [Th As Kh] [7h] +Dealt to Player7 [Jh 8c 2s] [9h] +Player0 bets $4 +Player7 folds +Uncalled bet of $4 returned to Player0 +Player0 mucks +Player0 wins the pot ($10.90) +*** SUMMARY *** +Total pot $10.90 | Rake $0 +Seat 2: Player0 collected ($10.90), mucked +Seat 3: Player1 folded on 3rd St. +Seat 4: Player3 folded on 3rd St. +Seat 5: Player8 folded on 3rd St. +Seat 7: Player6 folded on 3rd St. +Seat 8: Player7 folded on 6th St. + + + + From 6f8fe4a68ca7c10d9dc8e701e87e399ac769fc00 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 13 Jun 2010 07:40:59 +0200 Subject: [PATCH 084/253] expanded explanation of vpip --- pyfpdb/Stats.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index fc2e4ea8..799103e1 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- """Manage collecting and formatting of stats and tooltips. """ @@ -114,7 +115,7 @@ def playername(stat_dict, player): stat_dict[player]['screen_name']) def vpip(stat_dict, player): - """ Voluntarily put $ in the pot.""" + """ Voluntarily put $ in the pot pre-flop.""" stat = 0.0 try: stat = float(stat_dict[player]['vpip'])/float(stat_dict[player]['n']) @@ -123,14 +124,14 @@ def vpip(stat_dict, player): 'v=%3.1f' % (100*stat) + '%', 'vpip=%3.1f' % (100*stat) + '%', '(%d/%d)' % (stat_dict[player]['vpip'], stat_dict[player]['n']), - 'Voluntarily Put In Pot %' + 'Voluntarily Put In Pot Pre-Flop%' ) except: return (stat, '%3.1f' % (0) + '%', 'v=%3.1f' % (0) + '%', 'vpip=%3.1f' % (0) + '%', '(%d/%d)' % (0, 0), - 'Voluntarily Put In Pot %' + 'Voluntarily Put In Pot Pre-Flop%' ) def pfr(stat_dict, player): From 3d8a38e59afa770b74e5984f192f0b7b720dfe95 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 02:52:41 +0200 Subject: [PATCH 085/253] renamed test scripts to make their purpose clearer --- pyfpdb/{test1.py => test_Python.py} | 0 pyfpdb/{test2.py => test_Python_Libs.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename pyfpdb/{test1.py => test_Python.py} (100%) rename pyfpdb/{test2.py => test_Python_Libs.py} (100%) diff --git a/pyfpdb/test1.py b/pyfpdb/test_Python.py similarity index 100% rename from pyfpdb/test1.py rename to pyfpdb/test_Python.py diff --git a/pyfpdb/test2.py b/pyfpdb/test_Python_Libs.py similarity index 100% rename from pyfpdb/test2.py rename to pyfpdb/test_Python_Libs.py From 35e7db570c12550973d3b5b9ff25fff66a62da85 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 04:30:10 +0200 Subject: [PATCH 086/253] moved test_Python* to root folder so they don't collide with py.test and because it fits better there anyways --- pyfpdb/test_Python.py => test_Python.py | 0 pyfpdb/test_Python_Libs.py => test_Python_Libs.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename pyfpdb/test_Python.py => test_Python.py (100%) rename pyfpdb/test_Python_Libs.py => test_Python_Libs.py (100%) diff --git a/pyfpdb/test_Python.py b/test_Python.py similarity index 100% rename from pyfpdb/test_Python.py rename to test_Python.py diff --git a/pyfpdb/test_Python_Libs.py b/test_Python_Libs.py similarity index 100% rename from pyfpdb/test_Python_Libs.py rename to test_Python_Libs.py From 9008d616a7428a9b0a0803e81f2b2831f2373271 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 8 Jun 2010 04:32:10 +0200 Subject: [PATCH 087/253] changed run_fpdb.py permissions to executable --- run_fpdb.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 run_fpdb.py diff --git a/run_fpdb.py b/run_fpdb.py old mode 100644 new mode 100755 From cf2b91359209c7b412f8079619fe0d4dbe58f83f Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 14:49:56 +0800 Subject: [PATCH 088/253] make CLI parameters to run_fpdb.py and fpdb.py work again Conflicts: pyfpdb/fpdb.py run_fpdb.py --- pyfpdb/fpdb.py | 5 ++++- run_fpdb.py | 7 ++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 37491505..806bef9c 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -27,5 +27,8 @@ import sys sys.stdout.write('fpdb.py has been renamed to fpdb.pyw - now calling fpdb.pyw ...\n\n') sys.stdout.flush() -os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) +if os.name=='nt': + os.execvpe('pythonw.exe', list(('pythonw.exe', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) +else: + os.execvpe('python', list(('python', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) # first arg is ignored (name of program being run) diff --git a/run_fpdb.py b/run_fpdb.py index e77d789f..06581b9e 100755 --- a/run_fpdb.py +++ b/run_fpdb.py @@ -15,7 +15,6 @@ #In the "official" distribution you can find the license in #agpl-3.0.txt in the docs folder of the package. - import os import sys @@ -25,6 +24,8 @@ sys.path[0] = sys.path[0]+os.sep+"pyfpdb" os.chdir(sys.path[0]) #print "sys.path[0] =", sys.path[0], "cwd =", os.getcwd() - -os.execvpe('pythonw.exe', ('pythonw.exe', 'fpdb.pyw', '-r'), os.environ) +if os.name=='nt': + os.execvpe('pythonw.exe', list(('pythonw.exe', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) +else: + os.execvpe('python', list(('python', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) # first arg is ignored (name of program being run) From d6f2cd4e83dbd7f5219c2e8a78324f8340a6aed2 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 18:41:31 +0800 Subject: [PATCH 089/253] Add utf8 encoding line to fpdb.pyw --- pyfpdb/fpdb.pyw | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 19b42501..748b9a22 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- #Copyright 2008 Steffen Jobbagy-Felso #This program is free software: you can redistribute it and/or modify From cf4e80cfa3abc3bb6cafebd42c27f2cd7836f967 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 18:42:15 +0800 Subject: [PATCH 090/253] Add new test file, delete fpdb.py --- ...STT-2-20100323.Allin.with.less.than.sb.txt | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt diff --git a/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt b/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt new file mode 100644 index 00000000..3936bbf0 --- /dev/null +++ b/pyfpdb/regression-test-files/tour/FTP/Flop/NLHE-USD-STT-2-20100323.Allin.with.less.than.sb.txt @@ -0,0 +1,39 @@ +Full Tilt Poker Game #19505996411: $2 + $0.25 Sit & Go (148860619), Table 1 - 300/600 - Limit Hold'em - 18:58:46 ET - 2010/03/23 +Seat 2: Player2 (7,723) +Seat 5: Player5 (3,409) +Seat 6: Player6 (50) +Seat 8: Player8 (818) +Player6 posts the small blind of 50, and is all in +Player8 posts the big blind of 300 +The button is in seat #5 +*** HOLE CARDS *** +Dealt to Player5 [2h 9h] +Player2 has 15 seconds left to act +Player2 calls 300 +Player5 folds +Player8 checks +*** FLOP *** [2d 7s Qc] +Player8 checks +Player2 checks +*** TURN *** [2d 7s Qc] [8s] +Player8 checks +Player2 checks +*** RIVER *** [2d 7s Qc 8s] [5c] +Player8 checks +Player2 checks +*** SHOW DOWN *** +Player8 shows [Ts 4c] Queen Ten high +Player2 shows [2c As] a pair of Twos +Player2 wins the side pot (500) with a pair of Twos +Player6 shows [7c 5s] two pair, Sevens and Fives +Player6 wins the main pot (150) with two pair, Sevens and Fives +*** SUMMARY *** +Total pot 650 Main pot 150. Side pot 500. | Rake 0 +Board: [2d 7s Qc 8s 5c] +Seat 2: Player2 showed [2c As] and won (500) with a pair of Twos +Seat 5: Player5 (button) didn't bet (folded) +Seat 6: Player6 (small blind) showed [7c 5s] and won (150) with two pair, Sevens and Fives +Seat 8: Player8 (big blind) showed [Ts 4c] and lost with Queen Ten high + + + From 77211cd4be4fa7efdd089f24f18401cf1f092121 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 18:44:04 +0800 Subject: [PATCH 091/253] Revert change to HUD_main window --- pyfpdb/HUD_main.pyw | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index c31c87d1..92f888d8 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -98,11 +98,7 @@ class HUD_main(object): self.main_window = gtk.Window() self.main_window.connect("destroy", self.destroy) self.vb = gtk.VBox() - #in .exe version, closing HUD_main window causes window lockup - #until next update cycle (i.e. cannot get focus on poker window while locked) - #temporary workaround to disable close button until fix is found - self.main_window.set_deletable(False) - self.label = gtk.Label(' To close, use "Stop Autoimport" in FPDB.') + self.label = gtk.Label('Closing this window will exit from the HUD.') self.vb.add(self.label) self.main_window.add(self.vb) self.main_window.set_title("HUD Main Window") From 5720012b3bd4696ea378d9cf63b3ec68a59d10d9 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 18:44:38 +0800 Subject: [PATCH 092/253] Actually remove fpdb.py --- pyfpdb/fpdb.py | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 pyfpdb/fpdb.py diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py deleted file mode 100755 index 806bef9c..00000000 --- a/pyfpdb/fpdb.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/python - -#Copyright 2008 Steffen Jobbagy-Felso -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#This program is distributed in the hope that it will be useful, -#but WITHOUT ANY WARRANTY; without even the implied warranty of -#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#GNU General Public License for more details. -# -#You should have received a copy of the GNU Affero General Public License -#along with this program. If not, see . -#In the "official" distribution you can find the license in -#agpl-3.0.txt in the docs folder of the package. - - -# Users should run fpdb.pyw now, this is included in case they still try to run fpdb.py - - -import os -import sys - - -#print "fpdb.py has now been renamed to fpdb.pyw - calling fpdb.pyw ...\n" -sys.stdout.write('fpdb.py has been renamed to fpdb.pyw - now calling fpdb.pyw ...\n\n') -sys.stdout.flush() - -if os.name=='nt': - os.execvpe('pythonw.exe', list(('pythonw.exe', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) -else: - os.execvpe('python', list(('python', 'fpdb.pyw', '-r'))+sys.argv[1:], os.environ) -# first arg is ignored (name of program being run) From ad95038edb953ff9d957764f9ccad5ed57061d3b Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 13:00:09 +0200 Subject: [PATCH 093/253] changed start page text --- pyfpdb/fpdb.pyw | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 878f2059..a3d32efe 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -887,8 +887,9 @@ class fpdb: def tab_main_help(self, widget, data=None): """Displays a tab with the main fpdb help screen""" mh_tab=gtk.Label("""Welcome to Fpdb! -For documentation please visit our website at http://fpdb.sourceforge.net/ or check the docs directory in the fpdb folder. -Please note that default.conf is no longer needed nor used, all configuration now happens in HUD_config.xml +For documentation please visit our website at http://fpdb.sourceforge.net/. +If you need help click on Contact - Get Help on our website. +Please note that default.conf is no longer needed nor used, all configuration now happens in HUD_config.xml. This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt") self.add_and_display_tab(mh_tab, "Help") From 9f9fdb7abf20a414ac4e4e33a2f8cf8404d54473 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 13:13:19 +0200 Subject: [PATCH 094/253] removed outdated documentation and moved license files --- docs/agpl-3.0.txt => agpl-3.0.txt | 0 docs/filelist.txt | 75 -- docs/readme.txt | 79 -- docs/release-notes.txt | 93 -- docs/tabledesign.html | 1430 ----------------------------- docs/fdl-1.2.txt => fdl-1.2.txt | 0 pyfpdb/fpdb.pyw | 2 +- 7 files changed, 1 insertion(+), 1678 deletions(-) rename docs/agpl-3.0.txt => agpl-3.0.txt (100%) delete mode 100644 docs/filelist.txt delete mode 100644 docs/readme.txt delete mode 100644 docs/release-notes.txt delete mode 100644 docs/tabledesign.html rename docs/fdl-1.2.txt => fdl-1.2.txt (100%) diff --git a/docs/agpl-3.0.txt b/agpl-3.0.txt similarity index 100% rename from docs/agpl-3.0.txt rename to agpl-3.0.txt diff --git a/docs/filelist.txt b/docs/filelist.txt deleted file mode 100644 index 15e9361a..00000000 --- a/docs/filelist.txt +++ /dev/null @@ -1,75 +0,0 @@ -This is partially outdated - -File list -========= -.: -docs/ Documentation files -pyfpdb/ The main program (in python) -setup/ Directory with files for setting up this program -regression-test/ Directory with test data, query scripts (in python) and the regression test script (in bash) -utils/ A couple of things that will migrate to the main prog soon -viewer/ Directory with the GUI (in Java) - -./docs: -abbreviations.txt A list of abbreviations used and their meaning -agpl-3.0.txt License of the program (everything under /code) -benchmarks.txt Some benchmark results -codingstyle.txt Some notes on formatting. Feel free to ignore. -fdl-1.2.txt License of the documentation (the files in /) -filelist.txt This file -howto-import.txt Instructions on how to run the importer -install-in-gentoo.txt Installation instructions for Gentoo GNU/Linux -install-in-windows.txt Installation instructions for Windows -readme-dev.txt Some notes, pointers and such for developers or anyone else interested in changing fpdb -readme-overview.txt Some general info about this program - read that first -readme-user.txt Instructions on how to use fpdb -status.txt Details of support for poker types and sites -tabledesign.html Table design with comments - -./pyfpdb: -fpdb.py The main GUI. This is what the user will start and use to access the other things. -fpdb_import.py Main import program. Calls methods in the other files. - Takes one hand history file as input. This is the file - you execute, do not run the other ones individually. - Except import_gui.py of course. -fpdb_parse_logic.py Parses a holdem/omaha/razz/stud hand. -fpdb_save_to_db.py Just methods to store the parsed data into SQL. - Seperate file because these calls are very unwieldy. -fpdb_simple.py Simple methods called by the other files. Most work is - actually done in this file to make the other ones look - much easier than they are. -import_gui.py GUI interface to the importer (obselete) - -./setup: -insert-basedata.sql Fills sites and gametypes tables. Run this once after running the above. -recreate-tables.sql File for mysql to recreate the tables. THIS WILL DELETE EXISTING TABLES!!! - -./testdata: -should be self explanatory - -./utils: -dump_db_basedata.py Prints the contents of the tables sites and gametypes -fpdb_util_lib.py Helper methods for the utilities. -get_DB_stats.py Prints some counts (like no. of players in the DB) -get_player_stats.py Prints certain stats about players with CLI-passed constraints -mysql-reset-tables.sh Reset tables for MySQL. THIS WILL DELETE EXISTING TABLES!!! -print_hand.py Prints a hand in legible format. -psql-interactive.sh *nix script to connect to a PostgreSQL database in - interactive mode (note that we're currently only supporting MySQL) -regression-test.sh Resets tables and checks manually verified hands for errors - -./viewer: -todo - -License -======= -Trademarks of third parties have been used under Fair Use or similar laws. - -Copyright 2008 Steffen Jobbagy-Felso -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.2 as published by the Free Software Foundation; with -no Invariant Sections, no Front-Cover Texts, and with no Back-Cover -Texts. A copy of the license can be found in fdl-1.2.txt - -The program itself is licensed under AGPLv3, see agpl-3.0.txt diff --git a/docs/readme.txt b/docs/readme.txt deleted file mode 100644 index e3dbac23..00000000 --- a/docs/readme.txt +++ /dev/null @@ -1,79 +0,0 @@ -README.txt -updated 22 February 2010, REB - -fpdb - Free Poker Database - -The most accurate and up-to-date information on fpdb will be found in the wiki: -http://fpdb.wiki.sourceforge.net/ - -Other resources are: - Mailing list: http://sourceforge.net/mailarchive/forum.php?forum_name=fpdb-main - Chat room(irc): #fpdb on freenode.net - -fpdb is a free program for use with on line poker. It provides: - Tracking of your results and statistics. - Tracking of opponents' results statistics. - Win/loss graphing - Heads Up Display (HUD) with a variety of statistics - Display of mucked cards in the HUD - -fpdb supports: - Sites: - PokerStars - Full Tilt Poker - Everleaf Network - Other sites are under development and are easily added - - Games: - Holdem - Omaha (incl Hi/low) - 7 Card Stud (incl Hi/low) - Razz - Triple Draw and Badugi - Mixed Games -- HUD under development - - Operating Systems: - Linux and other Unix-like, using X - Windows - Mac OS/X -- no support for HUD - - Databases: - SQLite configured by default - MySQL - PostgreSQL - -Downloads: - Releases: http://sourceforge.net/project/showfiles.php?group_id=226872 - Development code via git: http://www.assembla.com/spaces/free_poker_tools/trac_git_tool - -Developers: - At least 10 people have contributed code or patches. Others are welcome. - -Source Code: - If you received fpdb as the Windows compressed exe, then you did not -receive souce code for fpdb or the included libraries. If you wish, you can -obtain the source code here: - - fpdb: see Downloads, above. - python: http://python.org/ - gtk: http://www.gtk.org/download.html - pygtk: http://www.pygtk.org/downloads.html - psycopg2: http://initd.org/pub/software/psycopg/ - mysqldb: http://sourceforge.net/projects/mysql-python/files/ - sqlalchemy: http://www.sqlalchemy.org/download.html - numpy: http://www.scipy.org/Download - matplotlib: http://sourceforge.net/projects/matplotlib/files/ - -License -======= -Trademarks of third parties have been used under Fair Use or similar laws. - -Copyright 2008 Steffen Jobbagy-Felso -Copyright 2009,2010 Ray E. Barker -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.2 as published by the Free Software Foundation; with -no Invariant Sections, no Front-Cover Texts, and with no Back-Cover -Texts. A copy of the license can be found in fdl-1.2.txt - -fpdb itself is licensed under AGPLv3, see agpl-3.0.txt. diff --git a/docs/release-notes.txt b/docs/release-notes.txt deleted file mode 100644 index c8ff9444..00000000 --- a/docs/release-notes.txt +++ /dev/null @@ -1,93 +0,0 @@ -alpha2 -====== -Hi everyone, -we are proud to announce the second alpha release of fpdb, the free/libre open source poker tracker. The biggest highlight is the HUD for Linux made by Ray (and perhaps Mac, not sure). But for everyone fpdb now also supports PS tournaments (SnG and MTT) and FTP ring games. There is also a new auto-importer though it currently only runs on one file per instance (but you can open multiple instances of fpdb). -Fpdb also parses alot of new situations into the cache table for the HUD, most of which are already available through the Linux HUD. There have also been a large number of bugfixes for all kinds of things. For full details of the changes see the git commit comments. - -You can download fpdb at https://sourceforge.net/project/showfiles.php?group_id=226872 - -Our website at http://fpdb.sourceforge.net/ will be updated shortly but in the meantime please note that the configuration file now resides in ~/.fpdb/default.conf on Linux/Mac and in C:\Documents and Settings\Application Data\fpdb\default.conf on Windows (on non-English Windows you have to translate the Documents and Settings, but not the Application data bit). Apart from that just follow the instructions on the site. I will be updating/improving the fpdb ebuild for Gentoo next week, please send me a PM or email if you would like a package for another Linux/BSD. - -To use the HUD in Linux simply run the auto importer whilst having the table open. You will also have to rename HUD_config.xml.example to HUD_config.xml and edit the database parameters in there in addition to what is written in the install guide. - -If you've been using fpdb alpha1 just delete the fpdb folder, follow the installation guide except for installing the dependencies, then run fpdb and run recreate tables. Note that you will have to reimport ALL your history files. - -For external devs (in particular Youre Toast): The table design has gone through some changes, though most of it was just renaming to make a consistent naming scheme and to make it more flexible towards stud/razz type games. I do not expect to having to make any future changes to the existing fields but I cannot yet guarantee that. There will be some additional fields in particular in the HudCache table. Please let me know if you need any further fields. I realise my naming breaks the "database designer's convention" but for this project I feel ignoring this convention for the benefit of consistent naming between Python and SQL is ok. - - -Any questions and comments please post here, send me a PM or email, post a feature request or bug report on sourceforge or use any of the other means of contact listed on our webpage. - -Enjoy, -The fpdb team - -PS: I personally will be away Sun-Tue so I probably won't be responding to anything but feel free to message me anyways, but if you post here or at SF someone else might be able to help. - -PPS: If you wanna know EXACTLY how this project is moving along follow the git tree over at [url]http://www.assembla.com/spaces/fpdb/trac_git_tool[/url] - - -alpha1 -====== -Hi everyone, -I am proud to announce the first release of my new poker tracking software fpdb (freepokerdb, very imaginative I know ;) ). You may wonder why I bothered when now with HM and PT3 there are at least two excellent packages to choose from. - -Four main reasons: -1. Fpdb is free/libre open source software. In short, this means you don't depend on me if sth. is wrong or you want something more in this program as you can freely change it yourself. You also don't have to pay anything for it. If you like it and think I deserve to be paid just drop me a mail ;) -2. HM and PT3 only support holdem. Fpdb initially supports Holdem and Omaha, with Stud and Razz mostly implemented and coming soon. -3. HM and PT3 run on Windows only, and for me at least did not work in wine even after installing Mono. Fpdb runs on any plattform that has the required software, which will cover roundabout 99.9% of PCs. Currently tested plattforms are Windows XP-x86 and Gentoo GNU/Linux-amd64 as well as -x86. - You still need to run Windows or wine to run the actual poker client though. -4. Fpdb won't irritate you with copy prevention measures. - -To install it go to https://sourceforge.net/project/showfiles.php?group_id=226872 and download the zip or tar.bz2, unpack it, and follow the instructions in docs/install-in-* for your operating system (e.g. docs\install-in-windows.txt). Sourceforge lists the release files as source files, not as binary executables - this is correct, python will automagically compile as and when required. - -This is alpha1, as the name indicates it is still at a very early stage. The importer and database are nearing completion but the GUI in particular is not very functional yet and the HUD is missing alltogether. - -If anyone wishes to help with development that would be very very welcome and I've put a few notes in docs/readme-dev.txt in the download for what you could do. Or just start coding and send me the patches :) -If you're not a programmer and you're not interested in learning it you can still help simply by trying it out and sending bug reports and feature requests. To avoid unrealistic expectations I'd like to state that it'll be a long time until fpdb reaches feature parity to established paid-for closed source software. - -Feature List (short now, growing fast ;) ): - -You can edit/add whatever you like, it's all python and SQL. The code should be fairly straightforward I think and I put some notes into readme-dev.txt but feel free to ask. - -Backend, Distribution -===================== -- Choice of MySQL/InnoDB or PostgreSQL. (not tested on PostgreSQL) -- It is possible to run the database on one PC, the importer on another, and then access the database with the table viewer or HUD from a third PC. (note: do NOT do this unencrypted over an untrusted network like your employer's LAN or the Internet!) - -Site/Game Support -================= -- Initially only full support for PS, FTP coming soon -- Supports Holdem, Omaha Hi and Omaha Hi/Lo. Stud and Razz coming soon. -- Supports No Limit, Pot Limit, Fixed Limit NL, Cap NL and Cap PL - Note that currently it does not display extra stats for NL/PL so usefulness is limited for these limit types. Suggestions welcome, I don't play these. -- Supports ring/cash games, SnG/MTT coming soon - -Tableviewer (tv) -=========== -Tv takes a history filename and loads the appropriate players' stats and displays them in a tabular format. These stats currently are: - - VPIP, PFR and Preflop 3B/4B (3B/4B is not quite correct I think) - - Raise and Fold % on flop, turn and river. Fold only counts hands when someone raised. This can be displayed per street or as one combined value each for aggression and folding. - - Number of hands this is based on. - - SD/F (aka WtSD, proportion of hands where player went to showdown after seeing flop) - - W$wSF (Won $ when seen Flop) - - W$@SD (Won $ at showdown) - For all stats it also displays how many hands this particular is based on - - -IMPORTANT: The database format WILL undergo more changes and at this point I am not planning to write a converter so please keep your history files so you can re-import when necessary. Independent of this you should always keep the original raw files in a safe place with any tracking software. Should you however end up loosing your files somehow let me know and I'll try to help. - -Please send any feedback, feature requests/suggestions, bug reports and animal names to steffen@sycamoretest.info, pick one of the contact methods listed in readme-overview.txt, send me a PM here or reply to this post. - - - -License -======= -Trademarks of third parties have been used under Fair Use or similar laws. - -Copyright 2008 Steffen Jobbagy-Felso -Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU Free Documentation License, -Version 1.2 as published by the Free Software Foundation; with -no Invariant Sections, no Front-Cover Texts, and with no Back-Cover -Texts. A copy of the license can be found in fdl-1.2.txt - -The program itself is licensed under AGPLv3, see agpl-3.0.txt diff --git a/docs/tabledesign.html b/docs/tabledesign.html deleted file mode 100644 index 86898528..00000000 --- a/docs/tabledesign.html +++ /dev/null @@ -1,1430 +0,0 @@ - - - - - Free Poker DB Tabledesign - - -

See commit comments for version info, see status.txt for status.

-

Direct suggestions, praise and animal names to steffen@sycamoretest.info or check readme-overview.txt for more contacts

-

I decided to be generous on the sizes of the types - if computing experience shows one thing then its that it will come back to bite you in the ass if you save 2 bits in the wrong place. If performance and/or db size are too bad we can still shrink some fields.

-

Relationships are noted in the comment (need to double check that all are listed)

-

If you want more comments or if anything is confusing or bad let me know.

-

All money/cash amounts are stored in cents/pennies/whatever (e.g. $4.27 would be stored a 427). Chips are stored as-is (e.g. 3675 chips would be stored as 3675).

-

Notes on use/editing:

-

Any change to this must be carried to to the table creation code in fpdb_db.py or at least an entry to known bugs is to be made.

-

If the code (in particular the importer) and this document disagree then this document is to be considered authorative.

-

License
-Trademarks of third parties have been used under Fair Use or similar laws.
-Copyright 2008 Steffen Jobbagy-Felso
-Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 as published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license can be found in fdl-1.2.txt
-The program itself is licensed under AGPLv3, see agpl-3.0.txt

-

See readme.txt for copying

-

Table Settings

- - - - - - - - - - - -

Field name

Type

Comment

version

smallint

the git version of the database (ie. table design changes and major bugfixes require a bump)

-

Table Players

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field name

Type

Comment

id

int


name

varchar(32)


siteId

smallint

references Sites.id

comment

text


commentTs

datetime (in UTC)


-


-

Table Autorates

-

An autorating is a computer-"recognised" label/category for a player. Examples could include "Calling Station" if a player has <20% each for aggression and folding postflop. Or "Tight-Aggressive/Aggressive" for players with <20% VPIP, >10% PFR and >40% postflop aggression.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field name

Type

Comment

id

bigint


playerId

int

references Players.id

gametypeId

smallint

references Gametypes.id

description

varchar(50)

autorating description

shortDesc

char(8)

short description e.g. for display in HUD

ratingTime

datetime (in UTC)

timestamp of rating

handCount

int

number of hands rating is based on

-


-

Table Gametypes

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field name

Type

Comment

id

smallint


siteId

smallint

references sites.id

type

char(4)

valid entries:
- ring - ringgames aka cash games
- tour - tournament incl SnG

base

char(4)

The underlying structure. valid entries:
- hold - Holdem and Omaha
- stud - Stud and Razz
- draw - (incl Badugi)

category

varchar(9)

valid entries:
- holdem=Texas Hold'em
- omahahi=Omaha High only
- omahahilo=Omaha 8 or better
- razz=Razz
- studhi=7 Card Stud High only
- studhilo=7 Card Stud 8 or better
- fivedraw=Five Card Draw
- 27_1draw=2-7 Single Draw
- 27_3draw=2-7 Tripple Draw
- badugi=Badugi

limitType

char(2)

nl=No Limit
- cn=Cap No Limit
- pl=Pot Limit
- cp=Cap Pot Limit
- fl=Fixed Limit

hiLo

char(1)

Whether the game is hi, lo or both. Valid Entries:
- h - High only
- l - Low only
- s - Hi/Lo Split

smallBlind

int


bigBlind

int


smallBet

int


bigBet

int


-


-

Table Sites

- - - - - - - - - - - - - - - - - - - - - -

Field name

Type

Comment

id

smallint


name

varchar(32)


currency

char(3)

currency code, e.g. USD, GBP, EUR

-


-

Table Hands

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field Name

Type

Comment

id

bigint


tableName

varchar(20)

The site's name for the current table

siteHandNo

bigint

the site's hand number

gametypeId

smallint

references gametypes.id

handStart

datetime (in UTC)

start date&time of the hand

importTime

datetime (in UTC)

date&time of import of this hand

seats

smallint

number of used seats (ie. that got dealt cards)

maxSeats

smallint

number of available seats

comment

text


commentTs

datetime (in UTC)


-


-

Table BoardCards

-

cardX -> can be 1 through 5

- - - - - - - - - - - - - - - - - - - - - - - - - - -

Field Name

Type

Comment

id

bigint


handId

bigint

the site's hand number

cardXValue

smallint

2-10=2-10, J=11, Q=12, K=13, A=14 (even in razz), unknown/no card=x, kept=k (draw only)

cardXSuit

char(1)

h=hearts, s=spades, d=diamonds, c=clubs, unknown/no card=x

-


-

Table HandsPlayers

-

cardX: can be 1 through 20, one for each card. In holdem only 1-2 of these are used, in omaha 1-4, in stud/razz 1-7, in single draw games 1-10 is used and in badugi 1-16 (4*4) is used.

-

For the draw games: the first 5 (badugi: 4) cards are the initial cards, the next 5 (badugi: 4) are after the first draw. If a player keeps some cards then those cards' spaces are filled with "k", short for "kept".
-Example 1: If a player gets 2-6 spades for his first five cards and decides to throw away the 4 and then gets a 7 of spades then the first 10 fields of cardXValue would be as follows: 2, 3, 4, 5, 6, k, k, 7, k, k
-Example 2: If a player gets 2, 3, 5, 8, J of spades for his first five cards and decides to throw away the 2 and the 3 and then gets a Q and K of spades then the first 10 fields of cardXValue would be as follows: 2, 3, 5, 8, J, Q, K, k, k, k
-Note that it will k in the space of which card was there previously, so in example 2 where the player kept the last 3 cards, the last 3 fields of the first draw (ie. card8-10Value) are replaced with k.

-

I did not separate this into an extra table because I felt the lost space is not sufficiently large. Also the benefit for searching is far less relevant.

-

ToDo: Original plan was to implement the many flags from hudcache as booleans - need to try this out as it will save space and may therefore be quicker.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field Name

Type

-

Comment

id

bigint


handId

bigint

references Hands.id

playerId

int

references Players.id

startCash

int


position

char(1)

BB=B, SB=S, Button=0, Cutoff=1, etc.
- This is used in holdem/omaha only.

seatNo

smallint

The seat in which the person was sitting - necessary for HUD

card1(..7)

smallint

0=none/unknown, 1-13=2-Ah 14-26=2-Ad 27-39=2-Ac 40-52=2-As

startCards

smallint

int representing Holdem starting cards.
Hand is stored as an int 13 * x + y where x and y -are in range 0..12, and (x+2) and (y+2) represents rank of each card (2=2 .. 14=Ace).
-If x > y then pair is suited, if x < y then unsuited.
-Omaha and other games may need to use this as a key into another table. (to be decided ...)

ante

int

note: for cash this could be boolean, but in tourneys you may enter a hand with less than the full ante

winnings

int

winnings in this hand (bets, antes, etc. are NOT deducted, but rake already is)

rake

int

rake for this player for this hand (i.e. final pot(s) size = winnings + rake)

totalProfit

int

profit for this player for this hand ( i.e. winnings - (ante + bets) )

comment

text


commentTs

datetime (in UTC)


tourneysPlayersId

bigint

references TourneysPlayers.id

tourneyTypeId

bigint

references TourneyTypes.id (maybe this should be on Hands?)

wonWhenSeenStreet1(..4)

float

How many hands the player won after seeing the flop/street4 - this can be a "partial win" if the pot is split.
- To be completely clear, this stores a hand count, NOT a money amount.
- (2/3/4: Same for turn/street5, river/street6, street7)

wonAtSD

float

As wonWhenSeenStreet1, but for showdown.

street0VPI

int

did player pay to see flop, 1 or 0

street0Aggr

int

did player raise before flop, 1 or 0

street0_3BChance

int

did player have chance to 3B, 1 or 0

street0_3BDone

int

did player 3bet before flop, 1 or 0

street0_4BChance

int

did player have chance to 4B, 1 or 0

street0_4BDone

int

did player 4bet before flop, 1 or 0

other_3BStreet0

int

did other player 3bet before flop, 1 or 0

other_4BStreet0

int

did other player 4bet before flop, 1 or 0

street1Seen(/2/3/4)

int

did player see flop/street4 (.. etc)

sawShowdown

int

did player see showdown

street1Aggr

int

number of hands where player raised flop/street4

street2Aggr

int

number of hands where player raised turn/street5

street3Aggr

int

number of hands where player raised river/street6

street4Aggr

int

number of hands where player raised street7

otherRaisedStreet0

int

number of hands where someone else raised pre-flop/street3

otherRaisedStreet1

int

number of hands where someone else raised flop/street4

otherRaisedStreet2

int

number of hands where someone else raised turn/street5

otherRaisedStreet3

int

number of hands where someone else raised river/street6

otherRaisedStreet4

int

number of hands where someone else raised street7

foldToOtherRaisedStreet0

int

number of hands where someone else raised flop/street4 and the player folded

foldToOtherRaisedStreet1

int

number of hands where someone else raised flop/street4 and the player folded

foldToOtherRaisedStreet2

int

number of hands where someone else raised Turn/street5 and the player folded

foldToOtherRaisedStreet3

int

number of hands where someone else raised River/street6 and the player folded

foldToOtherRaisedStreet4

int

number of hands where someone else raised street7 and the player folded

stealAttemptChance

int

Player was in CO, BTN or SB and nobody has called yet

stealAttempted

int

Player took a chance per the above condition

foldBbToStealChance

int

Somebody tried to steal BB from player

foldedBbToSteal

int

Player folded BB to steal attempt

foldSbToStealChance

int

Somebody tried to steal SB from player

foldedSbToSteal

int

Player folded SB to steal attempt

street1CBChance

int

Player had chance to make continuation bet on flop/street4

street1CBDone

int

Player used chance to make continuation bet on flop/street4

street2CBChance

int

Player had chance to make continuation bet on turn/street5

street2CBDone

int

Player used chance to make continuation bet on turn/street5

street3CBChance

int

Player had chance to make continuation bet on river/street6

street3CBDone

int

Player used chance to make continuation bet on river/street6

street4CBChance

int

Player had chance to make continuation bet on street7

street4CBDone

int

Player used chance to make continuation bet on street7

foldToStreet1CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet1CBDone

int

Player used chance to fold to continuation bet on this street

foldToStreet2CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet2CBDone

int

Player used chance to fold to continuation bet on this street

foldToStreet3CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet3CBDone

int

Player used chance to fold to continuation bet on this street

foldToStreet4CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet4CBDone

int

Player used chance to fold to continuation bet on this street

street1CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street1CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street2CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street2CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street3CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street3CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street4CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street4CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street0Calls

int

Number of times player called on this street

street1Calls

int

Number of times player called on this street

street2Calls

int

Number of times player called on this street

street3Calls

int

Number of times player called on this street

street4Calls

int

Number of times player called on this street

street0Bets

int

Number of times player bet on this street

street1Bets

int

Number of times player bet on this street

street2Bets

int

Number of times player bet on this street

street3Bets

int

Number of times player bet on this street

street4Bets

int

Number of times player bet on this street

street0Raises

int

Number of times player raised on this street

street1Raises

int

Number of times player raised on this street

street2Raises

int

Number of times player raised on this street

street3Raises

int

Number of times player raised on this street

street4Raises

int

Number of times player raised on this street

actionString

int

Experimental - idea is to store the action on this street as a string: e.g. kkBrcfC, with - player's own choices in upper case and other players in lower case. k=check, b=bet, c=call, - r=raise. (Perhaps NL would miss out bet sizes for this?) It would then be possible to do complex - ad-hoc queries using queries like: actionString like '%B%r%C% -

-


-

Table HudCache

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field Name

Type

Comment

id

bigint


gametypeId

smallint

references gametypes.id

playerId

int

references players.id

activeSeats

smallint

range 2-10

position

char(1)

Position for which this row applies. In this table this can be B(BB), S(SB), D(Dealer/Button), C(Cutoff), M(Middle - the 3 before cutoff) or E (Early - the 3 before Middle)

tourneyTypeId

smallint

References TourneyTypes.id

HDs

int

number of hands this player played in this gametype with this number of seats

wonWhenSeenStreet1(/2/3/4)

float

How many hands the player won after seeing the flop/street4 - this can be a "partial win" if the pot is split.
- To be completely clear, this stores a hand count, NOT a money amount.
- (/2/3/4: Same for turn/street5, river/street6, street7)

wonAtSD

float

As wonWhenSeenStreet1, but for showdown.

street0VPI

int

number of hands where player paid to see flop
- Please note that this already includes street0Aggr!
- To calculate limp just deduct street0Aggr from this number

street0Aggr

int

number of hands where player raised before flop

street0_3BChance

int

number of hands where player had chance to 3B before flop

street0_3BDone

int

number of hands where player 3bet before flop

street0_4BChance

int

number of hands where player had chance to 4B before flop

street0_4BDone

int

number of hands where player 4bet before flop

street1Seen

int

number of hands where player saw flop/street4

street2Seen

int

number of hands where player saw turn/street5

street3Seen

int

number of hands where player saw river/street6

street4Seen

int

number of hands where player saw street7

sawShowdown

int

number of hands where player saw showdown

street1Aggr

int

number of hands where player raised flop/street4

street2Aggr

int

number of hands where player raised turn/street5

street3Aggr

int

number of hands where player raised river/street6

street4Aggr

int

number of hands where player raised street7

otherRaisedStreet0

int

number of hands where someone else raised pre-flop/street3

otherRaisedStreet1

int

number of hands where someone else raised flop/street4

otherRaisedStreet2

int

number of hands where someone else raised turn/street5

otherRaisedStreet3

int

number of hands where someone else raised river/street6

otherRaisedStreet4

int

number of hands where someone else raised street7

foldToOtherRaisedStreet0

int

number of hands where someone else raised pre-flop/street3 and the player folded

foldToOtherRaisedStreet1

int

number of hands where someone else raised flop/street4 and the player folded

foldToOtherRaisedStreet2

int

number of hands where someone else raised Turn/street5 and the player folded

foldToOtherRaisedStreet3

int

number of hands where someone else raised River/street6 and the player folded

foldToOtherRaisedStreet4

int

number of hands where someone else raised street7 and the player folded

stealAttemptChance

int

Player was in CO, BTN or SB and nobody has called yet

stealAttempted

int

Player took a chance per the above condition

foldBbToStealChance

int

Somebody tried to steal BB from player

foldedBbToSteal

int

Player folded BB to steal attempt

foldSbToStealChance

int

Somebody tried to steal SB from player

foldedSbToSteal

int

Player folded SB to steal attempt

street1CBChance

int

Player had chance to make continuation bet on flop/street4

street1CBDone

int

Player used chance to make continuation bet on flop/street4

street2CBChance

int

Player had chance to make continuation bet on turn/street5

street2CBDone

int

Player used chance to make continuation bet on turn/street5

street3CBChance

int

Player had chance to make continuation bet on river/street6

street3CBDone

int

Player used chance to make continuation bet on river/street6

street4CBChance

int

Player had chance to make continuation bet on street7

street4CBDone

int

Player used chance to make continuation bet on street7

foldToStreet1CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet1CBDone

int

Player used chance to fold to continuation bet on this street

foldToStreet2CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet2CBDone

int

Player used chance to fold to continuation bet on this street

foldToStreet3CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet3CBDone

int

Player used chance to fold to continuation bet on this street

foldToStreet4CBChance

int

Player had chance to fold to continuation bet on this street

foldToStreet4CBDone

int

Player used chance to fold to continuation bet on this street

totalProfit

int

how much money in cents the player made

street1CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street1CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street2CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street2CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street3CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street3CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street4CheckCallRaiseChance

int

How often player had the chance to do a check-raise or a call-raise on this street

street4CheckCallRaiseDone

int

How often player used the chance to do a check-raise or a call-raise on this street

street0Calls

int

Number of times player called on this street

street1Calls

int

Number of times player called on this street

street2Calls

int

Number of times player called on this street

street3Calls

int

Number of times player called on this street

street4Calls

int

Number of times player called on this street

street0Bets

int

Number of times player bet on this street

street1Bets

int

Number of times player bet on this street

street2Bets

int

Number of times player bet on this street

street3Bets

int

Number of times player bet on this street

street4Bets

int

Number of times player bet on this street

street0Raises

int

Number of times player raised on this street

street1Raises

int

Number of times player raised on this street

street2Raises

int

Number of times player raised on this street

street3Raises

int

Number of times player raised on this street

street4Raises

int

Number of times player raised on this street

-

-

Table HandsActions

-

Did separate this into an extra table because it makes SELECTing across different streets so much easier. Also the space saving will be very large.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field Name

Type

Comment

id

bigint


handPlayerId

bigint

references HandsPlayers.id

street

smallint

street number, 0-3 (preflop, flop, turn, river) for holdem/omaha or 0-4 for razz/stud

-1 for seen showdown

actionNo

smallint

action number, this is counted from zero for each street but across all players (e.g. in a heads up where the SB calls and the BB raises and the SB calls again would have numbers 0 and 1 for blinds, 2 and 4 for call and 3 for bet)
- Note that the blinds are counted as an action, so if the SB stays in the hand it'll always be action #0

action

char(5)

Bet stands for bring in, complete, bet, double bet, raise and double raise, since they all - technically - do the same thing. Unbet is used for when an uncalled bet is returned, this will have a negative value for amount.

-

Other valid values: blind call check fold

allIn

boolean

Whether the player went all-in on this action

amount

int

amount put into the middle for this action

comment

text


commentTs

datetime (in UTC)


-


-

Tournament Tables

-


-

Table Tourneys

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field name

Type

Comment

id

int


tourneyTypeId

smallint

References TourneyTypes.id

siteTourneyNo

bigint


entries

int

-1 if unknown

prizepool

int

Need this as separate field to support rebuy/addon

-1 if unknown

startTime

datetime (in UTC)

Empty if unknown

comment

text


commentTs

datetime (in UTC)


-


-

Table TourneyTypes

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field name

Type

Comment

id

int


siteId

smallint

References Sites.id

buyin

int

Buy-in in cents. Without rebuy/add-on

fee

int


knockout

int


rebuyOrAddon

boolean

Whether rebuys or add-ons are possible

-


-

Table TourneysPlayers

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field Name

Type

Comment

id

bigint


tourneyId

int

References Tourneys.id

playerId

int

References Players.id

payinAmount

int

Buyin, fee, rebuys and add-ons

rank

int

Finishing rank

winnings

signed int

Winnings (not profit) by this player, -1 if unknown.

comment

text


commentTs

datetime (in UTC)


-


-

Possible Changes

- - - - - - - - - - - - - - - - - - - - - -

Table

Comment

BoardCards

Remove as these attributes are now stored on Hands

HandsActions

Remove if/when these attributes are stored on Hands or elsewhere

HandsPlayers

Move tourneyTypeId field to Hands table.

Comments

Comment fields on various tables should probably be moved to a single comment table. Aim - should be to where possible reduce tables to a list of fixed length not-null columns and have - the larger, sparser comment columns in a dedicated table. (May not be possible or practical but - something to aim at.)

- - diff --git a/docs/fdl-1.2.txt b/fdl-1.2.txt similarity index 100% rename from docs/fdl-1.2.txt rename to fdl-1.2.txt diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index a3d32efe..3e9c2871 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -890,7 +890,7 @@ class fpdb: For documentation please visit our website at http://fpdb.sourceforge.net/. If you need help click on Contact - Get Help on our website. Please note that default.conf is no longer needed nor used, all configuration now happens in HUD_config.xml. -This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt") +This program is licensed under the AGPL3, see agpl-3.0.txt in the fpdb installation directory.") self.add_and_display_tab(mh_tab, "Help") def tab_table_viewer(self, widget, data=None): From 0cd213b6023c72a7d1adbdc19e9c4ec87a3e6d6f Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 13:42:23 +0200 Subject: [PATCH 095/253] removed two obselete files from utils --- utils/dump_db_basedata.py | 38 ------------------ utils/get_db_stats.py | 83 --------------------------------------- 2 files changed, 121 deletions(-) delete mode 100755 utils/dump_db_basedata.py delete mode 100755 utils/get_db_stats.py diff --git a/utils/dump_db_basedata.py b/utils/dump_db_basedata.py deleted file mode 100755 index f796c8ea..00000000 --- a/utils/dump_db_basedata.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/python - -#Copyright 2008 Steffen Jobbagy-Felso -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#This program is distributed in the hope that it will be useful, -#but WITHOUT ANY WARRANTY; without even the implied warranty of -#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#GNU General Public License for more details. -# -#You should have received a copy of the GNU Affero General Public License -#along with this program. If not, see . -#In the "official" distribution you can find the license in -#agpl-3.0.txt in the docs folder of the package. - -import sys -import MySQLdb - -db = MySQLdb.connect("localhost", "fpdb", sys.argv[1], "fpdb") -cursor = db.cursor() -print "Connected to MySQL on localhost. Printing dev-supplied base data:" - -cursor.execute("SELECT * FROM sites") -print "Sites" -print "=====" -print cursor.fetchall() - -cursor.execute("SELECT * FROM gametypes") -print "Gametypes" -print "=========" -result=cursor.fetchall() -for i in range (len(result)): - print result[i] - -cursor.close() -db.close() diff --git a/utils/get_db_stats.py b/utils/get_db_stats.py deleted file mode 100755 index 182baa38..00000000 --- a/utils/get_db_stats.py +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/python - -#Copyright 2008 Steffen Jobbagy-Felso -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#This program is distributed in the hope that it will be useful, -#but WITHOUT ANY WARRANTY; without even the implied warranty of -#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#GNU General Public License for more details. -# -#You should have received a copy of the GNU Affero General Public License -#along with this program. If not, see . -#In the "official" distribution you can find the license in -#agpl-3.0.txt in the docs folder of the package. - -import sys -import MySQLdb - -db = MySQLdb.connect("localhost", "fpdb", sys.argv[1], "fpdb") -cursor = db.cursor() -print "Connected to MySQL on localhost. Printing summary stats:" - -cursor.execute("SELECT id FROM Players") -print "Players:",cursor.rowcount -cursor.execute("SELECT id FROM Autorates") -print "Autorates:",cursor.rowcount - -cursor.execute("SELECT id FROM Sites") -print "Sites:",cursor.rowcount -cursor.execute("SELECT id FROM Gametypes") -print "Gametypes:",cursor.rowcount - -cursor.execute("SELECT id FROM Hands") -print "Total Hands:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.type='ring'") -print "Hands, Ring:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.type='stt'") -print "Hands, STT:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.type='mtt'") -print "Hands, MTT:",cursor.rowcount - -print "" -print "Hands per category and type" -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.limitType='cn'") -print "Hands, Cap No Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.limitType='cp'") -print "Hands, Cap Pot Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='holdem' AND Gametypes.limitType='nl'") -print "Hands, Holdem No Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='holdem' AND Gametypes.limitType='pl'") -print "Hands, Holdem Pot Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='holdem' AND Gametypes.limitType='fl'") -print "Hands, Holdem Fixed Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='omahahi' AND Gametypes.limitType='nl'") -print "Hands, Omaha Hi No Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='omahahi' AND Gametypes.limitType='pl'") -print "Hands, Omaha Hi Pot Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='omahahi' AND Gametypes.limitType='fl'") -print "Hands, Omaha Hi Fixed Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='omahahilo' AND Gametypes.limitType='nl'") -print "Hands, Omaha Hi/Lo No Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='omahahilo' AND Gametypes.limitType='pl'") -print "Hands, Omaha Hi/Lo Pot Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='omahahilo' AND Gametypes.limitType='fl'") -print "Hands, Omaha Hi/Lo Fixed Limit:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='razz'") -print "Hands, Razz:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='studhi'") -print "Hands, Stud Hi:",cursor.rowcount -cursor.execute("SELECT Hands.id FROM Hands INNER JOIN Gametypes ON Hands.gametypeId = Gametypes.id WHERE Gametypes.category='studhilo'") -print "Hands, Stud Hi/Lo:",cursor.rowcount -print "" -cursor.execute("SELECT id FROM BoardCards") -print "Board_cards:",cursor.rowcount -cursor.execute("SELECT id FROM HandsPlayers") -print "Hands_players:",cursor.rowcount -cursor.execute("SELECT id FROM HandsActions") -print "Hands_actions:",cursor.rowcount - -cursor.close() -db.close() From e244a5d50213d7bb68f79f50f45f0984a3f94dc2 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 15:41:45 +0200 Subject: [PATCH 096/253] minor spelling correction --- pyfpdb/Hand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 71fc6ced..e57a8ecc 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -345,7 +345,7 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio self.actions['BLINDSANTES'].append(act) if blindtype == 'both': - # work with the real ammount. limit games are listed as $1, $2, where + # work with the real amount. limit games are listed as $1, $2, where # the SB 0.50 and the BB is $1, after the turn the minimum bet amount is $2.... amount = self.bb self.bets['BLINDSANTES'][player].append(Decimal(self.sb)) From cfcec2182e6285d27db7603938776fe9dc88f1d1 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 15:48:22 +0200 Subject: [PATCH 097/253] removed fields from Tourneys buyinChips, rebuyChips, addonChips, rebuyAmount, addonAmount and koBounty --- pyfpdb/AlchemyTables.py | 6 ------ pyfpdb/SQL.py | 37 +++---------------------------------- 2 files changed, 3 insertions(+), 40 deletions(-) diff --git a/pyfpdb/AlchemyTables.py b/pyfpdb/AlchemyTables.py index 2b0faa86..0aa5ad85 100644 --- a/pyfpdb/AlchemyTables.py +++ b/pyfpdb/AlchemyTables.py @@ -353,17 +353,11 @@ tourneys_table = Table('Tourneys', metadata, Column('prizepool', Integer), # INT NOT NULL Column('tourStartTime', DateTime), # DATETIME NOT NULL Column('tourEndTime', DateTime), # DATETIME - Column('buyinChips', Integer), # INT Column('tourneyName', String(40)), # varchar(40) # Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn Column('matrixIdProcessed',SmallInteger, default=0), # TINYINT UNSIGNED DEFAULT 0 - Column('rebuyChips', Integer, default=0), # INT DEFAULT 0 - Column('addonChips', Integer, default=0), # INT DEFAULT 0 - Column('rebuyAmount', MoneyColumn, default=0), # INT DEFAULT 0 - Column('addonAmount', MoneyColumn, default=0), # INT DEFAULT 0 Column('totalRebuys', Integer, default=0), # INT DEFAULT 0 Column('totalAddons', Integer, default=0), # INT DEFAULT 0 - Column('koBounty', Integer, default=0), # INT DEFAULT 0 Column('comment', Text), # TEXT Column('commentTs', DateTime), # DATETIME mysql_charset='utf8', diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 8776178b..33c247cb 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -421,16 +421,10 @@ class Sql: prizepool INT NOT NULL, startTime DATETIME NOT NULL, endTime DATETIME, - buyinChips INT, tourneyName varchar(40), matrixIdProcessed TINYINT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */ - rebuyChips INT DEFAULT 0, - addonChips INT DEFAULT 0, - rebuyAmount INT DEFAULT 0, - addonAmount INT DEFAULT 0, totalRebuys INT DEFAULT 0, totalAddons INT DEFAULT 0, - koBounty INT DEFAULT 0, comment TEXT, commentTs DATETIME) ENGINE=INNODB""" @@ -443,16 +437,10 @@ class Sql: prizepool INT, startTime timestamp without time zone, endTime timestamp without time zone, - buyinChips INT, tourneyName varchar(40), matrixIdProcessed SMALLINT DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */ - rebuyChips INT DEFAULT 0, - addonChips INT DEFAULT 0, - rebuyAmount INT DEFAULT 0, - addonAmount INT DEFAULT 0, totalRebuys INT DEFAULT 0, totalAddons INT DEFAULT 0, - koBounty INT DEFAULT 0, comment TEXT, commentTs timestamp without time zone)""" elif db_server == 'sqlite': @@ -464,16 +452,10 @@ class Sql: prizepool INT, startTime REAL, endTime REAL, - buyinChips INT, tourneyName TEXT, matrixIdProcessed INT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */ - rebuyChips INT DEFAULT 0, - addonChips INT DEFAULT 0, - rebuyAmount INT DEFAULT 0, - addonAmount INT DEFAULT 0, totalRebuys INT DEFAULT 0, totalAddons INT DEFAULT 0, - koBounty INT DEFAULT 0, comment TEXT, commentTs REAL)""" ################################ @@ -3614,16 +3596,10 @@ class Sql: t.prizepool, t.startTime, t.endTime, - t.buyinChips, t.tourneyName, t.matrixIdProcessed, - t.rebuyChips, - t.addonChips, - t.rebuyAmount, - t.addonAmount, t.totalRebuys, t.totalAddons, - t.koBounty, t.comment FROM Tourneys t INNER JOIN TourneyTypes tt ON (t.tourneyTypeId = tt.id) @@ -3632,11 +3608,10 @@ class Sql: self.query['insertTourney'] = """INSERT INTO Tourneys (tourneyTypeId, siteTourneyNo, entries, prizepool, - startTime, endTime, buyinChips, tourneyName, matrixIdProcessed, - rebuyChips, addonChips, rebuyAmount, addonAmount, totalRebuys, - totalAddons, koBounty, comment, commentTs) + startTime, endTime, tourneyName, matrixIdProcessed, + totalRebuys, totalAddons, comment, commentTs) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, - %s, %s, %s, %s, %s, %s, %s, %s) + %s, %s) """ self.query['updateTourney'] = """UPDATE Tourneys @@ -3645,16 +3620,10 @@ class Sql: prizepool = %s, startTime = %s, endTime = %s, - buyinChips = %s, tourneyName = %s, matrixIdProcessed = %s, - rebuyChips = %s, - addonChips = %s, - rebuyAmount = %s, - addonAmount = %s, totalRebuys = %s, totalAddons = %s, - koBounty = %s, comment = %s, commentTs = %s WHERE id=%s From d83c68d57823fa6b0b0b9ff65fd92f998e619a73 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 15:54:32 +0200 Subject: [PATCH 098/253] fix silly mistake i made when changing start screen text --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 92d3f6f7..6d61038f 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -890,7 +890,7 @@ class fpdb: For documentation please visit our website at http://fpdb.sourceforge.net/. If you need help click on Contact - Get Help on our website. Please note that default.conf is no longer needed nor used, all configuration now happens in HUD_config.xml. -This program is licensed under the AGPL3, see agpl-3.0.txt in the fpdb installation directory.") +This program is licensed under the AGPL3, see agpl-3.0.txt in the fpdb installation directory.""") self.add_and_display_tab(mh_tab, "Help") def tab_table_viewer(self, widget, data=None): From e6fd3afbba04bf28e20b0223f527b9e3a74a6d70 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 16:45:15 +0200 Subject: [PATCH 099/253] renamed totalRebuys/AddOns to totalRebuyCount/AddOnCount --- pyfpdb/AlchemyTables.py | 4 ++-- pyfpdb/FulltiltToFpdb.py | 4 ++-- pyfpdb/SQL.py | 22 +++++++++++----------- pyfpdb/Tourney.py | 13 +++++++------ 4 files changed, 22 insertions(+), 21 deletions(-) diff --git a/pyfpdb/AlchemyTables.py b/pyfpdb/AlchemyTables.py index 0aa5ad85..003716b6 100644 --- a/pyfpdb/AlchemyTables.py +++ b/pyfpdb/AlchemyTables.py @@ -356,8 +356,8 @@ tourneys_table = Table('Tourneys', metadata, Column('tourneyName', String(40)), # varchar(40) # Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn Column('matrixIdProcessed',SmallInteger, default=0), # TINYINT UNSIGNED DEFAULT 0 - Column('totalRebuys', Integer, default=0), # INT DEFAULT 0 - Column('totalAddons', Integer, default=0), # INT DEFAULT 0 + Column('totalRebuyCount', Integer, default=0), # INT DEFAULT 0 + Column('totalAddOnCount', Integer, default=0), # INT DEFAULT 0 Column('comment', Text), # TEXT Column('commentTs', DateTime), # DATETIME mysql_charset='utf8', diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 2c6370e6..1503e10d 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -582,8 +582,8 @@ class Fulltilt(HandHistoryConverter): "PRIZEPOOL" : "prizepool", "REBUY_AMOUNT" : "rebuyAmount", "ADDON_AMOUNT" : "addOnAmount", - "REBUY_TOTAL" : "totalRebuys", - "ADDONS_TOTAL" : "totalAddOns", + "REBUY_TOTAL" : "totalRebuyCount", + "ADDONS_TOTAL" : "totalAddOnCount", "REBUY_CHIPS" : "rebuyChips", "ADDON_CHIPS" : "addOnChips", "STARTTIME" : "starttime", diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 33c247cb..ae6be545 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -423,8 +423,8 @@ class Sql: endTime DATETIME, tourneyName varchar(40), matrixIdProcessed TINYINT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */ - totalRebuys INT DEFAULT 0, - totalAddons INT DEFAULT 0, + totalRebuyCount INT DEFAULT 0, + totalAddOnCount INT DEFAULT 0, comment TEXT, commentTs DATETIME) ENGINE=INNODB""" @@ -439,8 +439,8 @@ class Sql: endTime timestamp without time zone, tourneyName varchar(40), matrixIdProcessed SMALLINT DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */ - totalRebuys INT DEFAULT 0, - totalAddons INT DEFAULT 0, + totalRebuyCount INT DEFAULT 0, + totalAddOnCount INT DEFAULT 0, comment TEXT, commentTs timestamp without time zone)""" elif db_server == 'sqlite': @@ -454,8 +454,8 @@ class Sql: endTime REAL, tourneyName TEXT, matrixIdProcessed INT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */ - totalRebuys INT DEFAULT 0, - totalAddons INT DEFAULT 0, + totalRebuyCount INT DEFAULT 0, + totalAddOnCount INT DEFAULT 0, comment TEXT, commentTs REAL)""" ################################ @@ -3598,8 +3598,8 @@ class Sql: t.endTime, t.tourneyName, t.matrixIdProcessed, - t.totalRebuys, - t.totalAddons, + t.totalRebuyCount, + t.totalAddOnCount, t.comment FROM Tourneys t INNER JOIN TourneyTypes tt ON (t.tourneyTypeId = tt.id) @@ -3609,7 +3609,7 @@ class Sql: self.query['insertTourney'] = """INSERT INTO Tourneys (tourneyTypeId, siteTourneyNo, entries, prizepool, startTime, endTime, tourneyName, matrixIdProcessed, - totalRebuys, totalAddons, comment, commentTs) + totalRebuyCount, totalAddOnCount, comment, commentTs) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) """ @@ -3622,8 +3622,8 @@ class Sql: endTime = %s, tourneyName = %s, matrixIdProcessed = %s, - totalRebuys = %s, - totalAddons = %s, + totalRebuyCount = %s, + totalAddonCount = %s, comment = %s, commentTs = %s WHERE id=%s diff --git a/pyfpdb/Tourney.py b/pyfpdb/Tourney.py index 281a6710..5cc5d03a 100644 --- a/pyfpdb/Tourney.py +++ b/pyfpdb/Tourney.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- #Copyright 2009 Stephane Alessio #This program is free software: you can redistribute it and/or modify @@ -73,10 +74,10 @@ class Tourney(object): self.subTourneyFee = None self.rebuyChips = 0 self.addOnChips = 0 - self.rebuyAmount = 0 - self.addOnAmount = 0 - self.totalRebuys = 0 - self.totalAddOns = 0 + self.rebuyAmount = 0 + self.addOnAmount = 0 + self.totalRebuyCount = 0 + self.totalAddOnCount = 0 self.koBounty = 0 self.tourneyComment = None self.players = [] @@ -121,8 +122,8 @@ class Tourney(object): ("ADDON CHIPS", self.addOnChips), ("REBUY AMOUNT", self.rebuyAmount), ("ADDON AMOUNT", self.addOnAmount), - ("TOTAL REBUYS", self.totalRebuys), - ("TOTAL ADDONS", self.totalAddOns), + ("TOTAL REBUYS", self.totalRebuyCount), + ("TOTAL ADDONS", self.totalAddOnCount), ("KO BOUNTY", self.koBounty), ("TOURNEY COMMENT", self.tourneyComment) ) From e46b0b7a0f4a9fd11e6584832c1c6e1342ccca6b Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 21 Jun 2010 17:12:20 +0200 Subject: [PATCH 100/253] renamed tourneyplayers to tourneysplayers in a few places --- pyfpdb/AlchemyMappings.py | 8 ++++---- pyfpdb/FulltiltToFpdb.py | 8 ++++---- pyfpdb/SummaryEverleaf.py | 7 ++++--- pyfpdb/TournamentTracker.py | 3 ++- pyfpdb/Tourney.py | 4 ++-- 5 files changed, 16 insertions(+), 14 deletions(-) diff --git a/pyfpdb/AlchemyMappings.py b/pyfpdb/AlchemyMappings.py index 7b9c20a3..86b78bd9 100644 --- a/pyfpdb/AlchemyMappings.py +++ b/pyfpdb/AlchemyMappings.py @@ -185,7 +185,7 @@ class HandInternal(DerivedStats): # fetch and update tourney players for hp in self.handPlayers: - tp = TourneyPlayer.get_or_create(session, tour.id, hp.playerId) + tp = TourneysPlayer.get_or_create(session, tour.id, hp.playerId) # FIXME: other TourneysPlayers should be added here session.flush() @@ -387,7 +387,7 @@ class TourneyType(MappedBase): return get_or_create(cls, session, **kwargs)[0] -class TourneyPlayer(MappedBase): +class TourneysPlayer(MappedBase): """Class reflecting TourneysPlayers db table""" @classmethod @@ -439,7 +439,7 @@ mapper (Gametype, gametypes_table, properties={ }) mapper (Player, players_table, properties={ 'playerHands': relation(HandPlayer, backref='player'), - 'playerTourney': relation(TourneyPlayer, backref='player'), + 'playerTourney': relation(TourneysPlayer, backref='player'), }) mapper (Site, sites_table, properties={ 'gametypes': relation(Gametype, backref = 'site'), @@ -457,7 +457,7 @@ mapper (Tourney, tourneys_table) mapper (TourneyType, tourney_types_table, properties={ 'tourneys': relation(Tourney, backref='type'), }) -mapper (TourneyPlayer, tourneys_players_table) +mapper (TourneysPlayer, tourneys_players_table) class LambdaKeyDict(defaultdict): """Operates like defaultdict but passes key argument to the factory function""" diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 1503e10d..b99cc073 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -66,7 +66,7 @@ class Fulltilt(HandHistoryConverter): ''', re.VERBOSE) re_Button = re.compile('^The button is in seat #(?P