-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDave-Table1-Details.js
4234 lines (4234 loc) · 751 KB
/
Dave-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 Dave at Table1";
var handFilename = "Table1-Details.html";
var data = [
{
id: 0,indent: 0,parent: null,handNum: "1",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "150.00",endAmt: "148.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: 1,indent: 1,parent: 0,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: 2,indent: 1,parent: 0,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: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 3,indent: 1,parent: 0,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: "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: 4,indent: 1,parent: 0,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "SudburyJay",lastActionAmount: "3.00",boardCards: "",
},
{
id: 5,indent: 0,parent: null,handNum: "2",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "148.50",endAmt: "148.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: 6,indent: 1,parent: 5,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: 7,indent: 1,parent: 5,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: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "4.50",boardCards: "",
},
{
id: 8,indent: 0,parent: null,handNum: "3",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "148.00",endAmt: "148.00",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: 9,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: "6.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "4.50",boardCards: "",
},
{
id: 10,indent: 0,parent: null,handNum: "4",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "148.00",endAmt: "148.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: 11,indent: 1,parent: 10,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: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 12,indent: 0,parent: null,handNum: "5",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "148.00",endAmt: "148.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: 13,indent: 1,parent: 12,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: "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: 14,indent: 0,parent: null,handNum: "6",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "148.00",endAmt: "148.00",finalHand: "Two Pair, 3's & 2'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: 15,indent: 1,parent: 14,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: "Greg",lastActionAmount: "1.50",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: "0.00",wonNetOrLost: "0.00",startAmt: "148.00",endAmt: "148.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: 17,indent: 1,parent: 16,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: "Alex W",lastActionAmount: "1.50",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: 18,indent: 0,parent: null,handNum: "8",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "148.00",endAmt: "146.50",finalHand: "",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "5<span style = 'font-size:125%; color: blue; '>♣</span>, 3<span style = 'font-size:125%; color: blue; '>♦</span>",holeCardsTier: "10",bigBlind: "1.50",runItTwice: "",holeCardsTier: "10",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 19,indent: 1,parent: 18,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: 20,indent: 1,parent: 18,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "12.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",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: 21,indent: 0,parent: null,handNum: "9",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "146.50",endAmt: "145.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: 22,indent: 1,parent: 21,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: 23,indent: 1,parent: 21,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: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 24,indent: 1,parent: 21,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: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "3.50",boardCards: "",
},
{
id: 25,indent: 0,parent: null,handNum: "10",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.00",endAmt: "145.00",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: 26,indent: 1,parent: 25,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.02",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.02",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: 27,indent: 0,parent: null,handNum: "11",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.00",endAmt: "145.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: 28,indent: 1,parent: 27,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: "John King",lastActionAmount: "1.50",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: 29,indent: 0,parent: null,handNum: "12",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.00",endAmt: "145.00",finalHand: "Pair, 10'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: 30,indent: 1,parent: 29,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: "Justin A",lastActionAmount: "1.50",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>, 2<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 31,indent: 0,parent: null,handNum: "13",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.00",endAmt: "145.00",finalHand: "Two Pair, 9's & 3's",position: "MP1 (4 of 7)",positionName: "MP1",totalPlayers: "7",holeCards: "9<span style = 'font-size:125%; color: blue; '>♦</span>, A<span style = 'font-size:125%; color: blue; '>♣</span>",holeCardsTier: "9",bigBlind: "1.50",runItTwice: "",holeCardsTier: "9",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 32,indent: 1,parent: 31,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: "Greg",lastActionAmount: "1.50",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: 33,indent: 0,parent: null,handNum: "14",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.00",endAmt: "145.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: 34,indent: 1,parent: 33,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: "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: 35,indent: 0,parent: null,handNum: "15",wonOrLost: "-45.25",wonNetOrLost: "-45.25",startAmt: "145.00",endAmt: "99.75",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: 36,indent: 1,parent: 35,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: 37,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "8.00",amountToPot: "18",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "3.00",boardCards: "",
},
{
id: 38,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "9.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 39,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "3.15",potSizeToWin: "12.65",amountToPot: "24",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Greg",lastActionAmount: "3.15",boardCards: "",
},
{
id: 40,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Bet",amount: "10.90",potSizeToWin: "15.80",amountToPot: "68",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 41,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "28.20",potSizeToWin: "65.80",amountToPot: "42",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "39.10",boardCards: "",
},
{
id: 42,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "94.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 43,indent: 1,parent: 35,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Fold",amount: "0.00",potSizeToWin: "124.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Greg",lastActionAmount: "30.00",boardCards: "",
},
{
id: 44,indent: 0,parent: null,handNum: "16",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "99.75",endAmt: "99.25",finalHand: "Two Pair, 8's & 7'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: 45,indent: 1,parent: 44,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: 46,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: "6.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "3.00",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: 47,indent: 0,parent: null,handNum: "17",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "99.25",endAmt: "99.25",finalHand: "A High",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: 48,indent: 1,parent: 47,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: "Greg",lastActionAmount: "4.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: 49,indent: 0,parent: null,handNum: "18",wonOrLost: "-99.25",wonNetOrLost: "-99.25",startAmt: "99.25",endAmt: "0.00",finalHand: "Three of a Kind, 9's",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "Q<span style = 'font-size:125%; color: blue; '>♠</span>, A<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: 50,indent: 1,parent: 49,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "5.99",potSizeToWin: "3.50",amountToPot: "171",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 51,indent: 1,parent: 49,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "10.48",potSizeToWin: "13.98",amountToPot: "74",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 52,indent: 1,parent: 49,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "10.48",potSizeToWin: "45.42",amountToPot: "23",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "CheckRaise",lastActionPlayer: "Justin A",lastActionAmount: "20.96",boardCards: "",
},
{
id: 53,indent: 1,parent: 49,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Bet",amount: "41.92",potSizeToWin: "55.90",amountToPot: "74",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 54,indent: 1,parent: 49,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "CallAllIn",amount: "30.38",potSizeToWin: "170.12",amountToPot: "17",numPlayers: "2",numAllIns: "1",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "30.38",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: 55,indent: 0,parent: null,handNum: "21",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: 56,indent: 1,parent: 55,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: "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: 57,indent: 0,parent: null,handNum: "22",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: 58,indent: 1,parent: 57,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: 59,indent: 0,parent: null,handNum: "23",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "150.50",endAmt: "149.00",finalHand: "Pair, 10's",position: "SB (1 of 7)",positionName: "SB",totalPlayers: "7",holeCards: "8<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>",holeCardsTier: "10",bigBlind: "1.50",runItTwice: "",holeCardsTier: "10",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: "SmallBlind",amount: "0.50",potSizeToWin: "0.00",amountToPot: "",numPlayers: "7",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",boardCards: "",
},
{
id: 61,indent: 1,parent: 59,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.00",potSizeToWin: "3.50",amountToPot: "28",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 62,indent: 1,parent: 59,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: "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>",
},
{
id: 63,indent: 1,parent: 59,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "8.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Bet",lastActionPlayer: "SudburyJay",lastActionAmount: "2.00",boardCards: "[Q<span style = 'font-size:125%; color: blue; '>♣</span>, 9<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 64,indent: 0,parent: null,handNum: "24",wonOrLost: "-11.94",wonNetOrLost: "-11.94",startAmt: "149.00",endAmt: "137.06",finalHand: "Two Pair, Q'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: 65,indent: 1,parent: 64,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "4.07",potSizeToWin: "6.07",amountToPot: "67",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.07",boardCards: "",
},
{
id: 66,indent: 1,parent: 64,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: 67,indent: 1,parent: 64,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: 68,indent: 1,parent: 64,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Call",amount: "7.87",potSizeToWin: "18.01",amountToPot: "43",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John King",lastActionAmount: "7.87",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: 69,indent: 0,parent: null,handNum: "25",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "137.06",endAmt: "137.06",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: 70,indent: 1,parent: 69,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: "2",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "3.00",boardCards: "",
},
{
id: 71,indent: 0,parent: null,handNum: "26",wonOrLost: "41.00",wonNetOrLost: "28.00",startAmt: "137.06",endAmt: "165.06",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: 72,indent: 1,parent: 71,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: "Justin A",lastActionAmount: "1.50",boardCards: "",
},
{
id: 73,indent: 1,parent: 71,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "7.00",potSizeToWin: "20.00",amountToPot: "35",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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>",
},
{
id: 74,indent: 1,parent: 71,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "41.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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>",
},
{
id: 75,indent: 1,parent: 71,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Bet",amount: "23.50",potSizeToWin: "41.00",amountToPot: "57",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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: 76,indent: 0,parent: null,handNum: "27",wonOrLost: "3.50",wonNetOrLost: "2.00",startAmt: "165.06",endAmt: "167.06",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: 77,indent: 1,parent: 76,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "6.00",potSizeToWin: "2.00",amountToPot: "300",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 78,indent: 0,parent: null,handNum: "28",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "167.06",endAmt: "167.06",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: 79,indent: 1,parent: 78,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: "Alex W",lastActionAmount: "1.50",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: 80,indent: 0,parent: null,handNum: "29",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "167.06",endAmt: "165.56",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: 81,indent: 1,parent: 80,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: 82,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: "6.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "4.50",boardCards: "",
},
{
id: 83,indent: 0,parent: null,handNum: "30",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "165.56",endAmt: "165.06",finalHand: "Pair, 5'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: 84,indent: 1,parent: 83,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: 85,indent: 1,parent: 83,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "10.10",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.05",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: 86,indent: 0,parent: null,handNum: "31",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "165.06",endAmt: "165.06",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: 87,indent: 1,parent: 86,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: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.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: 88,indent: 0,parent: null,handNum: "32",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "165.06",endAmt: "165.06",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: 89,indent: 1,parent: 88,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: "John King",lastActionAmount: "1.50",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: 90,indent: 0,parent: null,handNum: "33",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "165.06",endAmt: "165.06",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: 91,indent: 1,parent: 90,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: "Justin A",lastActionAmount: "1.50",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: 92,indent: 0,parent: null,handNum: "34",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "165.06",endAmt: "165.06",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: 93,indent: 1,parent: 92,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: "Greg",lastActionAmount: "1.50",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: 94,indent: 0,parent: null,handNum: "35",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "165.06",endAmt: "165.06",finalHand: "Straight, J 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: 95,indent: 1,parent: 94,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: "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: 96,indent: 0,parent: null,handNum: "36",wonOrLost: "-19.00",wonNetOrLost: "-19.00",startAmt: "165.06",endAmt: "146.06",finalHand: "Two Pair, A's & K's",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "Q<span style = 'font-size:125%; color: blue; '>♠</span>, Q<span style = 'font-size:125%; color: blue; '>♦</span>",holeCardsTier: "1",bigBlind: "1.50",runItTwice: "",holeCardsTier: "1",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: "BigBlind",amount: "1.50",potSizeToWin: "0.50",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: "Reraise",amount: "7.50",potSizeToWin: "6.50",amountToPot: "115",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "3.00",boardCards: "",
},
{
id: 99,indent: 1,parent: 96,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "20.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 100,indent: 1,parent: 96,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "20.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 101,indent: 1,parent: 96,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "10.00",potSizeToWin: "30.00",amountToPot: "33",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "10.00",boardCards: "",
},
{
id: 102,indent: 1,parent: 96,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "40.00",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 103,indent: 0,parent: null,handNum: "37",wonOrLost: "4.50",wonNetOrLost: "3.00",startAmt: "146.06",endAmt: "149.06",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: 104,indent: 1,parent: 103,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: 105,indent: 1,parent: 103,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "5.50",potSizeToWin: "3.50",amountToPot: "157",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 106,indent: 0,parent: null,handNum: "38",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "149.06",endAmt: "149.06",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: 107,indent: 1,parent: 106,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: "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: 108,indent: 0,parent: null,handNum: "39",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "149.06",endAmt: "147.56",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: 109,indent: 1,parent: 108,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "3.50",amountToPot: "42",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 110,indent: 1,parent: 108,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: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "6.75",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: 111,indent: 0,parent: null,handNum: "40",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "147.56",endAmt: "147.56",finalHand: "Three of a Kind, 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: 112,indent: 1,parent: 111,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: "Justin A",lastActionAmount: "1.50",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: 113,indent: 0,parent: null,handNum: "41",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "147.56",endAmt: "147.56",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: 114,indent: 1,parent: 113,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: "Greg",lastActionAmount: "1.50",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: 115,indent: 0,parent: null,handNum: "42",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "147.56",endAmt: "147.56",finalHand: "Two Pair, 5's & 4's",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: 116,indent: 1,parent: 115,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: "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: 117,indent: 0,parent: null,handNum: "43",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "147.56",endAmt: "146.06",finalHand: "Pair, A'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: 118,indent: 1,parent: 117,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: 119,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: "15.00",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "6.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>, 9<span style = 'font-size:125%; color: blue; '>♣</span>, 5<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 120,indent: 0,parent: null,handNum: "44",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "146.06",endAmt: "145.56",finalHand: "Pair, 4'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: 121,indent: 1,parent: 120,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: 122,indent: 1,parent: 120,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: "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: 123,indent: 0,parent: null,handNum: "45",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.56",endAmt: "145.56",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: 124,indent: 1,parent: 123,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: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "3.00",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: 125,indent: 0,parent: null,handNum: "46",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.56",endAmt: "145.56",finalHand: "",position: "Cutoff (6 of 7)",positionName: "Cutoff",totalPlayers: "7",holeCards: "4<span style = 'font-size:125%; color: blue; '>♦</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>",holeCardsTier: "10",bigBlind: "1.50",runItTwice: "",holeCardsTier: "10",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: "5.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",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>, 5<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 127,indent: 0,parent: null,handNum: "47",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.56",endAmt: "145.56",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: 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: "5.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",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>, 8<span style = 'font-size:125%; color: blue; '>♠</span>]",
},
{
id: 129,indent: 0,parent: null,handNum: "48",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "145.56",endAmt: "145.56",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: 130,indent: 1,parent: 129,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: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "5.00",boardCards: "",
},
{
id: 131,indent: 0,parent: null,handNum: "49",wonOrLost: "-9.00",wonNetOrLost: "-9.00",startAmt: "145.56",endAmt: "136.56",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: 132,indent: 1,parent: 131,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "2.00",amountToPot: "75",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 133,indent: 1,parent: 131,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "7.50",potSizeToWin: "23.00",amountToPot: "32",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "9.00",boardCards: "",
},
{
id: 134,indent: 1,parent: 131,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "30.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 135,indent: 1,parent: 131,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Fold",amount: "0.00",potSizeToWin: "45.75",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "15.25",boardCards: "",
},
{
id: 136,indent: 0,parent: null,handNum: "50",wonOrLost: "-12.00",wonNetOrLost: "-12.00",startAmt: "136.56",endAmt: "124.56",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: 137,indent: 1,parent: 136,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: 138,indent: 1,parent: 136,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "7.50",potSizeToWin: "13.50",amountToPot: "55",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "8.50",boardCards: "",
},
{
id: 139,indent: 1,parent: 136,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "3.00",potSizeToWin: "24.00",amountToPot: "12",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "3.00",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>",
},
{
id: 140,indent: 1,parent: 136,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Fold",amount: "0.00",potSizeToWin: "40.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "13.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: 141,indent: 0,parent: null,handNum: "51",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "124.56",endAmt: "124.06",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: 142,indent: 1,parent: 141,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: 143,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: "9.50",amountToPot: "0",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "3.75",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: 144,indent: 0,parent: null,handNum: "52",wonOrLost: "-3.75",wonNetOrLost: "-3.75",startAmt: "124.06",endAmt: "120.31",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: 145,indent: 1,parent: 144,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "3.75",potSizeToWin: "5.75",amountToPot: "65",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "3.75",boardCards: "",
},
{
id: 146,indent: 1,parent: 144,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "27.25",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Reraise",lastActionPlayer: "SudburyJay",lastActionAmount: "10.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: 147,indent: 0,parent: null,handNum: "53",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "120.31",endAmt: "120.31",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: 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: "14.00",amountToPot: "0",numPlayers: "7",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: 149,indent: 0,parent: null,handNum: "54",wonOrLost: "-55.50",wonNetOrLost: "-55.50",startAmt: "120.31",endAmt: "64.81",finalHand: "Two Pair, 10's & 4's",position: "Hijack (6 of 8)",positionName: "Hijack",totalPlayers: "8",holeCards: "7<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>",holeCardsTier: "10",bigBlind: "1.50",runItTwice: "",holeCardsTier: "10",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: "Call",amount: "1.50",potSizeToWin: "2.00",amountToPot: "75",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "",
},
{
id: 151,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "4.00",potSizeToWin: "14.50",amountToPot: "27",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "5.50",boardCards: "",
},
{
id: 152,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "7.50",potSizeToWin: "18.50",amountToPot: "40",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 153,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "10.50",potSizeToWin: "44.00",amountToPot: "23",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "18.00",boardCards: "",
},
{
id: 154,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "54.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 155,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "CheckRaise",amount: "32.00",potSizeToWin: "62.50",amountToPot: "51",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "8.00",boardCards: "",
},
{
id: 156,indent: 1,parent: 149,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "118.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 157,indent: 0,parent: null,handNum: "55",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "64.81",endAmt: "64.81",finalHand: "Two Pair, A's & Q's",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: 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: "2.00",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",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: 159,indent: 0,parent: null,handNum: "56",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "144.81",endAmt: "144.81",finalHand: "Two Pair, Q's & 3's",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: 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: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",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: 161,indent: 0,parent: null,handNum: "57",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "144.81",endAmt: "144.81",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: 162,indent: 1,parent: 161,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: "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: 163,indent: 0,parent: null,handNum: "58",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "144.81",endAmt: "143.31",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: 164,indent: 1,parent: 163,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: 165,indent: 1,parent: 163,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "9.60",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.05",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.50",wonNetOrLost: "-0.50",startAmt: "143.31",endAmt: "142.81",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: 167,indent: 1,parent: 166,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: 168,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: "10.40",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",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: 169,indent: 0,parent: null,handNum: "60",wonOrLost: "14.00",wonNetOrLost: "8.00",startAmt: "142.81",endAmt: "150.81",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: 170,indent: 1,parent: 169,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: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 171,indent: 1,parent: 169,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "7.00",potSizeToWin: "14.00",amountToPot: "50",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 172,indent: 0,parent: null,handNum: "61",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "150.81",endAmt: "150.81",finalHand: "Flush, As High",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: 173,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: "3.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "2",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: 174,indent: 0,parent: null,handNum: "62",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "150.81",endAmt: "149.31",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: 175,indent: 1,parent: 174,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "3.50",amountToPot: "42",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 176,indent: 1,parent: 174,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: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "SudburyJay",lastActionAmount: "6.00",boardCards: "",
},
{
id: 177,indent: 0,parent: null,handNum: "63",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "149.31",endAmt: "147.81",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: 178,indent: 1,parent: 177,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "3.50",amountToPot: "42",numPlayers: "7",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Justin A",lastActionAmount: "1.50",boardCards: "",
},
{
id: 179,indent: 1,parent: 177,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: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Justin A",lastActionAmount: "6.00",boardCards: "",
},
{
id: 180,indent: 0,parent: null,handNum: "64",wonOrLost: "19.47",wonNetOrLost: "13.48",startAmt: "147.81",endAmt: "161.29",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: 181,indent: 1,parent: 180,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "5.99",potSizeToWin: "3.50",amountToPot: "171",numPlayers: "8",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Jeff",lastActionAmount: "1.50",boardCards: "",
},
{
id: 182,indent: 1,parent: 180,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "9.73",potSizeToWin: "19.47",amountToPot: "49",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 183,indent: 0,parent: null,handNum: "65",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "161.29",endAmt: "161.29",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: 184,indent: 1,parent: 183,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: "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: 185,indent: 0,parent: null,handNum: "66",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "161.29",endAmt: "161.29",finalHand: "Three of a Kind, 10'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: 186,indent: 1,parent: 185,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: "Alex W",lastActionAmount: "1.50",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: 187,indent: 0,parent: null,handNum: "67",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "161.29",endAmt: "159.79",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: 188,indent: 1,parent: 187,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: 189,indent: 1,parent: 187,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: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "8.50",boardCards: "",
},
{
id: 190,indent: 0,parent: null,handNum: "68",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "159.79",endAmt: "159.29",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: 191,indent: 1,parent: 190,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: 192,indent: 1,parent: 190,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "6.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.00",boardCards: "",
},
{
id: 193,indent: 0,parent: null,handNum: "69",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "159.29",endAmt: "159.29",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: 194,indent: 1,parent: 193,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: "3",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: 195,indent: 0,parent: null,handNum: "70",wonOrLost: "68.00",wonNetOrLost: "44.50",startAmt: "159.29",endAmt: "203.79",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: 196,indent: 1,parent: 195,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "6.50",potSizeToWin: "10.00",amountToPot: "65",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Jeff",lastActionAmount: "6.50",boardCards: "",
},
{
id: 197,indent: 1,parent: 195,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "34.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 198,indent: 1,parent: 195,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "17.00",potSizeToWin: "51.00",amountToPot: "33",numPlayers: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "17.00",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>",
},
{
id: 199,indent: 1,parent: 195,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Bet",amount: "37.00",potSizeToWin: "68.00",amountToPot: "54",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 200,indent: 0,parent: null,handNum: "71",wonOrLost: "-7.50",wonNetOrLost: "-7.50",startAmt: "203.79",endAmt: "196.29",finalHand: "A High",position: "Hijack (7 of 9)",positionName: "Hijack",totalPlayers: "9",holeCards: "Q<span style = 'font-size:125%; color: blue; '>♥</span>, K<span style = 'font-size:125%; color: blue; '>♠</span>",holeCardsTier: "4",bigBlind: "1.50",runItTwice: "",holeCardsTier: "4",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 201,indent: 1,parent: 200,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "7.50",potSizeToWin: "11.00",amountToPot: "68",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "7.50",boardCards: "",
},
{
id: 202,indent: 1,parent: 200,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "18.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 203,indent: 1,parent: 200,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "18.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 204,indent: 1,parent: 200,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Check",amount: "0.00",potSizeToWin: "18.50",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 205,indent: 0,parent: null,handNum: "72",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "196.29",endAmt: "196.29",finalHand: "Pair, A's",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: 206,indent: 1,parent: 205,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: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Jeff",lastActionAmount: "4.12",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: 207,indent: 0,parent: null,handNum: "73",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "196.29",endAmt: "194.79",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: 208,indent: 1,parent: 207,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "2.00",amountToPot: "75",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Jeff",lastActionAmount: "1.50",boardCards: "",
},
{
id: 209,indent: 1,parent: 207,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "12.50",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "7.50",boardCards: "",
},
{
id: 210,indent: 0,parent: null,handNum: "74",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "194.79",endAmt: "194.79",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: 211,indent: 1,parent: 210,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: "9",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.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: 212,indent: 0,parent: null,handNum: "75",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "194.79",endAmt: "194.79",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: 213,indent: 1,parent: 212,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: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 214,indent: 0,parent: null,handNum: "76",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "194.79",endAmt: "193.29",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: 215,indent: 1,parent: 214,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: 216,indent: 1,parent: 214,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: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "John P",lastActionAmount: "7.50",boardCards: "",
},
{
id: 217,indent: 0,parent: null,handNum: "77",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "193.29",endAmt: "192.79",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: 218,indent: 1,parent: 217,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: 219,indent: 1,parent: 217,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "13.00",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Jeff",lastActionAmount: "8.00",boardCards: "",
},
{
id: 220,indent: 0,parent: null,handNum: "78",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "192.79",endAmt: "192.79",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: 221,indent: 1,parent: 220,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "29.41",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "Reraise",lastActionPlayer: "Jeff",lastActionAmount: "11.67",boardCards: "",
},
{
id: 222,indent: 0,parent: null,handNum: "79",wonOrLost: "272.91",wonNetOrLost: "140.08",startAmt: "192.79",endAmt: "332.87",finalHand: "Three of a Kind, 5's",position: "Cutoff (8 of 9)",positionName: "Cutoff",totalPlayers: "9",holeCards: "5<span style = 'font-size:125%; color: blue; '>♠</span>, 5<span style = 'font-size:125%; color: blue; '>♣</span>",holeCardsTier: "7",bigBlind: "1.50",runItTwice: "",holeCardsTier: "7",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 223,indent: 1,parent: 222,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "5.25",potSizeToWin: "8.75",amountToPot: "60",numPlayers: "6",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Jeff",lastActionAmount: "5.25",boardCards: "",
},
{
id: 224,indent: 1,parent: 222,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "13.31",potSizeToWin: "31.06",amountToPot: "42",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Jeff",lastActionAmount: "13.31",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>",
},
{
id: 225,indent: 1,parent: 222,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Raise",amount: "75.00",potSizeToWin: "77.64",amountToPot: "96",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Jeff",lastActionAmount: "33.27",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>",
},
{
id: 226,indent: 1,parent: 222,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Call",amount: "39.27",potSizeToWin: "233.64",amountToPot: "16",numPlayers: "2",numAllIns: "1",positionToLastAction: "1",lastAction: "ReraiseAllIn",lastActionPlayer: "Jeff",lastActionAmount: "81.00",boardCards: "[7<span style = 'font-size:125%; color: blue; '>♥</span>]",
},
{
id: 227,indent: 0,parent: null,handNum: "80",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "332.87",endAmt: "332.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: 228,indent: 1,parent: 227,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: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 229,indent: 0,parent: null,handNum: "81",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "332.87",endAmt: "332.87",finalHand: "Three of a Kind, 6's",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: 230,indent: 1,parent: 229,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: "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: 231,indent: 0,parent: null,handNum: "82",wonOrLost: "67.48",wonNetOrLost: "34.49",startAmt: "332.87",endAmt: "367.36",finalHand: "Three of a Kind, J's",position: "MP1 (4 of 8)",positionName: "MP1",totalPlayers: "8",holeCards: "J<span style = 'font-size:125%; color: blue; '>♦</span>, J<span style = 'font-size:125%; color: blue; '>♠</span>",holeCardsTier: "1",bigBlind: "1.50",runItTwice: "",holeCardsTier: "1",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 232,indent: 1,parent: 231,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "6.00",potSizeToWin: "2.00",amountToPot: "300",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 233,indent: 1,parent: 231,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "10.12",potSizeToWin: "13.50",amountToPot: "74",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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>",
},
{
id: 234,indent: 1,parent: 231,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "33.74",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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>",
},
{
id: 235,indent: 1,parent: 231,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Bet",amount: "16.87",potSizeToWin: "33.74",amountToPot: "50",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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: 236,indent: 0,parent: null,handNum: "83",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "367.36",endAmt: "367.36",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: 237,indent: 1,parent: 236,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: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 238,indent: 0,parent: null,handNum: "84",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "367.36",endAmt: "365.86",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: 239,indent: 1,parent: 238,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: 240,indent: 1,parent: 238,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 241,indent: 1,parent: 238,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 242,indent: 1,parent: 238,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: "1",lastAction: "Bet",lastActionPlayer: "John P",lastActionAmount: "7.50",boardCards: "",
},
{
id: 243,indent: 0,parent: null,handNum: "85",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "365.86",endAmt: "365.36",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: 244,indent: 1,parent: 243,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: 245,indent: 1,parent: 243,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: "4",numAllIns: "0",positionToLastAction: "3",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: 246,indent: 0,parent: null,handNum: "86",wonOrLost: "11.00",wonNetOrLost: "8.00",startAmt: "365.36",endAmt: "373.36",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: 247,indent: 1,parent: 246,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: "5",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 248,indent: 1,parent: 246,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Raise",amount: "15.00",potSizeToWin: "9.50",amountToPot: "157",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "Bet",lastActionPlayer: "Justin A",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: 249,indent: 0,parent: null,handNum: "87",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "373.36",endAmt: "373.36",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: 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: "14.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Greg",lastActionAmount: "9.00",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: 251,indent: 0,parent: null,handNum: "88",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "373.36",endAmt: "373.36",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: 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: "3.50",amountToPot: "0",numPlayers: "6",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "John King",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>, 8<span style = 'font-size:125%; color: blue; '>♣</span>, 2<span style = 'font-size:125%; color: blue; '>♣</span>]",
},
{
id: 253,indent: 0,parent: null,handNum: "89",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "373.36",endAmt: "373.36",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: 254,indent: 1,parent: 253,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: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "Raise",lastActionPlayer: "Alex W",lastActionAmount: "5.00",boardCards: "",
},
{
id: 255,indent: 0,parent: null,handNum: "90",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "373.36",endAmt: "373.36",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: 256,indent: 1,parent: 255,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: "Jeff",lastActionAmount: "1.50",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: 257,indent: 0,parent: null,handNum: "91",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "373.36",endAmt: "371.86",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: 258,indent: 1,parent: 257,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "1.50",potSizeToWin: "2.00",amountToPot: "75",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 259,indent: 1,parent: 257,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "24.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Reraise",lastActionPlayer: "John King",lastActionAmount: "15.00",boardCards: "",
},
{
id: 260,indent: 0,parent: null,handNum: "92",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "371.86",endAmt: "371.86",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: 261,indent: 1,parent: 260,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: "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: 262,indent: 0,parent: null,handNum: "93",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "371.86",endAmt: "370.36",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: 263,indent: 1,parent: 262,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: 264,indent: 1,parent: 262,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Check",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "0",lastAction: "BigBlind",lastActionPlayer: "Dave",lastActionAmount: "1.50",boardCards: "",
},
{
id: 265,indent: 1,parent: 262,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 266,indent: 1,parent: 262,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "7.50",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 267,indent: 1,parent: 262,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Fold",amount: "0.00",potSizeToWin: "11.25",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "3.75",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: 268,indent: 0,parent: null,handNum: "94",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "370.36",endAmt: "369.86",finalHand: "",position: "SB (1 of 9)",positionName: "SB",totalPlayers: "9",holeCards: "J<span style = 'font-size:125%; color: blue; '>♣</span>, 8<span style = 'font-size:125%; color: blue; '>♠</span>",holeCardsTier: "10",bigBlind: "1.50",runItTwice: "",holeCardsTier: "10",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{
id: 269,indent: 1,parent: 268,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: 270,indent: 1,parent: 268,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Fold",amount: "0.00",potSizeToWin: "14.15",amountToPot: "0",numPlayers: "5",numAllIns: "0",positionToLastAction: "3",lastAction: "Raise",lastActionPlayer: "John King",lastActionAmount: "4.05",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: 271,indent: 0,parent: null,handNum: "95",wonOrLost: "171.88",wonNetOrLost: "88.44",startAmt: "369.86",endAmt: "458.30",finalHand: "Full House, A's over K's",position: "Dealer (9 of 9)",positionName: "Dealer",totalPlayers: "9",holeCards: "A<span style = 'font-size:125%; color: blue; '>♥</span>, K<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: 272,indent: 1,parent: 271,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.50",potSizeToWin: "3.50",amountToPot: "128",numPlayers: "4",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "SudburyJay",lastActionAmount: "1.50",boardCards: "",
},
{
id: 273,indent: 1,parent: 271,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Check",amount: "0.00",potSizeToWin: "14.00",amountToPot: "0",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 274,indent: 1,parent: 271,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Raise",amount: "12.00",potSizeToWin: "17.00",amountToPot: "70",numPlayers: "3",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Justin A",lastActionAmount: "3.00",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>",
},
{
id: 275,indent: 1,parent: 271,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Bet",amount: "19.00",potSizeToWin: "38.00",amountToPot: "50",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 276,indent: 1,parent: 271,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Call",amount: "47.94",potSizeToWin: "123.94",amountToPot: "38",numPlayers: "2",numAllIns: "1",positionToLastAction: "1",lastAction: "CheckRaiseAllIn",lastActionPlayer: "Justin A",lastActionAmount: "66.94",boardCards: "",
},
{
id: 277,indent: 0,parent: null,handNum: "96",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "458.30",endAmt: "458.30",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: 278,indent: 1,parent: 277,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: "Greg",lastActionAmount: "4.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: 279,indent: 0,parent: null,handNum: "97",wonOrLost: "23.00",wonNetOrLost: "12.50",startAmt: "458.30",endAmt: "470.80",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: 280,indent: 1,parent: 279,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: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 281,indent: 1,parent: 279,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Call",amount: "4.50",potSizeToWin: "18.50",amountToPot: "24",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "4.50",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>",
},
{
id: 282,indent: 1,parent: 279,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Bet",amount: "13.00",potSizeToWin: "23.00",amountToPot: "56",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.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: 283,indent: 0,parent: null,handNum: "98",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "470.80",endAmt: "470.80",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: 284,indent: 1,parent: 283,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: "Jeff",lastActionAmount: "1.50",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: 285,indent: 0,parent: null,handNum: "99",wonOrLost: "3.50",wonNetOrLost: "2.00",startAmt: "470.80",endAmt: "472.80",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: 286,indent: 1,parent: 285,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.50",potSizeToWin: "2.00",amountToPot: "225",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 287,indent: 0,parent: null,handNum: "100",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "472.80",endAmt: "472.80",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: 288,indent: 1,parent: 287,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: "Alex W",lastActionAmount: "1.50",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: 289,indent: 0,parent: null,handNum: "101",wonOrLost: "30.90",wonNetOrLost: "20.60",startAmt: "472.80",endAmt: "493.40",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: 290,indent: 1,parent: 289,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: 291,indent: 1,parent: 289,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Call",amount: "2.62",potSizeToWin: "9.74",amountToPot: "26",numPlayers: "3",numAllIns: "0",positionToLastAction: "2",lastAction: "Raise",lastActionPlayer: "Jeff",lastActionAmount: "4.12",boardCards: "",
},
{
id: 292,indent: 1,parent: 289,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "6.18",potSizeToWin: "12.36",amountToPot: "50",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 293,indent: 1,parent: 289,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Bet",amount: "23.17",potSizeToWin: "30.90",amountToPot: "74",numPlayers: "3",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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: 294,indent: 0,parent: null,handNum: "102",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "493.40",endAmt: "492.90",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: 295,indent: 1,parent: 294,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: 296,indent: 1,parent: 294,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: "John King",lastActionAmount: "6.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>, 8<span style = 'font-size:125%; color: blue; '>♠</span>, 8<span style = 'font-size:125%; color: blue; '>♦</span>]",
},
{
id: 297,indent: 0,parent: null,handNum: "103",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "492.90",endAmt: "492.90",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: 298,indent: 1,parent: 297,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: "5",numAllIns: "0",positionToLastAction: "3",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: 299,indent: 0,parent: null,handNum: "104",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "492.90",endAmt: "492.90",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: 300,indent: 1,parent: 299,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: "Alex W",lastActionAmount: "5.00",boardCards: "",
},
{
id: 301,indent: 0,parent: null,handNum: "105",wonOrLost: "6.50",wonNetOrLost: "5.00",startAmt: "492.90",endAmt: "497.90",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: 302,indent: 1,parent: 301,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: "7",numAllIns: "0",positionToLastAction: "3",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 303,indent: 1,parent: 301,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "4.50",potSizeToWin: "6.50",amountToPot: "69",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: 304,indent: 0,parent: null,handNum: "106",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "497.90",endAmt: "497.90",finalHand: "Two Pair, 8's & 6's",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: 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: "3.50",amountToPot: "0",numPlayers: "7",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: 306,indent: 0,parent: null,handNum: "107",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "497.90",endAmt: "497.90",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: 307,indent: 1,parent: 306,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: "8",numAllIns: "0",positionToLastAction: "1",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: 308,indent: 0,parent: null,handNum: "108",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "497.90",endAmt: "497.90",finalHand: "Two Pair, 8's & 3's",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: 309,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: "2.00",amountToPot: "0",numPlayers: "8",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",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: 310,indent: 0,parent: null,handNum: "109",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "497.90",endAmt: "496.40",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: 311,indent: 1,parent: 310,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: 312,indent: 1,parent: 310,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: "3",numAllIns: "0",positionToLastAction: "2",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: 313,indent: 0,parent: null,handNum: "110",wonOrLost: "-0.50",wonNetOrLost: "-0.50",startAmt: "496.40",endAmt: "495.90",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: 314,indent: 1,parent: 313,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: 315,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: "5.00",amountToPot: "0",numPlayers: "4",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: 316,indent: 0,parent: null,handNum: "111",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "495.90",endAmt: "495.90",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: 317,indent: 1,parent: 316,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: "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: 318,indent: 0,parent: null,handNum: "112",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "495.90",endAmt: "495.90",finalHand: "Straight, K High",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: 319,indent: 1,parent: 318,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: "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: 320,indent: 0,parent: null,handNum: "113",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "495.90",endAmt: "495.90",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: 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: "4",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "John King",lastActionAmount: "1.50",boardCards: "",
},
{
id: 322,indent: 0,parent: null,handNum: "114",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "495.90",endAmt: "495.90",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: 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: "7.00",amountToPot: "0",numPlayers: "6",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: 324,indent: 0,parent: null,handNum: "115",wonOrLost: "-9.98",wonNetOrLost: "-9.98",startAmt: "495.90",endAmt: "485.92",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: 325,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Preflop",action: "Raise",amount: "4.99",potSizeToWin: "3.50",amountToPot: "142",numPlayers: "7",numAllIns: "0",positionToLastAction: "2",lastAction: "BigBlind",lastActionPlayer: "Greg",lastActionAmount: "1.50",boardCards: "",
},
{
id: 326,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Flop",action: "Bet",amount: "4.99",potSizeToWin: "11.98",amountToPot: "41",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 327,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "Turn",action: "Check",amount: "0.00",potSizeToWin: "21.96",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "0",lastAction: "",lastActionPlayer: "",lastActionAmount: "0.00",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>",
},
{
id: 328,indent: 1,parent: 324,handNum: "",wonOrLost: "",wonNetOrLost: "",startAmt: "",endAmt: "",finalHand: "",position: "",positionName: "",totalPlayers: "",holeCards: "",holeCardsTier: "",bigBlind: "",runItTwice: "",holeCardsTier: "",step: "River",action: "Fold",amount: "0.00",potSizeToWin: "31.96",amountToPot: "0",numPlayers: "2",numAllIns: "0",positionToLastAction: "1",lastAction: "Bet",lastActionPlayer: "Alex W",lastActionAmount: "10.00",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: 329,indent: 0,parent: null,handNum: "116",wonOrLost: "0.00",wonNetOrLost: "0.00",startAmt: "485.92",endAmt: "485.92",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: 330,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: "2.00",amountToPot: "0",numPlayers: "7",numAllIns: "0",positionToLastAction: "1",lastAction: "BigBlind",lastActionPlayer: "Alex W",lastActionAmount: "1.50",boardCards: "",
},
{
id: 331,indent: 0,parent: null,handNum: "117",wonOrLost: "-1.50",wonNetOrLost: "-1.50",startAmt: "485.92",endAmt: "484.42",finalHand: "A High",position: "BB (2 of 7)",positionName: "BB",totalPlayers: "7",holeCards: "2<span style = 'font-size:125%; color: blue; '>♠</span>, 7<span style = 'font-size:125%; color: blue; '>♠</span>",holeCardsTier: "10",bigBlind: "1.50",runItTwice: "",holeCardsTier: "10",step: "",action: "",amount: "",potSizeToWin: "",amountToPot: "",numPlayers: "",numAllIns: "",positionToLastAction: "",lastAction: "",lastActionPlayer: "",lastActionAmount: "",boardCards: "",
},
{