-
Notifications
You must be signed in to change notification settings - Fork 0
/
John King-Table1-Details.js
1657 lines (1657 loc) · 301 KB
/
John King-Table1-Details.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var title = "Hand Details for John King at Table1";
var handFilename = "Table1-Details.html";
var data = [
{
id: 0,indent: 0,parent: null,handNum: "1",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "150.00",endAmt: "150.00",finalHand: "",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 1,indent: 1,parent: 0,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[6<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 2,indent: 0,parent: null,handNum: "2",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "150.00",endAmt: "150.00",finalHand: "",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 3,indent: 1,parent: 2,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 4,indent: 0,parent: null,handNum: "3",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "150.00",endAmt: "150.00",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 5,indent: 1,parent: 4,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "",
},
{
id: 6,indent: 0,parent: null,handNum: "4",wonOrLost: "1.00",wonNetOrLost: "0.50",startAmt: "150.00",endAmt: "150.50",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 7,indent: 1,parent: 6,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 8,indent: 0,parent: null,handNum: "5",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "150.50",endAmt: "150.00",finalHand: "",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 9,indent: 1,parent: 8,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 10,indent: 1,parent: 8,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, 5<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 11,indent: 0,parent: null,handNum: "6",wonOrLost: "-4.00",wonNetOrLost: "-4.00",startAmt: "150.00",endAmt: "146.00",finalHand: "Two Pair, 3's & 2's",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 12,indent: 1,parent: 11,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.00",potSizeToWin: "2.00",amountToPot: "200",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 13,indent: 1,parent: 11,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 14,indent: 1,parent: 11,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 15,indent: 1,parent: 11,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 16,indent: 0,parent: null,handNum: "7",wonOrLost: "-4.00",wonNetOrLost: "-4.00",startAmt: "146.00",endAmt: "142.00",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 17,indent: 1,parent: 16,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.00",potSizeToWin: "2.00",amountToPot: "200",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 18,indent: 1,parent: 16,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "12.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "7<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 19,indent: 1,parent: 16,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Fold",amount: "0.00",potSizeToWin: "18.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "6.00",boardCards: "7<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 20,indent: 0,parent: null,handNum: "8",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "142.00",endAmt: "142.00",finalHand: "",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 21,indent: 1,parent: 20,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "5.50",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♠</span>, Q<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 22,indent: 0,parent: null,handNum: "9",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "142.00",endAmt: "142.00",finalHand: "",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 23,indent: 1,parent: 22,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 24,indent: 0,parent: null,handNum: "10",wonOrLost: "26.58",wonNetOrLost: "13.54",startAmt: "142.00",endAmt: "155.54",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 25,indent: 1,parent: 24,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.02",potSizeToWin: "2.00",amountToPot: "200",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "",
},
{
id: 26,indent: 1,parent: 24,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "4.27",potSizeToWin: "8.54",amountToPot: "50",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "8<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 27,indent: 1,parent: 24,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Raise",amount: "24.00",potSizeToWin: "21.83",amountToPot: "109",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "4.75",boardCards: "8<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 28,indent: 0,parent: null,handNum: "11",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "155.54",endAmt: "154.04",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 29,indent: 1,parent: 28,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 30,indent: 1,parent: 28,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 31,indent: 1,parent: 28,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 32,indent: 1,parent: 28,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "",
},
{
id: 33,indent: 0,parent: null,handNum: "12",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "154.04",endAmt: "152.54",finalHand: "Pair, 10's",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 34,indent: 1,parent: 33,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 35,indent: 1,parent: 33,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.00",potSizeToWin: "5.00",amountToPot: "20",numPlayers: "4",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "",
},
{
id: 36,indent: 1,parent: 33,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "6.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "8<span style = 'font-size:125%; color: blue; '>♦</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 5<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 37,indent: 1,parent: 33,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "9.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 38,indent: 0,parent: null,handNum: "13",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "152.54",endAmt: "152.54",finalHand: "Two Pair, 9's & 3's",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 39,indent: 1,parent: 38,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "4.00",boardCards: "[3<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, 9<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 40,indent: 0,parent: null,handNum: "14",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "152.54",endAmt: "152.54",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 41,indent: 1,parent: 40,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 42,indent: 0,parent: null,handNum: "15",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "152.54",endAmt: "152.54",finalHand: "",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 43,indent: 1,parent: 42,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[K<span style = 'font-size:125%; color: blue; '>♦</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 44,indent: 0,parent: null,handNum: "16",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "152.54",endAmt: "152.54",finalHand: "Two Pair, 8's & 7's",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 45,indent: 1,parent: 44,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 46,indent: 0,parent: null,handNum: "17",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "152.54",endAmt: "152.54",finalHand: "A High",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 47,indent: 1,parent: 46,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[J<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>, 4<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 48,indent: 0,parent: null,handNum: "18",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "152.54",endAmt: "151.04",finalHand: "Three of a Kind, 9's",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 49,indent: 1,parent: 48,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 50,indent: 1,parent: 48,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "9.49",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "5.99",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 51,indent: 0,parent: null,handNum: "19",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "151.04",endAmt: "150.54",finalHand: "",position: "SB (1 of 6)",positionName: "SB",totalPlayers: "6",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 52,indent: 1,parent: 51,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "6",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 53,indent: 1,parent: 51,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "10.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "4.00",boardCards: "[3<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 54,indent: 0,parent: null,handNum: "20",wonOrLost: "-7.50",wonNetOrLost: "-7.50",startAmt: "150.54",endAmt: "143.04",finalHand: "",position: "Dealer (6 of 6)",positionName: "Dealer",totalPlayers: "6",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 55,indent: 1,parent: 54,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "7.50",potSizeToWin: "5.00",amountToPot: "150",numPlayers: "5",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 56,indent: 1,parent: 54,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "216.75",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Reraise",lastActionPlayer: "Justin A",lastActionAmount: "204.25",boardCards: "",
},
{
id: 57,indent: 0,parent: null,handNum: "21",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "143.04",endAmt: "143.04",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 58,indent: 1,parent: 57,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[Q<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♦</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 59,indent: 0,parent: null,handNum: "22",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "143.04",endAmt: "143.04",finalHand: "",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 60,indent: 1,parent: 59,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 61,indent: 0,parent: null,handNum: "23",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "143.04",endAmt: "143.04",finalHand: "Pair, 10's",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 62,indent: 1,parent: 61,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[7<span style = 'font-size:125%; color: blue; '>♣</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 63,indent: 0,parent: null,handNum: "24",wonOrLost: "25.88",wonNetOrLost: "13.94",startAmt: "143.04",endAmt: "156.98",finalHand: "Two Pair, Q's & 3's",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "Q<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♣</span>",holeCardsTier: "3",bigBlind: "1.50",runItTwice: "",holeCardsTier: "3",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 64,indent: 1,parent: 63,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.07",potSizeToWin: "2.00",amountToPot: "203",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "",
},
{
id: 65,indent: 1,parent: 63,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "10.14",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "9<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 66,indent: 1,parent: 63,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "10.14",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "9<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 67,indent: 1,parent: 63,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Bet",amount: "7.87",potSizeToWin: "10.14",amountToPot: "77",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "9<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 68,indent: 0,parent: null,handNum: "25",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "156.98",endAmt: "155.48",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 69,indent: 1,parent: 68,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 70,indent: 1,parent: 68,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "20.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Reraise",lastActionPlayer: "SudburyJay",lastActionAmount: "12.00",boardCards: "",
},
{
id: 71,indent: 0,parent: null,handNum: "26",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "155.48",endAmt: "154.98",finalHand: "",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 72,indent: 1,parent: 71,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 73,indent: 1,parent: 71,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "15.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "6.00",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♣</span>, 10<span style = 'font-size:125%; color: blue; '>♣</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 74,indent: 0,parent: null,handNum: "27",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "154.98",endAmt: "154.98",finalHand: "",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 75,indent: 1,parent: 74,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "6.00",boardCards: "",
},
{
id: 76,indent: 0,parent: null,handNum: "28",wonOrLost: "-4.06",wonNetOrLost: "-4.06",startAmt: "154.98",endAmt: "150.92",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 77,indent: 1,parent: 76,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.06",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 78,indent: 1,parent: 76,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "10.12",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "8<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 79,indent: 1,parent: 76,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "13.12",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "3.00",boardCards: "",
},
{
id: 80,indent: 0,parent: null,handNum: "29",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "150.92",endAmt: "150.92",finalHand: "",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 81,indent: 1,parent: 80,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 82,indent: 0,parent: null,handNum: "30",wonOrLost: "-8.55",wonNetOrLost: "-8.55",startAmt: "150.92",endAmt: "142.37",finalHand: "Pair, 5's",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "A<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♥</span>",holeCardsTier: "3",bigBlind: "1.50",runItTwice: "",holeCardsTier: "3",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 83,indent: 1,parent: 82,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.05",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 84,indent: 1,parent: 82,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "10.10",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "5<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 85,indent: 1,parent: 82,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "10.10",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "5<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 86,indent: 1,parent: 82,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "4.50",potSizeToWin: "14.60",amountToPot: "30",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "4.50",boardCards: "",
},
{
id: 87,indent: 1,parent: 82,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "19.10",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "5<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 88,indent: 0,parent: null,handNum: "31",wonOrLost: "13.50",wonNetOrLost: "9.50",startAmt: "142.37",endAmt: "151.87",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 89,indent: 1,parent: 88,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.00",potSizeToWin: "2.00",amountToPot: "200",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "",
},
{
id: 90,indent: 1,parent: 88,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "6.75",potSizeToWin: "13.50",amountToPot: "50",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "5<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♦</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 91,indent: 0,parent: null,handNum: "32",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "151.87",endAmt: "150.37",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 92,indent: 1,parent: 91,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 93,indent: 1,parent: 91,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 94,indent: 1,parent: 91,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "2<span style = 'font-size:125%; color: blue; '>♥</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 95,indent: 1,parent: 91,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 96,indent: 0,parent: null,handNum: "33",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "150.37",endAmt: "149.87",finalHand: "",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 97,indent: 1,parent: 96,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 98,indent: 1,parent: 96,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "5.00",boardCards: "[6<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, K<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 99,indent: 0,parent: null,handNum: "34",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "149.87",endAmt: "149.87",finalHand: "",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 100,indent: 1,parent: 99,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "5.00",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♥</span>, 6<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 101,indent: 0,parent: null,handNum: "35",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "149.87",endAmt: "149.87",finalHand: "Straight, J High",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 102,indent: 1,parent: 101,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 103,indent: 0,parent: null,handNum: "36",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "149.87",endAmt: "149.87",finalHand: "Two Pair, A's & K's",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 104,indent: 1,parent: 103,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, K<span style = 'font-size:125%; color: blue; '>♠</span>, K<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 105,indent: 0,parent: null,handNum: "37",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "149.87",endAmt: "149.87",finalHand: "",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 106,indent: 1,parent: 105,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 107,indent: 0,parent: null,handNum: "38",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "149.87",endAmt: "149.87",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 108,indent: 1,parent: 107,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[6<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♥</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 109,indent: 0,parent: null,handNum: "39",wonOrLost: "-18.25",wonNetOrLost: "-18.25",startAmt: "149.87",endAmt: "131.62",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 110,indent: 1,parent: 109,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 111,indent: 1,parent: 109,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "6.75",potSizeToWin: "5.00",amountToPot: "135",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 112,indent: 1,parent: 109,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "10.00",potSizeToWin: "18.50",amountToPot: "54",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 113,indent: 1,parent: 109,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "48.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "20.00",boardCards: "",
},
{
id: 114,indent: 0,parent: null,handNum: "40",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "131.62",endAmt: "131.12",finalHand: "Three of a Kind, A's",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 115,indent: 1,parent: 114,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 116,indent: 1,parent: 114,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "5.00",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♦</span>, 10<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 117,indent: 0,parent: null,handNum: "41",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "131.12",endAmt: "131.12",finalHand: "",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 118,indent: 1,parent: 117,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "13.50",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "5.00",boardCards: "[J<span style = 'font-size:125%; color: blue; '>♦</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 119,indent: 0,parent: null,handNum: "42",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "131.12",endAmt: "131.12",finalHand: "Two Pair, 5's & 4's",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 120,indent: 1,parent: 119,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 4<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 121,indent: 0,parent: null,handNum: "43",wonOrLost: "-15.75",wonNetOrLost: "-15.75",startAmt: "131.12",endAmt: "115.37",finalHand: "Pair, A's",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 122,indent: 1,parent: 121,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "6.00",potSizeToWin: "3.50",amountToPot: "171",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 123,indent: 1,parent: 121,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "9.75",potSizeToWin: "19.50",amountToPot: "50",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "7<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♣</span>, 4<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 124,indent: 1,parent: 121,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "58.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "CheckRaise",lastActionPlayer: "John P",lastActionAmount: "19.50",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♣</span>, 5<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 125,indent: 0,parent: null,handNum: "44",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "115.37",endAmt: "115.37",finalHand: "Pair, 4's",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 126,indent: 1,parent: 125,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[3<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 5<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 127,indent: 0,parent: null,handNum: "45",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "115.37",endAmt: "115.37",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 128,indent: 1,parent: 127,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[K<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, 6<span style = 'font-size:125%; color: blue; '>♣</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 129,indent: 0,parent: null,handNum: "46",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "145.37",endAmt: "143.87",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 130,indent: 1,parent: 129,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 131,indent: 1,parent: 129,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "6.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 132,indent: 1,parent: 129,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "6.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, 6<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 133,indent: 1,parent: 129,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "15.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "4.50",boardCards: "[5<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 134,indent: 0,parent: null,handNum: "47",wonOrLost: "-5.00",wonNetOrLost: "-5.00",startAmt: "143.87",endAmt: "138.87",finalHand: "",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 135,indent: 1,parent: 134,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 136,indent: 1,parent: 134,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "4.50",potSizeToWin: "15.00",amountToPot: "30",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "5.00",boardCards: "",
},
{
id: 137,indent: 1,parent: 134,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "30.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "10<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, K<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 138,indent: 1,parent: 134,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "33.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "3.00",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 139,indent: 0,parent: null,handNum: "48",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "138.87",endAmt: "138.87",finalHand: "",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 140,indent: 1,parent: 139,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "5.00",boardCards: "",
},
{
id: 141,indent: 0,parent: null,handNum: "49",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "138.87",endAmt: "138.87",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 142,indent: 1,parent: 141,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.50",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "4",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[J<span style = 'font-size:125%; color: blue; '>♦</span>, K<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 143,indent: 0,parent: null,handNum: "50",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "138.87",endAmt: "138.87",finalHand: "",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 144,indent: 1,parent: 143,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 4<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 145,indent: 0,parent: null,handNum: "51",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "138.87",endAmt: "138.87",finalHand: "",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 146,indent: 1,parent: 145,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 147,indent: 0,parent: null,handNum: "52",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "138.87",endAmt: "138.87",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 148,indent: 1,parent: 147,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[6<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♠</span>, K<span style = 'font-size:125%; color: blue; '>♠</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 149,indent: 0,parent: null,handNum: "53",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "138.87",endAmt: "137.37",finalHand: "",position: "BB (2 of 8)",positionName: "BB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 150,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 151,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "14.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Jeff",lastActionAmount: "5.25",boardCards: "[7<span style = 'font-size:125%; color: blue; '>♥</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 152,indent: 0,parent: null,handNum: "54",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "137.37",endAmt: "136.87",finalHand: "Two Pair, 10's & 4's",position: "SB (1 of 8)",positionName: "SB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 153,indent: 1,parent: 152,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 154,indent: 1,parent: 152,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "10.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "5.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♠</span>, 4<span style = 'font-size:125%; color: blue; '>♠</span>, 4<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 155,indent: 0,parent: null,handNum: "55",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "136.87",endAmt: "136.87",finalHand: "Two Pair, A's & Q's",position: "Dealer (8 of 8)",positionName: "Dealer",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 156,indent: 1,parent: 155,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Jeff",lastActionAmount: "1.50",boardCards: "[J<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>, Q<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 157,indent: 0,parent: null,handNum: "56",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "136.87",endAmt: "136.87",finalHand: "Two Pair, Q's & 3's",position: "Cutoff (7 of 8)",positionName: "Cutoff",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 158,indent: 1,parent: 157,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "5.45",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "3.45",boardCards: "[Q<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 159,indent: 0,parent: null,handNum: "57",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "136.87",endAmt: "136.87",finalHand: "",position: "Hijack (6 of 8)",positionName: "Hijack",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 160,indent: 1,parent: 159,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 161,indent: 0,parent: null,handNum: "58",wonOrLost: "-9.75",wonNetOrLost: "-9.75",startAmt: "136.87",endAmt: "127.12",finalHand: "",position: "UTG2 (5 of 8)",positionName: "UTG2",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 162,indent: 1,parent: 161,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.05",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 163,indent: 1,parent: 161,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "9.60",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 164,indent: 1,parent: 161,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "5.70",potSizeToWin: "15.30",amountToPot: "37",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "5.70",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>, 5<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 165,indent: 1,parent: 161,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Fold",amount: "0.00",potSizeToWin: "36.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "15.00",boardCards: "Q<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>, 5<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 166,indent: 0,parent: null,handNum: "59",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "127.12",endAmt: "127.12",finalHand: "",position: "UTG2 (5 of 9)",positionName: "UTG2",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 167,indent: 1,parent: 166,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.95",amountToPot: "0",numPlayers: "9",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "3.45",boardCards: "[3<span style = 'font-size:125%; color: blue; '>♦</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>, 4<span style = 'font-size:125%; color: blue; '>♣</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 168,indent: 0,parent: null,handNum: "60",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "127.12",endAmt: "127.12",finalHand: "",position: "MP1 (4 of 9)",positionName: "MP1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 169,indent: 1,parent: 168,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 170,indent: 0,parent: null,handNum: "61",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "127.12",endAmt: "127.12",finalHand: "Flush, As High",position: "UTG1 (3 of 9)",positionName: "UTG1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 171,indent: 1,parent: 170,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "9",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 172,indent: 0,parent: null,handNum: "62",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "127.12",endAmt: "125.62",finalHand: "",position: "BB (2 of 9)",positionName: "BB",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 173,indent: 1,parent: 172,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "9",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 174,indent: 1,parent: 172,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "11.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "6.00",boardCards: "",
},
{
id: 175,indent: 0,parent: null,handNum: "63",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "125.62",endAmt: "124.12",finalHand: "",position: "SB (1 of 9)",positionName: "SB",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 176,indent: 1,parent: 175,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "9",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 177,indent: 1,parent: 175,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.00",potSizeToWin: "6.50",amountToPot: "15",numPlayers: "5",numAllIns: "0",positionToLastAction: "4",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "",
},
{
id: 178,indent: 1,parent: 175,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "13.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "6.00",boardCards: "",
},
{
id: 179,indent: 0,parent: null,handNum: "64",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "124.12",endAmt: "124.12",finalHand: "",position: "Dealer (9 of 9)",positionName: "Dealer",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 180,indent: 1,parent: 179,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "9.49",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "5.99",boardCards: "[6<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 181,indent: 0,parent: null,handNum: "65",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "124.12",endAmt: "124.12",finalHand: "",position: "Cutoff (8 of 9)",positionName: "Cutoff",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 182,indent: 1,parent: 181,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 183,indent: 0,parent: null,handNum: "66",wonOrLost: "86.50",wonNetOrLost: "53.00",startAmt: "124.12",endAmt: "177.12",finalHand: "Three of a Kind, 10's",position: "Hijack (7 of 9)",positionName: "Hijack",totalPlayers: "9",holeCards: "10<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♣</span>",holeCardsTier: "2",bigBlind: "1.50",runItTwice: "",holeCardsTier: "2",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 184,indent: 1,parent: 183,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "4.50",potSizeToWin: "9.50",amountToPot: "47",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Reraise",lastActionPlayer: "John P",lastActionAmount: "4.50",boardCards: "",
},
{
id: 185,indent: 1,parent: 183,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "6.00",potSizeToWin: "28.50",amountToPot: "21",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "SudburyJay",lastActionAmount: "6.00",boardCards: "A<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 186,indent: 1,parent: 183,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "8.00",potSizeToWin: "48.50",amountToPot: "16",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "SudburyJay",lastActionAmount: "8.00",boardCards: "A<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 187,indent: 1,parent: 183,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Bet",amount: "15.00",potSizeToWin: "56.50",amountToPot: "26",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "A<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 6<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 188,indent: 0,parent: null,handNum: "67",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "177.12",endAmt: "177.12",finalHand: "",position: "MP2 (6 of 9)",positionName: "MP2",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 189,indent: 1,parent: 188,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 190,indent: 0,parent: null,handNum: "68",wonOrLost: "3.50",wonNetOrLost: "2.00",startAmt: "177.12",endAmt: "179.12",finalHand: "",position: "UTG2 (5 of 9)",positionName: "UTG2",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 191,indent: 1,parent: 190,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.00",potSizeToWin: "2.00",amountToPot: "200",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "",
},
{
id: 192,indent: 0,parent: null,handNum: "69",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "179.12",endAmt: "179.12",finalHand: "",position: "MP1 (4 of 9)",positionName: "MP1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 193,indent: 1,parent: 192,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♣</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 194,indent: 0,parent: null,handNum: "70",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "179.12",endAmt: "179.12",finalHand: "",position: "UTG1 (3 of 9)",positionName: "UTG1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 195,indent: 1,parent: 194,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "9",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 196,indent: 0,parent: null,handNum: "71",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "179.12",endAmt: "177.62",finalHand: "A High",position: "BB (2 of 9)",positionName: "BB",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 197,indent: 1,parent: 196,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "9",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 198,indent: 1,parent: 196,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "18.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "7.50",boardCards: "[7<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 199,indent: 0,parent: null,handNum: "72",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "177.62",endAmt: "177.12",finalHand: "Pair, A's",position: "SB (1 of 9)",positionName: "SB",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 200,indent: 1,parent: 199,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "9",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 201,indent: 1,parent: 199,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "17.12",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Reraise",lastActionPlayer: "SudburyJay",lastActionAmount: "11.00",boardCards: "[7<span style = 'font-size:125%; color: blue; '>♥</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 202,indent: 0,parent: null,handNum: "73",wonOrLost: "6.50",wonNetOrLost: "5.00",startAmt: "177.12",endAmt: "182.12",finalHand: "",position: "Dealer (9 of 9)",positionName: "Dealer",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 203,indent: 1,parent: 202,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "7.50",potSizeToWin: "5.00",amountToPot: "150",numPlayers: "5",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Jeff",lastActionAmount: "1.50",boardCards: "",
},
{
id: 204,indent: 0,parent: null,handNum: "74",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "182.12",endAmt: "180.62",finalHand: "",position: "Cutoff (8 of 9)",positionName: "Cutoff",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 205,indent: 1,parent: 204,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "5.00",amountToPot: "30",numPlayers: "6",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 206,indent: 1,parent: 204,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "13.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "6.50",boardCards: "9<span style = 'font-size:125%; color: blue; '>♠</span>, K<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♦</span>",
},
{
id: 207,indent: 0,parent: null,handNum: "75",wonOrLost: "3.50",wonNetOrLost: "2.00",startAmt: "180.62",endAmt: "182.62",finalHand: "",position: "Hijack (7 of 9)",positionName: "Hijack",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 208,indent: 1,parent: 207,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.05",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 209,indent: 0,parent: null,handNum: "76",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "182.62",endAmt: "182.62",finalHand: "",position: "MP2 (6 of 9)",positionName: "MP2",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 210,indent: 1,parent: 209,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "9.50",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "7.50",boardCards: "",
},
{
id: 211,indent: 0,parent: null,handNum: "77",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "182.62",endAmt: "182.62",finalHand: "",position: "UTG2 (5 of 9)",positionName: "UTG2",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 212,indent: 1,parent: 211,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "",
},
{
id: 213,indent: 0,parent: null,handNum: "78",wonOrLost: "-4.07",wonNetOrLost: "-4.07",startAmt: "182.62",endAmt: "178.55",finalHand: "",position: "MP1 (4 of 9)",positionName: "MP1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 214,indent: 1,parent: 213,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.07",potSizeToWin: "2.00",amountToPot: "203",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 215,indent: 1,parent: 213,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "81.16",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Reraise",lastActionPlayer: "Craig",lastActionAmount: "51.75",boardCards: "",
},
{
id: 216,indent: 0,parent: null,handNum: "79",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "178.55",endAmt: "178.55",finalHand: "Three of a Kind, 5's",position: "UTG1 (3 of 9)",positionName: "UTG1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 217,indent: 1,parent: 216,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "9",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[5<span style = 'font-size:125%; color: blue; '>♦</span>, 4<span style = 'font-size:125%; color: blue; '>♣</span>, K<span style = 'font-size:125%; color: blue; '>♣</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 218,indent: 0,parent: null,handNum: "80",wonOrLost: "6.50",wonNetOrLost: "5.00",startAmt: "178.55",endAmt: "183.55",finalHand: "",position: "BB (2 of 8)",positionName: "BB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 219,indent: 1,parent: 218,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 220,indent: 1,parent: 218,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "7.50",potSizeToWin: "6.50",amountToPot: "115",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 221,indent: 0,parent: null,handNum: "81",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "183.55",endAmt: "183.05",finalHand: "Three of a Kind, 6's",position: "SB (1 of 8)",positionName: "SB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 222,indent: 1,parent: 221,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 223,indent: 1,parent: 221,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "[9<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>, 6<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 224,indent: 0,parent: null,handNum: "82",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "183.05",endAmt: "183.05",finalHand: "Three of a Kind, J's",position: "Dealer (8 of 8)",positionName: "Dealer",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 225,indent: 1,parent: 224,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "6.00",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♣</span>, 10<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 226,indent: 0,parent: null,handNum: "83",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "183.05",endAmt: "183.05",finalHand: "",position: "Cutoff (7 of 8)",positionName: "Cutoff",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 227,indent: 1,parent: 226,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Craig",lastActionAmount: "5.00",boardCards: "",
},
{
id: 228,indent: 0,parent: null,handNum: "84",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "183.05",endAmt: "183.05",finalHand: "",position: "Hijack (6 of 8)",positionName: "Hijack",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 229,indent: 1,parent: 228,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♠</span>, K<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 230,indent: 0,parent: null,handNum: "85",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "183.05",endAmt: "183.05",finalHand: "",position: "UTG2 (5 of 8)",positionName: "UTG2",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 231,indent: 1,parent: 230,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "[J<span style = 'font-size:125%; color: blue; '>♣</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 232,indent: 0,parent: null,handNum: "86",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "183.05",endAmt: "183.05",finalHand: "",position: "MP1 (4 of 8)",positionName: "MP1",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 233,indent: 1,parent: 232,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♥</span>, 6<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 234,indent: 0,parent: null,handNum: "87",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "183.05",endAmt: "183.05",finalHand: "",position: "UTG1 (3 of 9)",positionName: "UTG1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 235,indent: 1,parent: 234,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "9",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[Q<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 236,indent: 0,parent: null,handNum: "88",wonOrLost: "-3.00",wonNetOrLost: "-3.00",startAmt: "183.05",endAmt: "180.05",finalHand: "",position: "BB (2 of 9)",positionName: "BB",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 237,indent: 1,parent: 236,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "9",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 238,indent: 1,parent: 236,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "4.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 239,indent: 1,parent: 236,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "1.50",potSizeToWin: "6.00",amountToPot: "25",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "6<span style = 'font-size:125%; color: blue; '>♠</span>, 4<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 240,indent: 1,parent: 236,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "9.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "6<span style = 'font-size:125%; color: blue; '>♠</span>, 4<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 241,indent: 1,parent: 236,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Fold",amount: "0.00",potSizeToWin: "18.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "9.00",boardCards: "6<span style = 'font-size:125%; color: blue; '>♠</span>, 4<span style = 'font-size:125%; color: blue; '>♥</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 242,indent: 0,parent: null,handNum: "89",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "180.05",endAmt: "179.55",finalHand: "",position: "SB (1 of 9)",positionName: "SB",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 243,indent: 1,parent: 242,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "9",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 244,indent: 1,parent: 242,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "5.00",boardCards: "",
},
{
id: 245,indent: 0,parent: null,handNum: "90",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "179.55",endAmt: "179.55",finalHand: "",position: "Dealer (9 of 9)",positionName: "Dealer",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 246,indent: 1,parent: 245,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "3.00",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 247,indent: 0,parent: null,handNum: "91",wonOrLost: "14.50",wonNetOrLost: "9.00",startAmt: "179.55",endAmt: "188.55",finalHand: "",position: "Cutoff (8 of 9)",positionName: "Cutoff",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 248,indent: 1,parent: 247,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Reraise",amount: "15.00",potSizeToWin: "9.00",amountToPot: "166",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "5.50",boardCards: "",
},
{
id: 249,indent: 0,parent: null,handNum: "92",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "188.55",endAmt: "188.55",finalHand: "",position: "Hijack (7 of 9)",positionName: "Hijack",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 250,indent: 1,parent: 249,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 251,indent: 0,parent: null,handNum: "93",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "188.55",endAmt: "188.55",finalHand: "",position: "MP2 (6 of 9)",positionName: "MP2",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 252,indent: 1,parent: 251,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 253,indent: 0,parent: null,handNum: "94",wonOrLost: "198.21",wonNetOrLost: "106.38",startAmt: "188.55",endAmt: "294.93",finalHand: "",position: "UTG2 (5 of 9)",positionName: "UTG2",totalPlayers: "9",holeCards: "A<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>",holeCardsTier: "3",bigBlind: "1.50",runItTwice: "",holeCardsTier: "3",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 254,indent: 1,parent: 253,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.05",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "",
},
{
id: 255,indent: 1,parent: 253,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "8.50",potSizeToWin: "14.15",amountToPot: "60",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "10<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 256,indent: 1,parent: 253,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "19.82",potSizeToWin: "59.47",amountToPot: "33",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "28.32",boardCards: "",
},
{
id: 257,indent: 1,parent: 253,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "79.29",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "10<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 258,indent: 1,parent: 253,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "CheckRaise",amount: "145.63",potSizeToWin: "138.75",amountToPot: "104",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Greg",lastActionAmount: "59.46",boardCards: "",
},
{
id: 259,indent: 0,parent: null,handNum: "95",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "294.93",endAmt: "294.93",finalHand: "Full House, A's over K's",position: "MP1 (4 of 9)",positionName: "MP1",totalPlayers: "9",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 260,indent: 1,parent: 259,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[A<span style = 'font-size:125%; color: blue; '>♣</span>, A<span style = 'font-size:125%; color: blue; '>♦</span>, 4<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 261,indent: 0,parent: null,handNum: "96",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "294.93",endAmt: "294.93",finalHand: "",position: "UTG1 (3 of 8)",positionName: "UTG1",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 262,indent: 1,parent: 261,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[K<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♠</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 263,indent: 0,parent: null,handNum: "97",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "294.93",endAmt: "293.43",finalHand: "",position: "BB (2 of 8)",positionName: "BB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 264,indent: 1,parent: 263,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 265,indent: 1,parent: 263,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "9.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "6.00",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 266,indent: 0,parent: null,handNum: "98",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "293.43",endAmt: "292.93",finalHand: "",position: "SB (1 of 8)",positionName: "SB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 267,indent: 1,parent: 266,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 268,indent: 1,parent: 266,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "4.00",boardCards: "[5<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♥</span>, 6<span style = 'font-size:125%; color: blue; '>♣</span>, J<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 269,indent: 0,parent: null,handNum: "99",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "292.93",endAmt: "292.93",finalHand: "",position: "Dealer (8 of 8)",positionName: "Dealer",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 270,indent: 1,parent: 269,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "4.50",boardCards: "",
},
{
id: 271,indent: 0,parent: null,handNum: "100",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "292.93",endAmt: "292.93",finalHand: "",position: "Cutoff (7 of 8)",positionName: "Cutoff",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 272,indent: 1,parent: 271,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.12",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Craig",lastActionAmount: "4.12",boardCards: "[A<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♣</span>, 6<span style = 'font-size:125%; color: blue; '>♣</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 273,indent: 0,parent: null,handNum: "101",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "292.93",endAmt: "292.93",finalHand: "",position: "Hijack (6 of 8)",positionName: "Hijack",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 274,indent: 1,parent: 273,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 275,indent: 0,parent: null,handNum: "102",wonOrLost: "-6.00",wonNetOrLost: "-6.00",startAmt: "292.93",endAmt: "286.93",finalHand: "",position: "UTG2 (5 of 8)",positionName: "UTG2",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 276,indent: 1,parent: 275,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "6.00",potSizeToWin: "3.50",amountToPot: "171",numPlayers: "7",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "",
},
{
id: 277,indent: 1,parent: 275,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "24.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "6<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 278,indent: 1,parent: 275,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Fold",amount: "0.00",potSizeToWin: "49.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Bet",lastActionPlayer: "Craig",lastActionAmount: "12.25",boardCards: "6<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>, [8<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 279,indent: 0,parent: null,handNum: "103",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "286.93",endAmt: "286.93",finalHand: "",position: "MP1 (4 of 8)",positionName: "MP1",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 280,indent: 1,parent: 279,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[K<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♣</span>, J<span style = 'font-size:125%; color: blue; '>♦</span>, Q<span style = 'font-size:125%; color: blue; '>♠</span>, A<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 281,indent: 0,parent: null,handNum: "104",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "286.93",endAmt: "286.93",finalHand: "",position: "UTG1 (3 of 8)",positionName: "UTG1",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 282,indent: 1,parent: 281,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "",
},
{
id: 283,indent: 0,parent: null,handNum: "105",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "286.93",endAmt: "285.43",finalHand: "",position: "BB (2 of 8)",positionName: "BB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 284,indent: 1,parent: 283,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 285,indent: 1,parent: 283,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "6.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 286,indent: 1,parent: 283,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "6.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "7<span style = 'font-size:125%; color: blue; '>♦</span>, 10<span style = 'font-size:125%; color: blue; '>♥</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 287,indent: 1,parent: 283,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "11.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Dave",lastActionAmount: "4.50",boardCards: "",
},
{
id: 288,indent: 0,parent: null,handNum: "106",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "285.43",endAmt: "284.93",finalHand: "Two Pair, 8's & 6's",position: "SB (1 of 8)",positionName: "SB",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 289,indent: 1,parent: 288,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "8",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 290,indent: 1,parent: 288,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Jeff",lastActionAmount: "1.50",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♣</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>, 6<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 291,indent: 0,parent: null,handNum: "107",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "284.93",endAmt: "284.93",finalHand: "",position: "Dealer (8 of 8)",positionName: "Dealer",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 292,indent: 1,parent: 291,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "17.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "3",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "5.00",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 293,indent: 0,parent: null,handNum: "108",wonOrLost: "21.54",wonNetOrLost: "11.02",startAmt: "284.93",endAmt: "295.95",finalHand: "Two Pair, 8's & 3's",position: "Cutoff (7 of 8)",positionName: "Cutoff",totalPlayers: "8",holeCards: "8<span style = 'font-size:125%; color: blue; '>♦</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>",holeCardsTier: "3",bigBlind: "1.50",runItTwice: "",holeCardsTier: "3",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 294,indent: 1,parent: 293,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.06",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 295,indent: 1,parent: 293,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "8.62",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 296,indent: 1,parent: 293,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "8.62",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 297,indent: 1,parent: 293,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Call",amount: "6.46",potSizeToWin: "15.08",amountToPot: "42",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "6.46",boardCards: "3<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♥</span>",
},
{
id: 298,indent: 0,parent: null,handNum: "109",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "295.95",endAmt: "295.95",finalHand: "",position: "Hijack (6 of 8)",positionName: "Hijack",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 299,indent: 1,parent: 298,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "6.00",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, K<span style = 'font-size:125%; color: blue; '>♥</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 300,indent: 0,parent: null,handNum: "110",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "295.95",endAmt: "295.95",finalHand: "",position: "UTG2 (5 of 8)",positionName: "UTG2",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 301,indent: 1,parent: 300,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "[4<span style = 'font-size:125%; color: blue; '>♣</span>, 6<span style = 'font-size:125%; color: blue; '>♣</span>, K<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 302,indent: 0,parent: null,handNum: "111",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "295.95",endAmt: "295.95",finalHand: "",position: "MP1 (4 of 8)",positionName: "MP1",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 303,indent: 1,parent: 302,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "3.50",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "[10<span style = 'font-size:125%; color: blue; '>♠</span>, 6<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, 7<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 304,indent: 0,parent: null,handNum: "112",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "295.95",endAmt: "295.95",finalHand: "Straight, K High",position: "UTG1 (3 of 8)",positionName: "UTG1",totalPlayers: "8",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 305,indent: 1,parent: 304,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "[K<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>, 9<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 306,indent: 0,parent: null,handNum: "113",wonOrLost: "1.00",wonNetOrLost: "0.50",startAmt: "295.95",endAmt: "296.45",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 307,indent: 1,parent: 306,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 308,indent: 0,parent: null,handNum: "114",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "296.45",endAmt: "295.95",finalHand: "",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 309,indent: 1,parent: 308,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 310,indent: 1,parent: 308,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "5.00",boardCards: "[Q<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>, 10<span style = 'font-size:125%; color: blue; '>♠</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 311,indent: 0,parent: null,handNum: "115",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "295.95",endAmt: "295.95",finalHand: "",position: "Dealer (7 of 7)",positionName: "Dealer",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 312,indent: 1,parent: 311,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "8.49",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Dave",lastActionAmount: "4.99",boardCards: "[5<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♠</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 313,indent: 0,parent: null,handNum: "116",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "295.95",endAmt: "295.95",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 314,indent: 1,parent: 313,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "5.50",boardCards: "",
},
{
id: 315,indent: 0,parent: null,handNum: "117",wonOrLost: "10.10",wonNetOrLost: "6.05",startAmt: "295.95",endAmt: "302.00",finalHand: "A High",position: "Hijack (5 of 7)",positionName: "Hijack",totalPlayers: "7",holeCards: "A<span style = 'font-size:125%; color: blue; '>♥</span>, 8<span style = 'font-size:125%; color: blue; '>♥</span>",holeCardsTier: "5",bigBlind: "1.50",runItTwice: "",holeCardsTier: "5",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 316,indent: 1,parent: 315,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.05",potSizeToWin: "2.00",amountToPot: "202",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 317,indent: 1,parent: 315,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "10.10",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 318,indent: 1,parent: 315,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "10.10",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>, 4<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 319,indent: 1,parent: 315,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "10.10",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "3<span style = 'font-size:125%; color: blue; '>♠</span>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, 7<span style = 'font-size:125%; color: blue; '>♣</span>, 4<span style = 'font-size:125%; color: blue; '>♠</span>, J<span style = 'font-size:125%; color: blue; '>♣</span>",
},
{
id: 320,indent: 0,parent: null,handNum: "118",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "302.00",endAmt: "302.00",finalHand: "",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 321,indent: 1,parent: 320,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Craig",lastActionAmount: "1.50",boardCards: "[8<span style = 'font-size:125%; color: blue; '>♦</span>, 9<span style = 'font-size:125%; color: blue; '>♦</span>, 2<span style = 'font-size:125%; color: blue; '>♥</span>, Q<span style = 'font-size:125%; color: blue; '>♣</span>, 4<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 322,indent: 0,parent: null,handNum: "119",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "302.00",endAmt: "302.00",finalHand: "",position: "UTG1 (3 of 7)",positionName: "UTG1",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 323,indent: 1,parent: 322,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John P",lastActionAmount: "1.50",boardCards: "",
},
{
id: 324,indent: 0,parent: null,handNum: "120",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "302.00",endAmt: "300.50",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 325,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "BigBlind",amount: "1.50",potSizeToWin: "0.50",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 326,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "4.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 327,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "4.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "9<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>, K<span style = 'font-size:125%; color: blue; '>♠</span>",
},
{
id: 328,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "10.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "3.00",boardCards: "[3<span style = 'font-size:125%; color: blue; '>♦</span>, 5<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 329,indent: 0,parent: null,handNum: "121",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "300.50",endAmt: "300.00",finalHand: "",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "",holeCardsTier: "",bigBlind: "1.50",runItTwice: "",holeCardsTier: "",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 330,indent: 1,parent: 329,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 331,indent: 1,parent: 329,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "5.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "3.00",boardCards: "[2<span style = 'font-size:125%; color: blue; '>♠</span>, 3<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{