fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. interface IStrategy
  5. {
  6. bool DoSomething();
  7. string Description {get; set;}
  8. }
  9.  
  10. class StratFap : IStrategy
  11. {
  12. public bool DoSomething() {Console.WriteLine("fap"); return true;}
  13. public string Description {get; set;}
  14. }
  15. class StratQuit : IStrategy
  16. {
  17. public bool DoSomething() {Console.WriteLine("Bye!"); return false;}
  18. public string Description {get; set;}
  19. }
  20.  
  21. class MenuPoint
  22. {
  23. public string Input {get; set;}
  24. public IStrategy Strat {get; set;}
  25.  
  26. public MenuPoint(string input, IStrategy strat){ Input = input; Strat = strat; }
  27. }
  28.  
  29. class Program
  30. {
  31. static void Main()
  32. {
  33. List<MenuPoint> menu= new List<MenuPoint>();
  34. menu.Add(new MenuPoint("dick", new StratFap() {Description = "fap"}));
  35. menu.Add(new MenuPoint("q", new StratQuit() {Description = "quit"}));
  36. GUI(menu);
  37. }
  38.  
  39. static void GUI(List<MenuPoint> menu)
  40. {
  41. bool keepGoing = new bool();
  42. int ind = new int();
  43. string input;
  44.  
  45. ConsoleGui:
  46. foreach (var item in menu)
  47. Console.WriteLine($"Enter \"{item.Input}\" to {item.Strat.Description}");
  48.  
  49. input = Console.ReadLine();
  50. ind = -1;
  51. for (int i = 0; i < menu.Count; i++)
  52. if (menu[i].Input == input) ind = i;
  53.  
  54. if (ind >= 0) keepGoing = menu[ind].Strat.DoSomething();
  55. else {Console.WriteLine("Bad input, try again"); goto ConsoleGui;}
  56. if (keepGoing) goto ConsoleGui;
  57. }
  58. }
Runtime error #stdin #stdout 0.05s 26904KB
stdin
Standard input is empty
stdout
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad input, try again
Enter "dick" to fap
Enter "q" to quit
Bad inpu