Advertisement
keybored_

Module 2

Nov 20th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 19.85 KB | None | 0 0
  1. Module Module2
  2.  
  3.     Public Sub timer(ByVal answer)
  4.         Console.WriteLine("How long would you like an alarm for?")
  5.         Console.WriteLine("Minutes or seconds?")
  6.         Dim answer3 As String = Console.ReadLine
  7.  
  8.  
  9.         Dim SAPI = CreateObject("SAPI.spvoice")
  10.         SAPI.Volume = 100
  11.  
  12.         If answer3 = "minutes" Then
  13.             Console.WriteLine("How many minutes?")
  14.             Dim answer4 As String = Console.ReadLine()
  15.             Dim timeraaaa As Integer = answer4
  16.             timeraaaa = timeraaaa * 60000
  17.  
  18.             Threading.Thread.Sleep(timeraaaa)
  19.  
  20.             SAPI.Speak("Ding! Timer's done!")
  21.  
  22.         ElseIf answer3 = "seconds" Then
  23.             Console.WriteLine("How many seconds?")
  24.             Dim answer4 As String = Console.ReadLine()
  25.  
  26.             Dim timeraaaa As Integer = answer4
  27.             timeraaaa = timeraaaa * 1000
  28.             Threading.Thread.Sleep(timeraaaa)
  29.  
  30.             SAPI.Speak("Ding! Timer's done!")
  31.             Threading.Thread.Sleep(250)
  32.         End If
  33.  
  34.  
  35.         Call trueBeginning()
  36.     End Sub
  37.     Public Sub textChangerSub()
  38.         Console.WriteLine("What do you want to convert to?")
  39.         Console.WriteLine("HexTex / TexHex / BinTex / TexBin")
  40.         Dim textConv As String = Console.ReadLine()
  41.  
  42.         If textConv = "TexHex" Then
  43.             Console.WriteLine("Input your text to be converted.")
  44.             Dim textBeConv As String = Console.ReadLine
  45.  
  46.             'textBeConv = textBeConv.Replace.(" ", " 20").Replace("!", " 21").Replace("#", " 23").Replace("$", " 24").Replace("%", " 25").Replace("'", " 27").Replace("(", " 28").Replace(")", " 29").Replace("*", " 2A").Replace("+", " 2B").Replace(",", " 2C").Replace("-", " 2D").Replace(".", " 2E").Replace("/", " 2F").Replace("0", " 30").Replace("1", " 31").Replace("2", " 32").Replace("3", " 33").Replace("4", " 34").Replace("5", " 35").Replace("6", " 36").Replace("7", " 37").Replace("8", " 38").Replace("9", " 39").Replace("", "").Replace("", "").Replace(":", " 3A").Replace(";", " 3B").Replace("<", " 3C").Replace("=", " 3D").Replace(">", " 3E").Replace("?", " 3F").Replace("@", " 40").Replace("A", " 41").Replace("B", " 42").Replace("C", " 43")
  47.             Console.WriteLine(textBeConv)
  48.  
  49.             Call trueBeginning()
  50.  
  51.         End If
  52.  
  53.     End Sub
  54.  
  55.  
  56.     Public Sub currencyagh(answer As String)
  57.         Console.WriteLine("What currencies?")
  58.         Console.WriteLine("
  59.        USD > JPY / USD > EURO / USD > GBP")
  60.         Dim answer2 As String = Console.ReadLine()
  61.  
  62.         Dim money As String
  63.         Console.WriteLine("How much?")
  64.         money = Console.ReadLine
  65.         If answer2 = "JPY" OrElse answer2 = "jpy" OrElse answer2 = "japan" OrElse answer2 = "USD > JPY" Then
  66.             money = money * 112.51
  67.             Console.WriteLine("You'll have " & money & " yen.")
  68.         ElseIf answer2 = "EURO" OrElse answer2 = "euro" OrElse answer2 = "USD > EURO" OrElse answer2 = "use > euro" Then
  69.             money = money * 0.85
  70.             Console.WriteLine("You'll have " & money & " euros.")
  71.         ElseIf answer2 = "gbp" OrElse answer2 = "GBP" OrElse answer2 = "USD > GBP" OrElse answer2 = "usd > gbp" Then
  72.             money = money * 0.76
  73.             Console.WriteLine("You'll have " & money & " pounds.")
  74.         Else
  75.             Console.WriteLine("You have not specified a currency to convert to.")
  76.             Console.WriteLine("So, per usual, we'll revert to our default.")
  77.             Threading.Thread.Sleep(1000)
  78.             Console.WriteLine("Which is schmeckles.")
  79.             Threading.Thread.Sleep(1000)
  80.             money = money * 244
  81.             Threading.Thread.Sleep(1000)
  82.             Console.WriteLine("You'll have " & money & " schmeckles.")
  83.             Threading.Thread.Sleep(1000)
  84.         End If
  85.  
  86.         Threading.Thread.Sleep(500)
  87.         Call trueBeginning()
  88.  
  89.     End Sub
  90.     Public Sub diceRoll()
  91.         'dice
  92.         Dim randGen As New Random
  93.         '    'capture value of die amount
  94.         Console.WriteLine("How many dice would you like to roll?")
  95.         Dim dieAmount As Integer = Console.ReadLine()
  96.  
  97.         'capture amount of sides
  98.         Console.WriteLine("How many sides?")
  99.         Dim dieSides As Integer = Console.ReadLine()
  100.  
  101.         'Dim dieTotalSides As Integer
  102.         'dieTotalSides = dieSides * dieAmount
  103.  
  104.         Dim dieAns As Integer
  105.         Dim ans As Integer
  106.  
  107.         Do Until ans = dieAmount
  108.             dieAns = randGen.Next(1, (dieSides + 1))
  109.             Console.WriteLine("You rolled a " & dieAns & "!")
  110.             ans += 1
  111.         Loop
  112.  
  113.         Call trueBeginning()
  114.     End Sub
  115.     Public Sub chooseSub()
  116.         'choice maker
  117.         Dim randGen As New Random
  118.         Console.WriteLine("How many choices do you have?")
  119.         Console.WriteLine("You can write up to 7 choices. You can
  120. write in a number (2 to 7)")
  121.         Dim choiceAmount As String = Console.ReadLine()
  122.         Dim choice1 As String
  123.         Dim choice2 As String
  124.         Dim choice3 As String
  125.         Dim choice4 As String
  126.         Dim choice5 As String
  127.         Dim choice6 As String
  128.         Dim choice7 As String
  129.  
  130.         Select Case choiceAmount
  131.             Case 1
  132.                 Console.WriteLine("Invalid!")
  133.             Case 2
  134.                 Console.WriteLine("Choice 1?")
  135.                 choice1 = Console.ReadLine
  136.                 Console.WriteLine("Choice 2?")
  137.                 choice2 = Console.ReadLine
  138.             Case 3
  139.                 Console.WriteLine("Choice 1?")
  140.                 choice1 = Console.ReadLine
  141.                 Console.WriteLine("Choice 2?")
  142.                 choice2 = Console.ReadLine
  143.                 Console.WriteLine("Choice 3?")
  144.                 choice3 = Console.ReadLine
  145.             Case 4
  146.                 Console.WriteLine("Choice 1?")
  147.                 choice1 = Console.ReadLine
  148.                 Console.WriteLine("Choice 2?")
  149.                 choice2 = Console.ReadLine
  150.                 Console.WriteLine("Choice 3?")
  151.                 choice3 = Console.ReadLine
  152.                 Console.WriteLine("Choice 4?")
  153.                 choice4 = Console.ReadLine
  154.             Case 5
  155.                 Console.WriteLine("Choice 1?")
  156.                 choice1 = Console.ReadLine
  157.                 Console.WriteLine("Choice 2?")
  158.                 choice2 = Console.ReadLine
  159.                 Console.WriteLine("Choice 3?")
  160.                 choice3 = Console.ReadLine
  161.                 Console.WriteLine("Choice 4?")
  162.                 choice4 = Console.ReadLine
  163.                 Console.WriteLine("Choice 5?")
  164.                 choice5 = Console.ReadLine
  165.             Case 6
  166.                 Console.WriteLine("Choice 1?")
  167.                 choice1 = Console.ReadLine
  168.                 Console.WriteLine("Choice 2?")
  169.                 choice2 = Console.ReadLine
  170.                 Console.WriteLine("Choice 3?")
  171.                 choice3 = Console.ReadLine
  172.                 Console.WriteLine("Choice 4?")
  173.                 choice4 = Console.ReadLine
  174.                 Console.WriteLine("Choice 5?")
  175.                 choice5 = Console.ReadLine
  176.                 Console.WriteLine("Choice 6?")
  177.                 choice6 = Console.ReadLine
  178.             Case 7
  179.                 Console.WriteLine("Choice 1?")
  180.                 choice1 = Console.ReadLine
  181.                 Console.WriteLine("Choice 2?")
  182.                 choice2 = Console.ReadLine
  183.                 Console.WriteLine("Choice 3?")
  184.                 choice3 = Console.ReadLine
  185.                 Console.WriteLine("Choice 4?")
  186.                 choice4 = Console.ReadLine
  187.                 Console.WriteLine("Choice 5?")
  188.                 choice5 = Console.ReadLine
  189.                 Console.WriteLine("Choice 6?")
  190.                 choice6 = Console.ReadLine
  191.                 Console.WriteLine("Choice 7?")
  192.                 choice7 = Console.ReadLine
  193.         End Select
  194.  
  195.  
  196.         If choiceAmount = 2 Then
  197.             Dim int1 As Integer
  198.             int1 = randGen.Next(1, 3)
  199.             If int1 = 1 Then
  200.                 Console.WriteLine("ANSWER: " & choice1)
  201.             Else
  202.                 Console.WriteLine("ANSWER: " & choice2)
  203.             End If
  204.         ElseIf choiceAmount = 3 Then
  205.             Dim int1 As Integer
  206.             int1 = randGen.Next(1, 4)
  207.             If int1 = 1 Then
  208.                 Console.WriteLine("ANSWER: " & choice1)
  209.             ElseIf int1 = 2 Then
  210.                 Console.WriteLine("ANSWER: " & choice2)
  211.             Else
  212.                 Console.WriteLine("ANSWER: " & choice3)
  213.             End If
  214.         ElseIf choiceAmount = 4 Then
  215.             Dim int1 As Integer
  216.             int1 = randGen.Next(1, 5)
  217.             If int1 = 1 Then
  218.                 Console.WriteLine("ANSWER: " & choice1)
  219.             ElseIf int1 = 2 Then
  220.                 Console.WriteLine("ANSWER: " & choice2)
  221.             ElseIf int1 = 3 Then
  222.                 Console.WriteLine("ANSWER: " & choice3)
  223.             Else
  224.                 Console.WriteLine("ANSWER: " & choice4)
  225.             End If
  226.         ElseIf choiceAmount = 5 Then
  227.             Dim int1 As Integer
  228.             int1 = randGen.Next(1, 6)
  229.             If int1 = 1 Then
  230.                 Console.WriteLine("ANSWER: " & choice1)
  231.             ElseIf int1 = 2 Then
  232.                 Console.WriteLine("ANSWER: " & choice2)
  233.             ElseIf int1 = 3 Then
  234.                 Console.WriteLine("ANSWER: " & choice3)
  235.             ElseIf int1 = 4 Then
  236.                 Console.WriteLine("ANSWER: " & choice4)
  237.             Else
  238.                 Console.WriteLine("ANSWER: " & choice5)
  239.             End If
  240.         ElseIf choiceAmount = 6 Then
  241.             Dim int1 As Integer
  242.             int1 = randGen.Next(1, 7)
  243.             If int1 = 1 Then
  244.                 Console.WriteLine("ANSWER: " & choice1)
  245.             ElseIf int1 = 2 Then
  246.                 Console.WriteLine("ANSWER: " & choice2)
  247.             ElseIf int1 = 3 Then
  248.                 Console.WriteLine("ANSWER: " & choice3)
  249.             ElseIf int1 = 4 Then
  250.                 Console.WriteLine("ANSWER: " & choice4)
  251.             ElseIf int1 = 5 Then
  252.                 Console.WriteLine("ANSWER: " & choice5)
  253.             Else
  254.                 Console.WriteLine("ANSWER: " & choice6)
  255.             End If
  256.         ElseIf choiceAmount = 7 Then
  257.             Dim int1 As Integer
  258.             int1 = randGen.Next(1, 8)
  259.             If int1 = 1 Then
  260.                 Console.WriteLine("ANSWER: " & choice1)
  261.             ElseIf int1 = 2 Then
  262.                 Console.WriteLine("ANSWER: " & choice2)
  263.             ElseIf int1 = 3 Then
  264.                 Console.WriteLine("ANSWER: " & choice3)
  265.             ElseIf int1 = 4 Then
  266.                 Console.WriteLine("ANSWER: " & choice4)
  267.             ElseIf int1 = 5 Then
  268.                 Console.WriteLine("ANSWER: " & choice5)
  269.             ElseIf int1 = 6 Then
  270.                 Console.WriteLine("ANSWER: " & choice6)
  271.             Else
  272.                 Console.WriteLine("ANSWER: " & choice7)
  273.             End If
  274.         End If
  275.  
  276.         Call trueBeginning()
  277.  
  278.     End Sub
  279.     Public Sub dndConverter()
  280.         'draconic
  281.         Console.WriteLine("Write in your sentence to be converted into Draconic!")
  282.         Dim message As String = Console.ReadLine
  283.  
  284.         message = message.Replace("food", "achthend").Replace("green", "achuak").Replace("female", "aesthyr").Replace("shit", "aithyas").Replace("magic", "arcaniss").Replace("valley", "arux").Replace("war", "aryte").Replace("warrior", "arytiss").Replace("celestial", "athear").Replace("bronze", "aujir").Replace("gold", "aurix").Replace("fly", "austrat").Replace("yes", "axun").Replace("animal", "baeshra").Replace("good", "bensvlek").Replace("forest", "caesin").Replace("sword", "caex").Replace("red", "charir").Replace("tavern", "chaokartel").Replace("root", "charchuka").Replace("take", "clax").Replace("dragon", "darastrix").Replace("hate", "dartak").Replace("bribe", "durah").Replace("tomorrow", "earenk").Replace("year", "eorikc").Replace("through", "erekess").Replace("coward", "faessi").Replace("serve", "faestir").Replace("slayer", "fintir").Replace("breathe", "frahr").Replace("axe", "garurt").Replace("quest", "geth").Replace("go", "ghestrisj").Replace("after", "ghent").Replace("orc", "ghik").Replace("ogre", "ghontix").Replace("before", "ghoros").Replace("claw", "gix").Replace("wood", "grovisv").Replace("fate", "haurach").Replace("bastard", "henich").Replace("water", "hesjing").Replace("fortress", "huruthi").Replace("", "").Replace("", "")
  285.  
  286.  
  287.     End Sub
  288.     Public Sub eightBall()
  289.         '8 ball
  290.         Console.WriteLine("Ask anything!")
  291.         Console.ReadLine()
  292.         'ok this is funny to me because your
  293.         'input doesn't even get put into a variable.
  294.         'it just randomly picks a fortune
  295.  
  296.         Dim randGen As New Random
  297.  
  298.         Dim message As String
  299.         message = randGen.Next(1, 21)
  300.  
  301.         Select Case message
  302.             Case 1
  303.                 Console.WriteLine("It is certain.")
  304.             Case 2
  305.                 Console.WriteLine("It is decidedly so.")
  306.             Case 3
  307.                 Console.WriteLine("Without a doubt.")
  308.             Case 4
  309.                 Console.WriteLine("Yes, definitely.")
  310.             Case 5
  311.                 Console.WriteLine("You may rely on it.")
  312.             Case 6
  313.                 Console.WriteLine("As I see it, yes.")
  314.             Case 7
  315.                 Console.WriteLine("Most likely.")
  316.             Case 8
  317.                 Console.WriteLine("Outlook good.")
  318.             Case 9
  319.                 Console.WriteLine("Yes.")
  320.             Case 10
  321.                 Console.WriteLine("Signs point to yes.")
  322.             Case 11
  323.                 Console.WriteLine("Reply hazy. Try again.")
  324.             Case 12
  325.                 Console.WriteLine("Ask again later.")
  326.             Case 13
  327.                 Console.WriteLine("Better not tell you now.")
  328.             Case 14
  329.                 Console.WriteLine("Cannot predict now.")
  330.             Case 15
  331.                 Console.WriteLine("Concentrate, and try again.")
  332.             Case 16
  333.                 Console.WriteLine("Don't count on it.")
  334.             Case 17
  335.                 Console.WriteLine("My reply is no.")
  336.             Case 18
  337.                 Console.WriteLine("My sources say no.")
  338.             Case 19
  339.                 Console.WriteLine("Outlook not so good.")
  340.             Case 20
  341.                 Console.WriteLine("Very doubtful.")
  342.         End Select
  343.  
  344.         Call trueBeginning()
  345.     End Sub
  346.     Public Sub randNum()
  347.         'picks a random number
  348.         Dim randNum As New Random
  349.         Console.WriteLine("Pick a limit to your random number!")
  350.         Dim randTop As String = Console.ReadLine()
  351.         Dim newNum As Integer
  352.  
  353.  
  354.         newNum = randNum.Next(1, (randTop + 1))
  355.  
  356.         Console.WriteLine("Your random number is " & newNum & ".")
  357.  
  358.         Call trueBeginning()
  359.     End Sub
  360.     Sub PlayBackgroundSoundFile()
  361.         'plays music
  362.         Dim answerMusic As String
  363.         Console.WriteLine("Which song?")
  364.         Console.WriteLine("1 - Kahoot Lobby
  365. 2 - Careless Whisper
  366. 3 - All Star
  367. 4 - Fergalicious
  368. 5 - Hey Ya
  369. 6 - Roundabout
  370. 7 - Mii Plaza
  371. 8 - Pizza Theme
  372. 9 - Redbone
  373. 10 - Give It All You Got
  374. 11 - Merry Go
  375. 12 - Africa
  376. 13 - My Two Lovely Uncles
  377. 14 - My Shiny Teeth and Me
  378. 15 - Gary Come Home
  379. 16 - San Andreas
  380. 17 - Flintstones
  381. 18 - Ocean Man
  382. 19 - Make A Man (Out of You)
  383. 20 - Conjunction Junction")
  384.  
  385.  
  386.         answerMusic = Console.ReadLine
  387.  
  388.  
  389.         Select Case answerMusic
  390.             Case 1
  391.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\kahoot.wav")
  392.             Case 2
  393.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\deaddude.wav")
  394.             Case 3
  395.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\allstar.wav")
  396.             Case 4
  397.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\fergie.wav")
  398.             Case 5
  399.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\heyya.wav")
  400.             Case 6
  401.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\jjba.wav")
  402.             Case 7
  403.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\mii.wav")
  404.             Case 8
  405.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\pizza.wav")
  406.             Case 9
  407.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\redbone.wav")
  408.             Case 10
  409.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\spongebob.wav")
  410.             Case 11
  411.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\merrygo.wav")
  412.             Case 12
  413.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\africa.wav")
  414.             Case 13
  415.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\uncles.wav")
  416.             Case 14
  417.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\shinyteeth.wav")
  418.             Case 15
  419.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\garyhome.wav")
  420.             Case 16
  421.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\gta.wav")
  422.             Case 17
  423.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\flintstones.wav")
  424.             Case 18
  425.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\oceanman.wav")
  426.             Case 19
  427.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\beaman.wav")
  428.             Case 20
  429.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\conjfunc.wav")
  430.             Case Else
  431.                 My.Computer.Audio.Play("E:\DIS THE STUFF\resources\wrong.wav")
  432.         End Select
  433.         Threading.Thread.Sleep(500)
  434.         Call trueBeginning()
  435.     End Sub
  436.     Public Sub GetIPAddress()
  437.  
  438.         Dim strHostName As String
  439.  
  440.         Dim strIPAddress As String
  441.  
  442.         Dim strSubnetMask As String
  443.  
  444.         strHostName = System.Net.Dns.GetHostName()
  445.  
  446.         strIPAddress = Net.Dns.GetHostByName(strHostName).AddressList(0).ToString()
  447.  
  448.         strSubnetMask = Net.Dns.GetHostEntry(strHostName).AddressList(0).ToString()
  449.  
  450.         Console.WriteLine("Host Name: " & strHostName & "; IPv4 IP Address: " & strIPAddress & "; IPv6 Subnet Mask: " & strSubnetMask)
  451.  
  452.         Console.WriteLine("Source Code: ")
  453.         Console.WriteLine("(Don't worry! I'll open the pages for you!)")
  454.         Console.WriteLine("Module 1: https://pastebin.com/u8sSeNHC")
  455.  
  456.         Console.WriteLine("Module 2: https://pastebin.com/QSgqe4C7")
  457.         Threading.Thread.Sleep(7000)
  458.         Dim webAddress As String = "https://pastebin.com/u8sSeNHC"
  459.         Dim webAddress2 As String = "https://pastebin.com/QSgqe4C7"
  460.         Process.Start(webAddress)
  461.         Process.Start(webAddress2)
  462.         Call trueBeginning()
  463.     End Sub
  464.  
  465.     Private Function webAddress() As String
  466.         Throw New NotImplementedException()
  467.     End Function
  468.     Public Sub searchYT()
  469.         'https://www.youtube.com/results?search_query=
  470.         Console.WriteLine("What video?")
  471.         Dim answer As String = Console.ReadLine
  472.  
  473.         Console.WriteLine("We don't want to be presumptuous, so we'll open up the search page for you,
  474. just so you can pick the video yourself :)")
  475.         Console.WriteLine("Loading...")
  476.         Threading.Thread.Sleep(2000)
  477.         Dim webAddress As String = "https://www.youtube.com/results?search_query=" & answer
  478.         Process.Start(webAddress)
  479.         Call trueBeginning()
  480.     End Sub
  481. End Module
  482. '     ⣠⣦⣤⣀
  483. '⠀⠀⠀⠀⢡⣤⣿⣿
  484. '⠀⠀⠀⠀⠠⠜⢾⡟
  485. '⠀⠀⠀⠀⠀⠹⠿⠃⠄
  486. '⠀⠀⠈⠀⠉⠉⠑⠀⠀⠠⢈⣆
  487. '⠀⠀⣄⠀⠀⠀⠀⠀⢶⣷⠃⢵
  488. '⠐⠰⣷⠀⠀⠀⠀⢀⢟⣽⣆⠀⢃
  489. '⠰⣾⣶⣤⡼⢳⣦⣤⣴⣾⣿⣿⠞
  490. '⠀⠈⠉⠉⠛⠛⠉⠉⠉⠙⠁
  491. '⠀⠀⡐⠘⣿⣿⣯⠿⠛⣿⡄
  492. '⠀⠀⠁⢀⣄⣄⣠⡥⠔⣻⡇
  493. '⠀⠀⠀⠘⣛⣿⣟⣖⢭⣿⡇
  494. '⠀⠀⢀⣿⣿⣿⣿⣷⣿⣽⡇
  495. '⠀⠀⢸⣿⣿⣿⡇⣿⣿⣿⣇
  496. '⠀⠀⠀⢹⣿⣿⡀⠸⣿⣿⡏
  497. '⠀⠀⠀⢸⣿⣿⠇⠀⣿⣿⣿
  498. '⠀⠀⠀⠈⣿⣿⠀⠀⢸⣿⡿
  499. '⠀⠀⠀⠀⣿⣿⠀⠀⢀⣿⡇
  500. '⠀⣠⣴⣿⡿⠟⠀⠀⢸⣿⣷
  501. '⠀⠉⠉⠁⠀⠀⠀⠀⢸⣿⣿⠁
  502. '⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement