Keiich

Ulti-hunt)

Sep 16th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.82 KB | None | 0 0
  1. --@ New_Ultimate_Hunter_by_Keiichi_upd
  2.  
  3.  
  4. ------------Settings------------------
  5. reset = false --@ switch to false, unless u want to reset the roll statistic. (Must be true for the first start)
  6.  
  7. base = 0.00000011 --@ Put min bet.
  8.  
  9. targetb = 0.01 --@ Put target balance.
  10.  
  11. sound = true --@ set False to remove the sound on win.
  12.  
  13. risk = 0.77--@ from 0.1 (low) to 1 (high). Reduce waittime for Hunting start.  0.75 - Default
  14.  
  15. basechance = 44.44  --@ no multy
  16.  
  17. huntbetmulty = 1.00--@ increase starting bet for Hunting. 1.00 - Default
  18. -----------------------------------
  19.  
  20. ---------Statistics----------------
  21. if reset then
  22.   x25l = 0   --@  3.9600%
  23.   x25h = 0   --@  3.9600%
  24.   --
  25.   x50l = 0   --@  1.9800%
  26.   x50h = 0   --@  1.9800%
  27.   --
  28.   x100l = 0  --@  0.9900%
  29.   x100h = 0  --@  0.9900%
  30.   --
  31.   x225l = 0  --@  0.4400%
  32.   x225h = 0  --@  0.4400%
  33.   --
  34.   x450l = 0  --@  0.2200%
  35.   x450h = 0  --@  0.2200%
  36.   --
  37.   x990l = 0  --@  0.1000%
  38.   x990h = 0  --@  0.1000%
  39.   --
  40.   x1414l = 0 --@  0.0700%
  41.   x1414h = 0 --@  0.0700%
  42.   --
  43.   x3300l = 0 --@  0.0300%
  44.   x3300h = 0 --@  0.0300%
  45.   --
  46.   x9900l = 0 --@  0.0100%
  47.   x9900h = 0 --@  0.0100%
  48. end
  49. -----------------------------------
  50.  
  51. ---------Base-Variables------------
  52. basebet = base
  53. prebet = base
  54. huntbet = huntbetmulty * basebet * 3
  55. nextbet = prebet
  56. losecount = 0
  57. betcount = 0
  58. chance = basechance
  59. bethigh = true
  60. devider = 1.04 - risk
  61. HUNT = false
  62. curbal = balance
  63. targetpercent = curbal / targetb * 100
  64. LBR = 0
  65. LBID = 0.00
  66. LBP = 0.00000000
  67. name = "PREBETS"
  68. sessionprofit = 0.00000000
  69. highest = 44.44
  70. hiid = 0
  71. hic = 0
  72. lowest = 44.44
  73. loid = 0
  74. loc = 0
  75. -----------------------------------
  76.  
  77. ---------Rolls-To-Wait-------------
  78. x25wait = 99999   --@  3.9600% 285
  79. x50wait = 99999   --@  1.9800% 576
  80. x100wait = 1258   --@  0.9900% 1158
  81. x225wait = 3555   --@  0.4400% 2611
  82. x450wait = 4888   --@  0.2200% 5228
  83. x990wait = 22222  --@  0.1000% 11508
  84. x1414wait = 44444 --@  0.0700% 22222
  85. x3300wait = 77777 --@  0.0300% 44444
  86. x9900wait = 111111 --@  0.0100% 66666
  87. -----------------------------------
  88.  
  89. ----------Hunt-Triggers------------
  90. HUNTx25l = false   --@  3.9600%
  91. HUNTx25h = false   --@  3.9600%
  92. --
  93. HUNTx50l = false   --@  1.9800%
  94. HUNTx50h = false   --@  1.9800%
  95. --
  96. HUNTx100l = false  --@  0.9900%
  97. HUNTx100h = false  --@  0.9900%
  98. --
  99. HUNTx225l = false  --@  0.4400%
  100. HUNTx225h = false  --@  0.4400%
  101. --
  102. HUNTx450l = false  --@  0.2200%
  103. HUNTx450h = false  --@  0.2200%
  104. --
  105. HUNTx990l = false  --@  0.1000%
  106. HUNTx990h = false  --@  0.1000%
  107. --
  108. HUNTx1414l = false --@  0.0700%
  109. HUNTx1414h = false --@  0.0700%
  110. --
  111. HUNTx3300l = false --@  0.0300%
  112. HUNTx3300h = false --@  0.0300%
  113. --
  114. HUNTx9900l = false --@  0.0100%
  115. HUNTx9900h = false --@  0.0100%
  116. -----------------------------------
  117.  
  118.  
  119. --------------DOBET----------------
  120. function dobet()
  121.  
  122.   ------------COUNTERS---------------
  123.   x25l += 1  --@  3.9600%
  124.   x25h += 1  --@  3.9600%
  125.   --
  126.   x50l += 1  --@  1.9800%
  127.   x50h += 1  --@  1.9800%
  128.   --
  129.   x100l += 1 --@  0.9900%
  130.   x100h += 1 --@  0.9900%
  131.   --
  132.   x225l += 1 --@  0.4400%
  133.   x225h += 1 --@  0.4400%
  134.   --
  135.   x450l += 1 --@  0.2200%
  136.   x450h += 1 --@  0.2200%
  137.   --
  138.   x990l += 1 --@  0.1000%
  139.   x990h += 1 --@  0.1000%
  140.   --
  141.   x1414l += 1--@  0.0700%
  142.   x1414h += 1--@  0.0700%
  143.   --
  144.   x3300l += 1--@  0.0300%
  145.   x3300h += 1--@  0.0300%
  146.   --
  147.   x9900l += 1--@  0.0100%
  148.   x9900h += 1--@  0.0100%
  149.   -----------------------------------
  150.  
  151.   ------------Last-Roll--------------
  152.   LBR = lastBet.Roll
  153.   LBID = lastBet.Id
  154.   LBP = lastBet.Profit
  155.   -----------------------------------
  156.  
  157.   -------------Balance---------------
  158.   curbal = balance
  159.   targetpercent = curbal / targetb * 100
  160.   -----------------------------------
  161.  
  162.  
  163.   -------------Prints----------------
  164.   print("---------")
  165.   print("---------")
  166.   print("---------")
  167.   print("---------")
  168.   print("---------")
  169.   print("---------")
  170.   print("---------")
  171.   print("---------")
  172.   print("---------")
  173.   print("---------")
  174.   print("---HIGH---")
  175.   --print("\nx25h = " .. x25h .. "      of     " .. string.format("%3.0f",x25wait * devider))
  176.   --print("\nx50h = " .. x50h .. "      of     " .. string.format("%3.0f",x50wait * devider))
  177.   print("\nx100h = " .. x100h .. "    of     " .. string.format("%3.0f",x100wait * devider))
  178.   print("\nx225h = " .. x225h .. "    of     " .. string.format("%3.0f",x225wait * devider))
  179.   print("\nx450h = " .. x450h .. "    of     " .. string.format("%3.0f",x450wait * devider))
  180.   print("\nx990h = " .. x990h .. "    of     " .. string.format("%3.0f",x990wait * devider))
  181.   print("\nx1414h = " .. x1414h .. "  of     " .. string.format("%3.0f",x1414wait * devider))
  182.   print("\nx3300h = " .. x3300h .. "  of     " .. string.format("%3.0f",x3300wait * devider))
  183.   print("\nx9900h = " .. x9900h .. "  of     " .. string.format("%3.0f",x9900wait * devider))
  184.   print("\n---LOW---")
  185.   --print("\nx25l  = " .. x25l .. "     of     " .. string.format("%3.0f",x25wait * devider))
  186.   --print("\nx50l  = " .. x50l .. "     of     " .. string.format("%3.0f",x50wait * devider))
  187.   print("\nx100l  = " .. x100l .. "   of     " .. string.format("%3.0f",x100wait * devider))
  188.   print("\nx225l  = " .. x225l .. "   of     " .. string.format("%3.0f",x225wait * devider))
  189.   print("\nx450l  = " .. x450l .. "   of     " .. string.format("%3.0f",x450wait * devider))
  190.   print("\nx990l  = " .. x990l .. "   of     " .. string.format("%3.0f",x990wait * devider))
  191.   print("\nx1414l  = " .. x1414l .. " of     " .. string.format("%3.0f",x1414wait * devider))
  192.   print("\nx3300l  = " .. x3300l .. " of     " .. string.format("%3.0f",x3300wait * devider))
  193.   print("\nx9900l  = " .. x9900l .. " of     " .. string.format("%3.0f",x9900wait * devider))
  194.   print("---------")
  195.   print("Huntbet = " .. string.format("%3.8f",huntbet))
  196.   print("---------")
  197.   print(name)
  198.   print("---------")
  199.   print("LoseStreak = " .. losecount)
  200.   print("---------")
  201.   print("Highest Roll Hunted = " .. highest .. "  Chance = " .. string.format("%3.2f",hic) .. "  Bet ID:")
  202.   print(hiid)
  203.   print("\nLowest Roll Hubted = " .. lowest .. "  Chance = " .. string.format("%3.2f",loc) .. "  Bet ID:")
  204.   print(loid)
  205.   print("---------")
  206.   print("Total Bets = " .. betcount)
  207.   print("\nTarget Balance = " .. targetb)
  208.   print("% of Target Reached = " .. string.format("%3.2f",targetpercent) .. "%")
  209.   print("---------\n")
  210.   -----------------------------------
  211.  
  212.  
  213.  
  214.   --------------On-Win---------------
  215.   if win then
  216.     if HUNT then
  217.       if sound then
  218.         if chance < 1.44 then
  219.           ching()
  220.         end
  221.       end
  222.       if LBR > highest then
  223.         highest = LBR
  224.         hiid = LBID
  225.         hic = chance
  226.       end
  227.       if LBR < lowest then
  228.         lowest = LBR
  229.         loid = LBID
  230.         loc = chance
  231.       end
  232.     end
  233.     losecount = 0
  234.     betcount += 1
  235.     curbal = balance
  236.     if curbal >= targetb then
  237.       print("\nTARGET REACHED. GRATS")
  238.       stop()
  239.     end
  240.     -----------------------------------
  241.  
  242.     --------------On-Lose--------------
  243.   else
  244.     losecount += 1
  245.     betcount += 1
  246.   end
  247.   -----------------------------------
  248.  
  249.   ------------Prebets----------------
  250.   sessionprofit = sessionprofit + LBP
  251.   if sessionprofit > 0.00000001 then
  252.     sessionprofit = 0.00000000
  253.   end
  254.   nextbet = ((((curbal) - (sessionprofit * 4444)) / 164444) + (curbal * 0.00000025675))
  255. if nextbet > (prebet * 4) then
  256.     nextbet = prebet * 4
  257.   end
  258.   if nextbet < prebet then
  259.     nextbet = prebet
  260.   end
  261.  
  262.   bethigh = true
  263.   chance = basechance
  264.   name = "PREBETS"
  265.   -----------------------------------
  266.  
  267.  
  268.   -----------HUNTx25-----------------
  269.   if (HUNTx25h or HUNTx25l) then
  270.  
  271.     chance = 3.9600
  272.     huntbet = huntbetmulty * basebet * 1.7 + (curbal * 0.00000107675)
  273.     nextbet = huntbet
  274.  
  275.     if losecount >= 12 then
  276.       nextbet = huntbet * 2
  277.     end
  278.     if losecount >= 13 then
  279.       nextbet = previousbet * 1.055
  280.     end
  281.  
  282.     if HUNTx25h then
  283.       name = "  HUNT x25 - High  - 3.96%  "
  284.       bethigh = true
  285.     end
  286.     if HUNTx25l then
  287.       name = "  HUNT x25 - Low   - 3.96%  "
  288.       bethigh = false
  289.     end
  290.   end
  291.   ----------------------------------
  292.  
  293.   -----------HUNTx50-----------------
  294.   if (HUNTx50h or HUNTx50l) then
  295.  
  296.     chance = 1.9800
  297.     huntbet = huntbetmulty * basebet * 2  + (curbal * 0.00000107675)
  298.     nextbet = huntbet
  299.  
  300.     if losecount >= 25 then
  301.       nextbet = huntbet * 2
  302.     end
  303.     if losecount >= 26 then
  304.       nextbet = previousbet * 1.0277
  305.     end
  306.  
  307.     if HUNTx50h then
  308.       name = "  HUNT x50 - High  - 1.98%  "
  309.       bethigh = true
  310.     end
  311.     if HUNTx50l then
  312.       name = "  HUNT x50 - Low   - 1.98%  "
  313.       bethigh = false
  314.     end
  315.   end
  316.   -----------------------------------
  317.  
  318.  
  319.   -----------HUNTx100-----------------
  320.   if (HUNTx100h or HUNTx100l) then
  321.  
  322.     chance = 0.9900
  323.     huntbet = huntbetmulty * basebet * 2.5 + (curbal * 0.00000107675)
  324.     nextbet = huntbet
  325.  
  326.     if losecount >= 50 then
  327.       nextbet = huntbet * 2
  328.     end
  329.     if losecount >= 51 then
  330.       nextbet = previousbet * 1.0122
  331.     end
  332.  
  333.     if HUNTx100h then
  334.       name = "  HUNT x100 - High  - 0.99%  "
  335.       bethigh = true
  336.     end
  337.     if HUNTx100l then
  338.       name = "  HUNT x100  - Low   - 0.99%  "
  339.       bethigh = false
  340.     end
  341.   end
  342.   ------------------------------------
  343.  
  344.  
  345.   -----------HUNTx225-----------------
  346.   if (HUNTx225h or HUNTx225l) then
  347.  
  348.     chance = 0.4400
  349.     huntbet = huntbetmulty * basebet * 3 + (curbal * 0.00000107675)
  350.     nextbet = huntbet
  351.  
  352.     if losecount >= 111 then
  353.       nextbet = huntbet * 2
  354.     end
  355.     if losecount >= 112 then
  356.       nextbet = previousbet * 1.0066
  357.     end
  358.  
  359.     if HUNTx225h then
  360.       name = "  HUNT x225 - High  - 0.44%  "
  361.       bethigh = true
  362.     end
  363.     if HUNTx225l then
  364.       name = "  HUNT x225 - Low   - 0.44%  "
  365.       bethigh = false
  366.     end
  367.   end
  368.   ------------------------------------
  369.  
  370.  
  371.   -----------HUNTx450-----------------
  372.   if (HUNTx450h or HUNTx450l) then
  373.  
  374.     chance = 0.2200
  375.     huntbet = huntbetmulty * basebet * 2.2 + (curbal * 0.00000107675)
  376.     nextbet = huntbet
  377.  
  378.     if losecount >= 225 then
  379.       nextbet = huntbet * 2
  380.     end
  381.     if losecount >= 226 then
  382.       nextbet = previousbet * 1.00288
  383.     end
  384.  
  385.     if HUNTx450h then
  386.       name = "  HUNT x450 - High  - 0.22%  "
  387.       bethigh = true
  388.     end
  389.     if HUNTx450l then
  390.       name = "  HUNT x450 - Low   - 0.22%  "
  391.       bethigh = false
  392.     end
  393.   end
  394.   ------------------------------------
  395.  
  396.  
  397.   -----------HUNTx990-----------------
  398.   if (HUNTx990h or HUNTx990l) then
  399.  
  400.     chance = 0.1000
  401.     huntbet = huntbetmulty * basebet * 2.2 + (curbal * 0.00000107675)
  402.     nextbet = huntbet
  403.  
  404.     if losecount >= 495 then
  405.       nextbet = huntbet * 2
  406.     end
  407.     if losecount >= 496 then
  408.       nextbet = previousbet * 1.0012
  409.     end
  410.  
  411.     if HUNTx990h then
  412.       name = "  HUNT x990 - High  - 0.10%  "
  413.       bethigh = true
  414.     end
  415.     if HUNTx990l then
  416.       name = "  HUNT x990 - Low   - 0.10%  "
  417.       bethigh = false
  418.     end
  419.   end
  420.   ------------------------------------
  421.  
  422.   -----------HUNTx1414-----------------
  423.   if (HUNTx1414h or HUNTx1414l) then
  424.  
  425.     chance = 0.0700
  426.     huntbet = huntbetmulty * basebet * 2.4 + (curbal * 0.00000107675)
  427.     nextbet = huntbet
  428.  
  429.     if losecount >= 707 then
  430.       nextbet = huntbet * 2
  431.     end
  432.     if losecount >= 708 then
  433.       nextbet = previousbet * 1.001
  434.     end
  435.  
  436.     if HUNTx1414h then
  437.       name = "  HUNT x1414 - High  - 0.07%  "
  438.       bethigh = true
  439.     end
  440.     if HUNTx1414l then
  441.       name = "  HUNT x1414 - Low   - 0.07%  "
  442.       bethigh = false
  443.     end
  444.   end
  445.   ------------------------------------
  446.  
  447.  
  448.   -----------HUNTx3300-----------------
  449.   if (HUNTx3300h or HUNTx3300l) then
  450.  
  451.     chance = 0.0300
  452.     huntbet = huntbetmulty * basebet * 2.5 + (curbal * 0.00000107675)
  453.     nextbet = huntbet
  454.  
  455.     if losecount >= 1650 then
  456.       nextbet = huntbet * 2
  457.     end
  458.     if losecount >= 1651 then
  459.       nextbet = previousbet * 1.00044
  460.     end
  461.  
  462.     if HUNTx3300h then
  463.       name = "  HUNT x3300 - High  - 0.03%  "
  464.       bethigh = true
  465.     end
  466.     if HUNTx3300l then
  467.       name = "  HUNT x3300 - Low   - 0.03%  "
  468.       bethigh = false
  469.     end
  470.   end
  471.   ------------------------------------
  472.  
  473.   -----------HUNTx9900----------------
  474.   if (HUNTx9900h or HUNTx9900l) then
  475.  
  476.     chance = 0.0100
  477.     huntbet = huntbetmulty * basebet * 2.6 + (curbal * 0.00000107675)
  478.     nextbet = huntbet
  479.  
  480.     if losecount >= 4950 then
  481.       nextbet = huntbet * 2
  482.     end
  483.     if losecount >= 4951 then
  484.       nextbet = previousbet * 1.0002
  485.     end
  486.  
  487.     if HUNTx9900h then
  488.       name = "  HUNT x9900 - High  - 0.01%  "
  489.       bethigh = true
  490.     end
  491.     if HUNTx9900l then
  492.       name = "  HUNT x9900 - Low   - 0.01%  "
  493.       bethigh = false
  494.     end
  495.   end
  496.   ------------------------------------
  497.  
  498.   -------Counters-Resets-High---------
  499.   if LBR > 96.03 then
  500.     x25h = 0
  501.     if LBR > 98.01 then
  502.       x50h = 0
  503.       if LBR > 99.00 then
  504.         x100h = 0
  505.         if LBR > 99.55 then
  506.           x225h = 0
  507.           if LBR > 99.77 then
  508.             x450h = 0
  509.             if LBR > 99.89 then
  510.               x990h = 0
  511.               if LBR > 99.92 then
  512.                 x1414h = 0
  513.                 if LBR > 99.96 then
  514.                   x3300h = 0
  515.                   if LBR > 99.98 then
  516.                     x9900h = 0
  517.                   end
  518.                 end
  519.               end
  520.             end
  521.           end
  522.         end
  523.       end
  524.     end
  525.   end
  526.  
  527.  
  528.   -------Counters-Resets-low----------
  529.   if LBR < 3.97 then
  530.     x25l = 0
  531.     if LBR < 1.98 then
  532.       x50l = 0
  533.       if LBR < 0.99 then
  534.         x100l = 0
  535.         if LBR < 0.44 then
  536.           x225l = 0
  537.           if LBR < 0.22 then
  538.             x450l = 0
  539.             if LBR < 0.10 then
  540.               x990l = 0
  541.               if LBR < 0.07 then
  542.                 x1414l = 0
  543.                 if LBR < 0.03 then
  544.                   x3300l = 0
  545.                   if LBR < 0.01 then
  546.                     x9900l = 0
  547.                   end
  548.                 end
  549.               end
  550.             end
  551.           end
  552.         end
  553.       end
  554.     end
  555.   end
  556.  
  557.  
  558.   ------------------------------------
  559.  
  560.   ------------Hunt-Resets-------------
  561.   if (win and HUNT) then
  562.     HUNT = false
  563.     HUNTx25l = false   --@  3.9600%
  564.     HUNTx25h = false   --@  3.9600%
  565.     --
  566.     HUNTx50l = false   --@  1.9800%
  567.     HUNTx50h = false   --@  1.9800%
  568.     --
  569.     HUNTx100l = false  --@  0.9900%
  570.     HUNTx100h = false  --@  0.9900%
  571.     --
  572.     HUNTx225l = false  --@  0.4400%
  573.     HUNTx225h = false  --@  0.4400%
  574.     --
  575.     HUNTx450l = false  --@  0.2200%
  576.     HUNTx450h = false  --@  0.2200%
  577.     --
  578.     HUNTx990l = false  --@  0.1000%
  579.     HUNTx990h = false  --@  0.1000%
  580.     --
  581.     HUNTx1414l = false --@  0.0700%
  582.     HUNTx1414h = false --@  0.0700%
  583.     --
  584.     HUNTx3300l = false --@  0.0300%
  585.     HUNTx3300h = false --@  0.0300%
  586.     --
  587.     HUNTx9900l = false --@  0.0100%
  588.     HUNTx9900h = false --@  0.0100%
  589.   end
  590.   --------------------------------
  591.  
  592.   -------------Hunt-Start-------------
  593.   if not HUNT then
  594.     if (x9900h >= x9900wait * devider and  x9900h >= x9900l) then
  595.       HUNT = true
  596.       HUNTx9900h = true
  597.     else
  598.       if x9900l >= x9900wait * devider then
  599.         HUNT = true
  600.         HUNTx9900l = true
  601.       else
  602.         --
  603.         --
  604.         if (x3300h >= x3300wait * devider and  x3300h >= x3300l) then
  605.           HUNT = true
  606.           HUNTx3300h = true
  607.         else
  608.           if x3300l >= x3300wait * devider then
  609.             HUNT = true
  610.             HUNTx3300l = true
  611.           else
  612.             --
  613.             --
  614.             if (x1414h >= x1414wait * devider and  x1414h >= x1414l) then
  615.               HUNT = true
  616.               HUNTx1414h = true
  617.             else
  618.               if x1414l >= x1414wait * devider then
  619.                 HUNT = true
  620.                 HUNTx1414l = true
  621.               else
  622.                 --
  623.                 --
  624.                 if (x990h >= x990wait * devider and  x990h >= x990l) then
  625.                   HUNT = true
  626.                   HUNTx990h = true
  627.                 else
  628.                   if x990l >= x990wait * devider then
  629.                     HUNT = true
  630.                     HUNTx990l = true
  631.                   else
  632.                     --
  633.                     --
  634.                     if (x450h >= x450wait * devider and  x450h >= x450l) then
  635.                       HUNT = true
  636.                       HUNTx450h = true
  637.                     else
  638.                       if x450l >= x450wait * devider then
  639.                         HUNT = true
  640.                         HUNTx450l = true
  641.                       else
  642.                         --
  643.                         --
  644.                         if (x225h >= x225wait * devider and  x225h >= x225l) then
  645.                           HUNT = true
  646.                           HUNTx225h = true
  647.                         else
  648.                           if x225l >= x225wait * devider then
  649.                             HUNT = true
  650.                             HUNTx225l = true
  651.                           else
  652.                             --
  653.                             --
  654.                             if (x100h >= x100wait * devider and  x100h >= x100l) then
  655.                               HUNT = true
  656.                               HUNTx100h = true
  657.                             else
  658.                               if x100l >= x100wait * devider then
  659.                                 HUNT = true
  660.                                 HUNTx100l = true
  661.                               else
  662.                                 --
  663.                                 --
  664.                                 if (x50h >= x50wait * devider and  x50h >= x50l) then
  665.                                   HUNT = true
  666.                                   HUNTx50h = true
  667.                                 else
  668.                                   if x50l >= x50wait * devider then
  669.                                     HUNT = true
  670.                                     HUNTx50l = true
  671.                                   else
  672.                                     --
  673.                                     --
  674.                                     if (x25h >= x25wait * devider and  x25h >= x25l) then
  675.                                       HUNT = true
  676.                                       HUNTx25h = true
  677.                                     else
  678.                                       if x25l >= x25wait * devider then
  679.                                         HUNT = true
  680.                                         HUNTx25l = true
  681.                                       end
  682.                                     end
  683.                                   end
  684.                                 end
  685.                               end
  686.                             end
  687.                           end
  688.                         end
  689.                       end
  690.                     end
  691.                   end
  692.                 end
  693.               end
  694.             end
  695.           end
  696.         end
  697.       end
  698.     end
  699.   end
  700.  
  701. end
  702. end
Advertisement
Add Comment
Please, Sign In to add comment