Advertisement
Guest User

Untitled

a guest
Oct 9th, 2018
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 14.62 KB | None | 0 0
  1. {
  2.     "PreFlop": {
  3.         "groups": {
  4.             "0": ["AAo", "KKo"],
  5.             "1": ["QQo", "JJo", "AKs"],
  6.             "2": ["TTo", "AQs", "AJs", "KQs", "AKo"],
  7.             "3": ["99o", "JTs", "QJs", "KJs", "ATs", "AQo"],
  8.             "4": ["T9s", "KQo", "88o", "QTs", "98s", "J9s", "AJo", "KTs"],
  9.             "5": ["77o", "87s", "Q9s", "T8s", "KJo", "QJo", "JTo", "76s", "97s", "65s", "A2s", "A3s", "A4s", "A5s", "A6s", "A7s", "A8s", "A9s"],
  10.             "6": ["66o", "ATo", "55o", "86s", "KTo", "QTo", "54s", "K9s", "J8s", "75s"],
  11.             "7": ["44o", "J9o", "64s", "T9o", "53s", "33o", "43s", "22o", "T7s", "Q8s", "K2s", "K3s", "K4s", "K5s", "K6s", "K7s", "K8s"],
  12.             "8": ["87o", "A9o", "Q9o", "76o", "42s", "32s", "96s", "85s", "J8s", "J7s", "65o", "54o", "74s", "K9o", "T8o"],
  13.             "9": ["A8o", "Q8o", "J9o", "J8o", "T8o", "T7o", "98o", "97o", "87o", "86o", "65o", "A2o"]
  14.         },
  15.         "pos": {
  16.             "sb": ["0", "1", "2", "3"],
  17.             "bb": ["0", "1", "2", "3"],
  18.             "utg": ["0", "1", "2", "3"],
  19.             "utg1": ["0", "1", "2", "3"],
  20.             "utg2": ["0", "1", "2", "3", "4", "5"],
  21.             "mp": ["0", "1", "2", "3", "4", "5", "6"],
  22.             "hijack": ["0", "1", "2", "3", "4", "5", "6", "7", "8"],
  23.             "cutoff": ["0", "1", "2", "3", "4", "5", "6", "7", "8"],
  24.             "dealer": ["0", "1", "2", "3", "4", "5", "6", "7", "8"]
  25.         },
  26.         "hands": {
  27.             "0": {
  28.                 "raiseto": [
  29.                     {"raiseto <= buyIn*0.05 and buyIn*0.05 <= stack*0.80 and position != 'utg'": "buyIn*0.05"},
  30.                     {"raiseto <= stack*0.80 and position != 'utg'": "buyIn*0.06"}
  31.                 ],
  32.                 "call": [{"call <= stack": "call"}]
  33.             },
  34.             "1": {
  35.                 "raiseto": [
  36.                     {"raiseto <= buyIn*0.05 and buyIn*0.05 <= stack*0.80 and position != 'utg'": "buyIn*0.05"},
  37.                     {"raiseto <= stack*0.80 and position != 'utg'": "buyIn*0.06"}
  38.                 ],
  39.                 "call": [{"call <= stack*0.80": "call"}]
  40.             },
  41.             "2": {
  42.                 "raiseto": [
  43.                     {"raiseto <= buyIn*0.04 and buyIn*0.04 <= stack*0.60 and position != 'utg'": "buyIn*0.04"},
  44.                     {"raiseto <= stack*0.60 and position != 'utg'": "buyIn*0.06"}
  45.                 ],
  46.                 "call": [{"call <= stack*0.60": "call"}]
  47.             },
  48.             "3": {
  49.                 "call": [{"call <= stack*0.60": "call"}]
  50.             },
  51.             "4": {
  52.                 "call": [{"call <= stack*0.40": "call"}]
  53.             },
  54.             "5": {
  55.                 "call": [{"call <= stack*0.15": "call"}]
  56.             },
  57.             "6": {
  58.                 "call": [{"call <= stack*0.12 and not is_raiseme": "call"}]
  59.             },
  60.             "7,8": {
  61.                 "call": [{"call <= stack*0.08 and not is_raiseme": "call"}]
  62.             }
  63.         }
  64.     },
  65.     "in": {
  66.         "Flop": {
  67.             "all": {
  68.                 "bet": [
  69.                     {"equity >= 90": "pot_curr_max*0.75"},
  70.                     {"equity >= 85 and pot_curr_max*0.75 <= stack*0.90": "pot_curr_max*0.75"},
  71.                     {"equity >= 80 and pot_curr_max*0.75 <= stack*0.80": "pot_curr_max*0.75"},
  72.                     {"equity >= 75 and pot_curr_max*0.50 <= stack*0.50": "pot_curr_max*0.50"},
  73.                     {"equity >= 70 and pot_curr_max*0.50 <= stack*0.40": "pot_curr_max*0.50"}
  74.                 ],
  75.                 "raiseto": [
  76.                     {"equity >= 90": "pot_curr_max*0.75"},
  77.                     {"equity >= 85 and raiseto <= pot_curr_max*0.75 and pot_curr_max*0.75 <= stack*0.90": "pot_curr_max*0.75"}
  78.                 ],
  79.                 "call": [
  80.                     {"equity >= 40 and call <= stack*0.01": "call"},
  81.                     {"equity >= 45 and call <= stack*0.03": "call"},
  82.                     {"equity >= 50 and call <= stack*0.08": "call"},
  83.                     {"equity >= 55 and call <= stack*0.12": "call"},
  84.                     {"equity >= 60 and call <= stack*0.17": "call"},
  85.                     {"equity >= 65 and call <= stack*0.25": "call"},
  86.                     {"equity >= 70 and call <= stack*0.40": "call"},
  87.                     {"equity >= 75 and call <= stack*0.50": "call"},
  88.                     {"equity >= 75 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  89.                     {"equity >= 80 and call <= stack*0.80": "call"},
  90.                     {"equity >= 80 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  91.                     {"equity >= 85 and call <= stack*0.90": "call"},
  92.                     {"equity >= 85 and pot_curr_max >= stack*0.50 and aggressor": "call"},
  93.                     {"handtype in ['StraightFlush', 'FoufOfAKind', 'FullHouse']": "call"},
  94.                     {"pot_odds > hand_odds and call <= stack*0.20": "call"},
  95.                     {"handtype == 'TopPair' and dry_board and simplify_my_hand in ['AAo', 'KKo']": "call"},
  96.                     {"equity >= 90": "call"}
  97.                 ]
  98.             }
  99.         },
  100.         "Turn": {
  101.             "all": {
  102.                 "bet": [
  103.                     {"equity >= 90": "pot_curr_max"},
  104.                     {"equity >= 85 and pot_curr_max*0.90 <= stack*0.90": "pot_curr_max*0.90"},
  105.                     {"equity >= 80 and pot_curr_max*0.75 <= stack*0.80": "pot_curr_max*0.75"},
  106.                     {"equity >= 75 and pot_curr_max*0.60 <= stack*0.50": "pot_curr_max*0.60"},
  107.                     {"equity >= 70 and pot_curr_max*0.60 <= stack*0.40": "pot_curr_max*0.60"}
  108.                 ],
  109.                 "raiseto": [
  110.                     {"equity >= 90": "pot_curr_max*0.75"},
  111.                     {"equity >= 85 and raiseto <= pot_curr_max*0.75 and pot_curr_max*0.75 <= stack*0.90": "pot_curr_max*0.75"}
  112.                 ],
  113.                 "call": [
  114.                     {"equity >= 40 and call <= stack*0.01": "call"},
  115.                     {"equity >= 45 and call <= stack*0.03": "call"},
  116.                     {"equity >= 50 and call <= stack*0.08": "call"},
  117.                     {"equity >= 55 and call <= stack*0.12": "call"},
  118.                     {"equity >= 60 and call <= stack*0.17": "call"},
  119.                     {"equity >= 65 and call <= stack*0.25": "call"},
  120.                     {"equity >= 70 and call <= stack*0.40": "call"},
  121.                     {"equity >= 75 and call <= stack*0.50": "call"},
  122.                     {"equity >= 75 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  123.                     {"equity >= 80 and call <= stack*0.80": "call"},
  124.                     {"equity >= 80 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  125.                     {"equity >= 85 and call <= stack*0.90": "call"},
  126.                     {"equity >= 85 and pot_curr_max >= stack*0.50 and aggressor": "call"},
  127.                     {"handtype in ['StraightFlush', 'FoufOfAKind', 'FullHouse']": "call"},
  128.                     {"pot_odds > hand_odds and call <= stack*0.20": "call"},
  129.                     {"equity >= 90": "call"}
  130.                 ]
  131.             }
  132.         },
  133.         "River": {
  134.             "all": {
  135.                 "bet": [
  136.                     {"equity >= 90": "pot_curr_max"},
  137.                     {"equity >= 85 and pot_curr_max*0.90 <= stack*0.90": "pot_curr_max*0.90"},
  138.                     {"equity >= 80 and pot_curr_max*0.75 <= stack*0.80": "pot_curr_max*0.75"},
  139.                     {"equity >= 75 and pot_curr_max*0.60 <= stack*0.50": "pot_curr_max*0.60"},
  140.                     {"equity >= 70 and pot_curr_max*0.60 <= stack*0.40": "pot_curr_max*0.60"}
  141.                 ],
  142.                 "raiseto": [
  143.                     {"equity >= 90": "pot_curr_max*0.75"},
  144.                     {"equity >= 85 and raiseto <= pot_curr_max*0.75 and pot_curr_max*0.75 <= stack*0.90": "pot_curr_max*0.75"}
  145.                 ],
  146.                 "call": [
  147.                     {"equity >= 40 and call <= stack*0.01": "call"},
  148.                     {"equity >= 45 and call <= stack*0.03": "call"},
  149.                     {"equity >= 50 and call <= stack*0.08": "call"},
  150.                     {"equity >= 55 and call <= stack*0.12": "call"},
  151.                     {"equity >= 60 and call <= stack*0.17": "call"},
  152.                     {"equity >= 65 and call <= stack*0.25": "call"},
  153.                     {"equity >= 70 and call <= stack*0.40": "call"},
  154.                     {"equity >= 75 and call <= stack*0.50": "call"},
  155.                     {"equity >= 75 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  156.                     {"equity >= 80 and call <= stack*0.80": "call"},
  157.                     {"equity >= 80 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  158.                     {"equity >= 85 and call <= stack*0.90": "call"},
  159.                     {"equity >= 85 and pot_curr_max >= stack*0.50 and aggressor": "call"},
  160.                     {"handtype in ['StraightFlush', 'FoufOfAKind', 'FullHouse']": "call"},
  161.                     {"pot_odds > hand_odds and call <= stack*0.20": "call"},
  162.                     {"equity >= 90": "call"}
  163.                 ]
  164.             }
  165.         }
  166.     },
  167.     "oop": {
  168.         "Flop": {
  169.             "all": {
  170.                 "bet": [
  171.                     {"equity >= 75 and pot_curr_max*0.50 <= stack*0.50": "pot_curr_max*0.50"},
  172.                     {"equity >= 70 and pot_curr_max*0.50 <= stack*0.40": "pot_curr_max*0.50"}
  173.                 ],
  174.                 "call": [
  175.                     {"equity >= 40 and call <= stack*0.01": "call"},
  176.                     {"equity >= 45 and call <= stack*0.03": "call"},
  177.                     {"equity >= 50 and call <= stack*0.08": "call"},
  178.                     {"equity >= 55 and call <= stack*0.12": "call"},
  179.                     {"equity >= 60 and call <= stack*0.17": "call"},
  180.                     {"equity >= 65 and call <= stack*0.25": "call"},
  181.                     {"equity >= 70 and call <= stack*0.35": "call"},
  182.                     {"equity >= 75 and call <= stack*0.45": "call"},
  183.                     {"equity >= 75 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  184.                     {"equity >= 80 and call <= stack*0.80": "call"},
  185.                     {"equity >= 80 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  186.                     {"equity >= 85 and call <= stack*0.90": "call"},
  187.                     {"equity >= 85 and pot_curr_max >= stack*0.50 and aggressor": "call"},
  188.                     {"handtype in ['StraightFlush', 'FoufOfAKind', 'FullHouse']": "call"},
  189.                     {"pot_odds > hand_odds and call <= stack*0.10": "call"},
  190.                     {"handtype == 'TopPair' and dry_board and simplify_my_hand in ['AAo', 'KKo']": "call"},
  191.                     {"equity >= 90": "call"}
  192.                 ]
  193.             }
  194.         },
  195.         "Turn": {
  196.             "all": {
  197.                 "bet": [
  198.                     {"equity >= 90": "pot_curr_max"},
  199.                     {"equity >= 85 and pot_curr_max*0.90 <= stack*0.90": "pot_curr_max*0.90"},
  200.                     {"equity >= 80 and pot_curr_max*0.75 <= stack*0.80": "pot_curr_max*0.75"}
  201.                 ],
  202.                 "raiseto": [
  203.                     {"equity >= 90": "pot_curr_max*0.75"},
  204.                     {"equity >= 85 and raiseto <= pot_curr_max*0.75 and pot_curr_max*0.75 <= stack*0.90": "pot_curr_max*0.75"}
  205.                 ],
  206.                 "call": [
  207.                     {"equity >= 40 and call <= stack*0.01": "call"},
  208.                     {"equity >= 45 and call <= stack*0.03": "call"},
  209.                     {"equity >= 50 and call <= stack*0.08": "call"},
  210.                     {"equity >= 55 and call <= stack*0.12": "call"},
  211.                     {"equity >= 60 and call <= stack*0.17": "call"},
  212.                     {"equity >= 65 and call <= stack*0.25": "call"},
  213.                     {"equity >= 70 and call <= stack*0.35": "call"},
  214.                     {"equity >= 75 and call <= stack*0.45": "call"},
  215.                     {"equity >= 75 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  216.                     {"equity >= 80 and call <= stack*0.80": "call"},
  217.                     {"equity >= 80 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  218.                     {"equity >= 85 and call <= stack*0.90": "call"},
  219.                     {"equity >= 85 and pot_curr_max >= stack*0.50 and aggressor": "call"},
  220.                     {"handtype in ['StraightFlush', 'FoufOfAKind', 'FullHouse']": "call"},
  221.                     {"pot_odds > hand_odds and call <= stack*0.10": "call"},
  222.                     {"equity >= 90": "call"}
  223.                 ]
  224.             }
  225.         },
  226.         "River": {
  227.             "all": {
  228.                 "bet": [
  229.                     {"equity >= 90": "pot_curr_max"},
  230.                     {"equity >= 85 and pot_curr_max*0.90 <= stack*0.90": "pot_curr_max*0.90"},
  231.                     {"equity >= 80 and pot_curr_max*0.75 <= stack*0.80": "pot_curr_max*0.75"}
  232.                 ],
  233.                 "raiseto": [
  234.                     {"equity >= 90": "pot_curr_max*0.75"},
  235.                     {"equity >= 85 and raiseto <= pot_curr_max*0.75 and pot_curr_max*0.75 <= stack*0.90": "pot_curr_max*0.75"},
  236.                     {"equity >= 80 and raiseto <= pot_curr_max*0.75 and pot_curr_max*0.75 <= stack*0.80": "pot_curr_max*0.75"}
  237.                 ],
  238.                 "call": [
  239.                     {"equity >= 40 and call <= stack*0.01": "call"},
  240.                     {"equity >= 45 and call <= stack*0.03": "call"},
  241.                     {"equity >= 50 and call <= stack*0.08": "call"},
  242.                     {"equity >= 55 and call <= stack*0.12": "call"},
  243.                     {"equity >= 60 and call <= stack*0.17": "call"},
  244.                     {"equity >= 65 and call <= stack*0.25": "call"},
  245.                     {"equity >= 70 and call <= stack*0.35": "call"},
  246.                     {"equity >= 75 and call <= stack*0.45": "call"},
  247.                     {"equity >= 75 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.70": "call"},
  248.                     {"equity >= 80 and call <= stack*0.80": "call"},
  249.                     {"equity >= 80 and pot_curr_max >= stack*0.50 and aggressor and call <= stack*0.80": "call"},
  250.                     {"equity >= 85 and call <= stack*0.90": "call"},
  251.                     {"equity >= 85 and pot_curr_max >= stack*0.50 and aggressor": "call"},
  252.                     {"handtype in ['StraightFlush', 'FoufOfAKind', 'FullHouse']": "call"},
  253.                     {"pot_odds > hand_odds and call <= stack*0.10": "call"},
  254.                     {"equity >= 90": "call"}
  255.                 ]
  256.             }
  257.         }
  258.     }
  259. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement