diff --git a/SoundBoard.v11.suo b/SoundBoard.v11.suo index 4a81323..7ce458b 100644 Binary files a/SoundBoard.v11.suo and b/SoundBoard.v11.suo differ diff --git a/SoundBoard/GenerateRandomPlayList.cs b/SoundBoard/GenerateRandomPlayList.cs index 95fb791..fc3e189 100644 --- a/SoundBoard/GenerateRandomPlayList.cs +++ b/SoundBoard/GenerateRandomPlayList.cs @@ -3,11 +3,83 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using System.Windows.Forms; +using System.IO; namespace SoundBoard { class GenerateRandomPlayList { + private Random randomNumber = new Random(); //Random number generator + private string __workingDirectory = Path.GetDirectoryName(Application.ExecutablePath); + public string[] SingleViewPlayList(List> listViewContents, int iterations, int index) + { + string[] playList = new String[iterations]; + string tempFileName; + int i = 0; + int itemCount = listViewContents[index].Count - 1; //Count is not zero index based + + do + { + tempFileName = listViewContents[index][randomNumber.Next(0, itemCount)]; + if (playList.Contains(tempFileName)) + { + playList[i] = listViewContents[index][randomNumber.Next(0, itemCount)]; + } + else + { + playList[i] = tempFileName; + } + i++; + } while (i < iterations); + return playList; + } + + public string[] MulitViewPlayList(List> listViewContents, int iterations) + { + string[] playList = new String[iterations]; + int zeroIndexCount = listViewContents[0].Count; + int tabCount = listViewContents.Count; + int itemCount; + int i = 0; + int temp; + string tempFilePath; + + do + { + if (zeroIndexCount > 5) + { + temp = randomNumber.Next(0, tabCount - 1); + itemCount = listViewContents[temp].Count - 1; //Count is zero index based + tempFilePath = listViewContents[temp][randomNumber.Next(0, itemCount)]; + if (playList.Contains(tempFilePath)) + { + playList[i] = listViewContents[temp][randomNumber.Next(0, itemCount)]; + } + else + { + playList[i] = tempFilePath; + } + } + else + { + temp = randomNumber.Next(1, tabCount - 1); + itemCount = listViewContents[temp].Count - 1; //Count is zero index based + tempFilePath = listViewContents[temp][randomNumber.Next(0, itemCount)]; + if (playList.Contains(tempFilePath)) + { + playList[i] = listViewContents[temp][randomNumber.Next(0, itemCount)]; + } + else + { + playList[i] = tempFilePath; + } + } + i++; + } while(i < iterations); + + return playList; + } } } diff --git a/SoundBoard/MediaPlayer.cs b/SoundBoard/MediaPlayer.cs new file mode 100644 index 0000000..98c6053 --- /dev/null +++ b/SoundBoard/MediaPlayer.cs @@ -0,0 +1,104 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading; +using System.Windows.Controls; +using System.IO; +using System.Windows.Forms; + +namespace SoundBoard +{ + class MediaPlayer + { + private MediaElement gPlayer = new MediaElement(); + private bool gWillLoopMedia = false; + private bool gLoopBoxState = false; //is the loopbox on mainForm check + private string[] gPlayList; + public string gErrorMessage; + + //Public constructor, used mainy to create the event handlers for the MediaElement. + public MediaPlayer() + { + gPlayer.MediaEnded += gPlayer_MediaEnded; + gPlayer.MediaFailed += gPlayer_MediaFailed; + } + + void gPlayer_MediaFailed(object sender, System.Windows.ExceptionRoutedEventArgs e) + { + gErrorMessage = "The selected file ~1 could not be played"; //"~1" could be replaced with the file that caused the error to occur + } + + public bool WillLoop + { + set { gWillLoopMedia = value; } + } + + public bool IsLoopBoxCheck + { + set { gLoopBoxState = value; } + } + + /// + /// This method captures the MediaEnded event for the MediaElement and, if the playList array contains something, + /// it will remove the first object in the array, and pass the next object in as the param to the PlaySoundFile method. + /// The orginal array is replaced with this modified array. + /// + /// + /// + void gPlayer_MediaEnded(object sender, System.Windows.RoutedEventArgs e) + { + //select next item in playlist + if (gPlayList != null) + { + //Easiest way to remove the object at index zero + List tempList = new List(); + tempList = gPlayList.ToList(); + tempList.RemoveAt(0); + gPlayList = tempList.ToArray(); + if (gPlayList.Length > 0) + { + PlaySoundFile(gPlayList[0]); + } + else + { + //check to see if the loopbox on mainForm is checked + if (gLoopBoxState) + { + gWillLoopMedia = true; + } + else + { + gWillLoopMedia = false; + } + gPlayList = null; //null out the playList string array, so the playList isn't repeated by mistake + } + } + else + { + //If the playList variable is empty then it's safe to assume the randomize function is not active. + if (gWillLoopMedia) + { + gPlayer.Position = TimeSpan.Zero; + gPlayer.Play(); + } + } + } + + public void PlayAudioPlaylist(string[] playList) + { + gPlayList = null; + gWillLoopMedia = false; + gPlayList = playList; + PlaySoundFile(playList[0]); + } + + public void PlaySoundFile(string file) + { + gPlayer.Source = new Uri(file); + gPlayer.LoadedBehavior = MediaState.Manual; + gPlayer.UnloadedBehavior = MediaState.Manual; + gPlayer.Play(); + } + } +} diff --git a/SoundBoard/Properties/App.config b/SoundBoard/Properties/App.config new file mode 100644 index 0000000..fad249e --- /dev/null +++ b/SoundBoard/Properties/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/SoundBoard/SoundBoard.csproj b/SoundBoard/SoundBoard.csproj index c707641..e960314 100644 --- a/SoundBoard/SoundBoard.csproj +++ b/SoundBoard/SoundBoard.csproj @@ -78,8 +78,11 @@ true + + + @@ -88,6 +91,7 @@ + @@ -96,6 +100,13 @@ aboutForm.cs + + + Form + + + programDebugConsole.cs + Form @@ -108,6 +119,9 @@ aboutForm.cs + + programDebugConsole.cs + mainForm.cs @@ -131,7 +145,7 @@ - + @@ -153,17 +167,6 @@ false - - - {6BF52A50-394A-11D3-B153-00C04F79FAA6} - 1 - 0 - 0 - tlbimp - False - True - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/Test Music/asdfmovie/(Airplane).wav b/Test Music/asdfmovie/(Airplane).wav new file mode 100644 index 0000000..392d60b Binary files /dev/null and b/Test Music/asdfmovie/(Airplane).wav differ diff --git a/Test Music/asdfmovie/(Baby).wav b/Test Music/asdfmovie/(Baby).wav new file mode 100644 index 0000000..646eee7 Binary files /dev/null and b/Test Music/asdfmovie/(Baby).wav differ diff --git a/Test Music/asdfmovie/(Barf).wav b/Test Music/asdfmovie/(Barf).wav new file mode 100644 index 0000000..d5bfa5b Binary files /dev/null and b/Test Music/asdfmovie/(Barf).wav differ diff --git a/Test Music/asdfmovie/(Cat barf).wav b/Test Music/asdfmovie/(Cat barf).wav new file mode 100644 index 0000000..4c52383 Binary files /dev/null and b/Test Music/asdfmovie/(Cat barf).wav differ diff --git a/Test Music/asdfmovie/(Dun dun dun dun).wav b/Test Music/asdfmovie/(Dun dun dun dun).wav new file mode 100644 index 0000000..8373cfc Binary files /dev/null and b/Test Music/asdfmovie/(Dun dun dun dun).wav differ diff --git a/Test Music/asdfmovie/(Gag).wav b/Test Music/asdfmovie/(Gag).wav new file mode 100644 index 0000000..c9fff5d Binary files /dev/null and b/Test Music/asdfmovie/(Gag).wav differ diff --git a/Test Music/asdfmovie/(Piano).wav b/Test Music/asdfmovie/(Piano).wav new file mode 100644 index 0000000..9ab07e4 Binary files /dev/null and b/Test Music/asdfmovie/(Piano).wav differ diff --git a/Test Music/asdfmovie/(Rage bomb).wav b/Test Music/asdfmovie/(Rage bomb).wav new file mode 100644 index 0000000..97fed3c Binary files /dev/null and b/Test Music/asdfmovie/(Rage bomb).wav differ diff --git a/Test Music/asdfmovie/(Scream of terror).wav b/Test Music/asdfmovie/(Scream of terror).wav new file mode 100644 index 0000000..d50b6d5 Binary files /dev/null and b/Test Music/asdfmovie/(Scream of terror).wav differ diff --git a/Test Music/asdfmovie/(Train).wav b/Test Music/asdfmovie/(Train).wav new file mode 100644 index 0000000..d241c51 Binary files /dev/null and b/Test Music/asdfmovie/(Train).wav differ diff --git a/Test Music/asdfmovie/Aaagh.wav b/Test Music/asdfmovie/Aaagh.wav new file mode 100644 index 0000000..3f49de9 Binary files /dev/null and b/Test Music/asdfmovie/Aaagh.wav differ diff --git a/Test Music/asdfmovie/And you fail.wav b/Test Music/asdfmovie/And you fail.wav new file mode 100644 index 0000000..2779fc4 Binary files /dev/null and b/Test Music/asdfmovie/And you fail.wav differ diff --git a/Test Music/asdfmovie/Aww come on.wav b/Test Music/asdfmovie/Aww come on.wav new file mode 100644 index 0000000..c5ff291 Binary files /dev/null and b/Test Music/asdfmovie/Aww come on.wav differ diff --git a/Test Music/asdfmovie/Aww crap.wav b/Test Music/asdfmovie/Aww crap.wav new file mode 100644 index 0000000..5621b04 Binary files /dev/null and b/Test Music/asdfmovie/Aww crap.wav differ diff --git a/Test Music/asdfmovie/Aww.wav b/Test Music/asdfmovie/Aww.wav new file mode 100644 index 0000000..96e80f5 Binary files /dev/null and b/Test Music/asdfmovie/Aww.wav differ diff --git a/Test Music/asdfmovie/Banana fight.wav b/Test Music/asdfmovie/Banana fight.wav new file mode 100644 index 0000000..f1954c5 Binary files /dev/null and b/Test Music/asdfmovie/Banana fight.wav differ diff --git a/Test Music/asdfmovie/But it's opposite day.wav b/Test Music/asdfmovie/But it's opposite day.wav new file mode 100644 index 0000000..ac81854 Binary files /dev/null and b/Test Music/asdfmovie/But it's opposite day.wav differ diff --git a/Test Music/asdfmovie/But mother, I love him.wav b/Test Music/asdfmovie/But mother, I love him.wav new file mode 100644 index 0000000..b0f21b6 Binary files /dev/null and b/Test Music/asdfmovie/But mother, I love him.wav differ diff --git a/Test Music/asdfmovie/But where did I go wrong.wav b/Test Music/asdfmovie/But where did I go wrong.wav new file mode 100644 index 0000000..ad7c961 Binary files /dev/null and b/Test Music/asdfmovie/But where did I go wrong.wav differ diff --git a/Test Music/asdfmovie/Buy me more jewelry.wav b/Test Music/asdfmovie/Buy me more jewelry.wav new file mode 100644 index 0000000..ac9eb37 Binary files /dev/null and b/Test Music/asdfmovie/Buy me more jewelry.wav differ diff --git a/Test Music/asdfmovie/Don't even think about it.wav b/Test Music/asdfmovie/Don't even think about it.wav new file mode 100644 index 0000000..5775ce7 Binary files /dev/null and b/Test Music/asdfmovie/Don't even think about it.wav differ diff --git a/Test Music/asdfmovie/Everybody do the flop.wav b/Test Music/asdfmovie/Everybody do the flop.wav new file mode 100644 index 0000000..1fe4a9e Binary files /dev/null and b/Test Music/asdfmovie/Everybody do the flop.wav differ diff --git a/Test Music/asdfmovie/Feed me paper.wav b/Test Music/asdfmovie/Feed me paper.wav new file mode 100644 index 0000000..4a6a53a Binary files /dev/null and b/Test Music/asdfmovie/Feed me paper.wav differ diff --git a/Test Music/asdfmovie/Hahaha.wav b/Test Music/asdfmovie/Hahaha.wav new file mode 100644 index 0000000..a2f8eeb Binary files /dev/null and b/Test Music/asdfmovie/Hahaha.wav differ diff --git a/Test Music/asdfmovie/Hello.wav b/Test Music/asdfmovie/Hello.wav new file mode 100644 index 0000000..7df799d Binary files /dev/null and b/Test Music/asdfmovie/Hello.wav differ diff --git a/Test Music/asdfmovie/Hey buddy, look over here.wav b/Test Music/asdfmovie/Hey buddy, look over here.wav new file mode 100644 index 0000000..7a132e3 Binary files /dev/null and b/Test Music/asdfmovie/Hey buddy, look over here.wav differ diff --git a/Test Music/asdfmovie/Hey, what time is it.wav b/Test Music/asdfmovie/Hey, what time is it.wav new file mode 100644 index 0000000..6c844c9 Binary files /dev/null and b/Test Music/asdfmovie/Hey, what time is it.wav differ diff --git a/Test Music/asdfmovie/Hey, you got a license for that.wav b/Test Music/asdfmovie/Hey, you got a license for that.wav new file mode 100644 index 0000000..7f8c512 Binary files /dev/null and b/Test Music/asdfmovie/Hey, you got a license for that.wav differ diff --git a/Test Music/asdfmovie/Hey, you know who's gay.wav b/Test Music/asdfmovie/Hey, you know who's gay.wav new file mode 100644 index 0000000..3ffae54 Binary files /dev/null and b/Test Music/asdfmovie/Hey, you know who's gay.wav differ diff --git a/Test Music/asdfmovie/Hey, you two should kiss.wav b/Test Music/asdfmovie/Hey, you two should kiss.wav new file mode 100644 index 0000000..db54d47 Binary files /dev/null and b/Test Music/asdfmovie/Hey, you two should kiss.wav differ diff --git a/Test Music/asdfmovie/Hmm.wav b/Test Music/asdfmovie/Hmm.wav new file mode 100644 index 0000000..9a0b3f7 Binary files /dev/null and b/Test Music/asdfmovie/Hmm.wav differ diff --git a/Test Music/asdfmovie/Ho, no.wav b/Test Music/asdfmovie/Ho, no.wav new file mode 100644 index 0000000..d92586a Binary files /dev/null and b/Test Music/asdfmovie/Ho, no.wav differ diff --git a/Test Music/asdfmovie/Homework.wav b/Test Music/asdfmovie/Homework.wav new file mode 100644 index 0000000..0178574 Binary files /dev/null and b/Test Music/asdfmovie/Homework.wav differ diff --git a/Test Music/asdfmovie/How can you tell.wav b/Test Music/asdfmovie/How can you tell.wav new file mode 100644 index 0000000..4fa28d8 Binary files /dev/null and b/Test Music/asdfmovie/How can you tell.wav differ diff --git a/Test Music/asdfmovie/How did I get here.wav b/Test Music/asdfmovie/How did I get here.wav new file mode 100644 index 0000000..d5050ed Binary files /dev/null and b/Test Music/asdfmovie/How did I get here.wav differ diff --git a/Test Music/asdfmovie/How the hell does that even work.wav b/Test Music/asdfmovie/How the hell does that even work.wav new file mode 100644 index 0000000..f458bd7 Binary files /dev/null and b/Test Music/asdfmovie/How the hell does that even work.wav differ diff --git a/Test Music/asdfmovie/Huh.wav b/Test Music/asdfmovie/Huh.wav new file mode 100644 index 0000000..b43f2cd Binary files /dev/null and b/Test Music/asdfmovie/Huh.wav differ diff --git a/Test Music/asdfmovie/I am a stegosaurus.wav b/Test Music/asdfmovie/I am a stegosaurus.wav new file mode 100644 index 0000000..2a4e244 Binary files /dev/null and b/Test Music/asdfmovie/I am a stegosaurus.wav differ diff --git a/Test Music/asdfmovie/I am a very tall midget.wav b/Test Music/asdfmovie/I am a very tall midget.wav new file mode 100644 index 0000000..fc18824 Binary files /dev/null and b/Test Music/asdfmovie/I am a very tall midget.wav differ diff --git a/Test Music/asdfmovie/I am lonely.wav b/Test Music/asdfmovie/I am lonely.wav new file mode 100644 index 0000000..4472904 Binary files /dev/null and b/Test Music/asdfmovie/I am lonely.wav differ diff --git a/Test Music/asdfmovie/I did.wav b/Test Music/asdfmovie/I did.wav new file mode 100644 index 0000000..2cec72a Binary files /dev/null and b/Test Music/asdfmovie/I did.wav differ diff --git a/Test Music/asdfmovie/I like trains.wav b/Test Music/asdfmovie/I like trains.wav new file mode 100644 index 0000000..57f76f1 Binary files /dev/null and b/Test Music/asdfmovie/I like trains.wav differ diff --git a/Test Music/asdfmovie/I love it.wav b/Test Music/asdfmovie/I love it.wav new file mode 100644 index 0000000..345a6c9 Binary files /dev/null and b/Test Music/asdfmovie/I love it.wav differ diff --git a/Test Music/asdfmovie/I used to be a cow.wav b/Test Music/asdfmovie/I used to be a cow.wav new file mode 100644 index 0000000..6ea38de Binary files /dev/null and b/Test Music/asdfmovie/I used to be a cow.wav differ diff --git a/Test Music/asdfmovie/I was being sarcastic.wav b/Test Music/asdfmovie/I was being sarcastic.wav new file mode 100644 index 0000000..aac195d Binary files /dev/null and b/Test Music/asdfmovie/I was being sarcastic.wav differ diff --git a/Test Music/asdfmovie/I'm going to punch your face.wav b/Test Music/asdfmovie/I'm going to punch your face.wav new file mode 100644 index 0000000..8c0ab88 Binary files /dev/null and b/Test Music/asdfmovie/I'm going to punch your face.wav differ diff --git a/Test Music/asdfmovie/I'm gonna do an internet.wav b/Test Music/asdfmovie/I'm gonna do an internet.wav new file mode 100644 index 0000000..485f2c9 Binary files /dev/null and b/Test Music/asdfmovie/I'm gonna do an internet.wav differ diff --git a/Test Music/asdfmovie/I'm gonna punch you in the face.wav b/Test Music/asdfmovie/I'm gonna punch you in the face.wav new file mode 100644 index 0000000..0413624 Binary files /dev/null and b/Test Music/asdfmovie/I'm gonna punch you in the face.wav differ diff --git a/Test Music/asdfmovie/In the face.wav b/Test Music/asdfmovie/In the face.wav new file mode 100644 index 0000000..66f88f0 Binary files /dev/null and b/Test Music/asdfmovie/In the face.wav differ diff --git a/Test Music/asdfmovie/It worked.wav b/Test Music/asdfmovie/It worked.wav new file mode 100644 index 0000000..4e34cdc Binary files /dev/null and b/Test Music/asdfmovie/It worked.wav differ diff --git a/Test Music/asdfmovie/It's muffin time.wav b/Test Music/asdfmovie/It's muffin time.wav new file mode 100644 index 0000000..63ad22d Binary files /dev/null and b/Test Music/asdfmovie/It's muffin time.wav differ diff --git a/Test Music/asdfmovie/It's unbearable.wav b/Test Music/asdfmovie/It's unbearable.wav new file mode 100644 index 0000000..9ed089d Binary files /dev/null and b/Test Music/asdfmovie/It's unbearable.wav differ diff --git a/Test Music/asdfmovie/Kitten fight.wav b/Test Music/asdfmovie/Kitten fight.wav new file mode 100644 index 0000000..bbbc46e Binary files /dev/null and b/Test Music/asdfmovie/Kitten fight.wav differ diff --git a/Test Music/asdfmovie/Knock knock.wav b/Test Music/asdfmovie/Knock knock.wav new file mode 100644 index 0000000..91ad331 Binary files /dev/null and b/Test Music/asdfmovie/Knock knock.wav differ diff --git a/Test Music/asdfmovie/Man I suck at this game.wav b/Test Music/asdfmovie/Man I suck at this game.wav new file mode 100644 index 0000000..8301953 Binary files /dev/null and b/Test Music/asdfmovie/Man I suck at this game.wav differ diff --git a/Test Music/asdfmovie/Meeeh.wav b/Test Music/asdfmovie/Meeeh.wav new file mode 100644 index 0000000..ac515d9 Binary files /dev/null and b/Test Music/asdfmovie/Meeeh.wav differ diff --git a/Test Music/asdfmovie/NOOOOO.wav b/Test Music/asdfmovie/NOOOOO.wav new file mode 100644 index 0000000..d5b1ae4 Binary files /dev/null and b/Test Music/asdfmovie/NOOOOO.wav differ diff --git a/Test Music/asdfmovie/No I don't.wav b/Test Music/asdfmovie/No I don't.wav new file mode 100644 index 0000000..8821844 Binary files /dev/null and b/Test Music/asdfmovie/No I don't.wav differ diff --git a/Test Music/asdfmovie/No wait.wav b/Test Music/asdfmovie/No wait.wav new file mode 100644 index 0000000..93307c3 Binary files /dev/null and b/Test Music/asdfmovie/No wait.wav differ diff --git a/Test Music/asdfmovie/No.wav b/Test Music/asdfmovie/No.wav new file mode 100644 index 0000000..77d3e3c Binary files /dev/null and b/Test Music/asdfmovie/No.wav differ diff --git a/Test Music/asdfmovie/Nom.wav b/Test Music/asdfmovie/Nom.wav new file mode 100644 index 0000000..4e2c0e4 Binary files /dev/null and b/Test Music/asdfmovie/Nom.wav differ diff --git a/Test Music/asdfmovie/Nooo.wav b/Test Music/asdfmovie/Nooo.wav new file mode 100644 index 0000000..bc28fbe Binary files /dev/null and b/Test Music/asdfmovie/Nooo.wav differ diff --git a/Test Music/asdfmovie/Nope.wav b/Test Music/asdfmovie/Nope.wav new file mode 100644 index 0000000..85ae503 Binary files /dev/null and b/Test Music/asdfmovie/Nope.wav differ diff --git a/Test Music/asdfmovie/Not today.wav b/Test Music/asdfmovie/Not today.wav new file mode 100644 index 0000000..30d2d9a Binary files /dev/null and b/Test Music/asdfmovie/Not today.wav differ diff --git a/Test Music/asdfmovie/Not what I thought he meant.wav b/Test Music/asdfmovie/Not what I thought he meant.wav new file mode 100644 index 0000000..24fe3d5 Binary files /dev/null and b/Test Music/asdfmovie/Not what I thought he meant.wav differ diff --git a/Test Music/asdfmovie/Oh boy.wav b/Test Music/asdfmovie/Oh boy.wav new file mode 100644 index 0000000..012aa7d Binary files /dev/null and b/Test Music/asdfmovie/Oh boy.wav differ diff --git a/Test Music/asdfmovie/Oh no.wav b/Test Music/asdfmovie/Oh no.wav new file mode 100644 index 0000000..71f85d5 Binary files /dev/null and b/Test Music/asdfmovie/Oh no.wav differ diff --git a/Test Music/asdfmovie/Oh ok.wav b/Test Music/asdfmovie/Oh ok.wav new file mode 100644 index 0000000..bf4bec3 Binary files /dev/null and b/Test Music/asdfmovie/Oh ok.wav differ diff --git a/Test Music/asdfmovie/Oh yeah, that's pretty cool.wav b/Test Music/asdfmovie/Oh yeah, that's pretty cool.wav new file mode 100644 index 0000000..022a254 Binary files /dev/null and b/Test Music/asdfmovie/Oh yeah, that's pretty cool.wav differ diff --git a/Test Music/asdfmovie/Oh, you stole my lungs.wav b/Test Music/asdfmovie/Oh, you stole my lungs.wav new file mode 100644 index 0000000..56dc0f8 Binary files /dev/null and b/Test Music/asdfmovie/Oh, you stole my lungs.wav differ diff --git a/Test Music/asdfmovie/Oh.wav b/Test Music/asdfmovie/Oh.wav new file mode 100644 index 0000000..7076025 Binary files /dev/null and b/Test Music/asdfmovie/Oh.wav differ diff --git a/Test Music/asdfmovie/Okay.wav b/Test Music/asdfmovie/Okay.wav new file mode 100644 index 0000000..2fab99c Binary files /dev/null and b/Test Music/asdfmovie/Okay.wav differ diff --git a/Test Music/asdfmovie/Ooohhh.wav b/Test Music/asdfmovie/Ooohhh.wav new file mode 100644 index 0000000..e27f7a4 Binary files /dev/null and b/Test Music/asdfmovie/Ooohhh.wav differ diff --git a/Test Music/asdfmovie/Pie flavor.wav b/Test Music/asdfmovie/Pie flavor.wav new file mode 100644 index 0000000..20342ab Binary files /dev/null and b/Test Music/asdfmovie/Pie flavor.wav differ diff --git a/Test Music/asdfmovie/Quick, shoot me in the face.wav b/Test Music/asdfmovie/Quick, shoot me in the face.wav new file mode 100644 index 0000000..a22b2b1 Binary files /dev/null and b/Test Music/asdfmovie/Quick, shoot me in the face.wav differ diff --git a/Test Music/asdfmovie/Rainbows.wav b/Test Music/asdfmovie/Rainbows.wav new file mode 100644 index 0000000..8dd3133 Binary files /dev/null and b/Test Music/asdfmovie/Rainbows.wav differ diff --git a/Test Music/asdfmovie/Seriously.wav b/Test Music/asdfmovie/Seriously.wav new file mode 100644 index 0000000..19ec7f6 Binary files /dev/null and b/Test Music/asdfmovie/Seriously.wav differ diff --git a/Test Music/asdfmovie/Somebody kill me.wav b/Test Music/asdfmovie/Somebody kill me.wav new file mode 100644 index 0000000..a33d4f5 Binary files /dev/null and b/Test Music/asdfmovie/Somebody kill me.wav differ diff --git a/Test Music/asdfmovie/Suddenly, pineapples.wav b/Test Music/asdfmovie/Suddenly, pineapples.wav new file mode 100644 index 0000000..9983782 Binary files /dev/null and b/Test Music/asdfmovie/Suddenly, pineapples.wav differ diff --git a/Test Music/asdfmovie/Sure.wav b/Test Music/asdfmovie/Sure.wav new file mode 100644 index 0000000..a5b49f8 Binary files /dev/null and b/Test Music/asdfmovie/Sure.wav differ diff --git a/Test Music/asdfmovie/Tell no one.wav b/Test Music/asdfmovie/Tell no one.wav new file mode 100644 index 0000000..5f37054 Binary files /dev/null and b/Test Music/asdfmovie/Tell no one.wav differ diff --git a/Test Music/asdfmovie/Thanks.wav b/Test Music/asdfmovie/Thanks.wav new file mode 100644 index 0000000..dcb0a2f Binary files /dev/null and b/Test Music/asdfmovie/Thanks.wav differ diff --git a/Test Music/asdfmovie/That is weird.wav b/Test Music/asdfmovie/That is weird.wav new file mode 100644 index 0000000..15151f1 Binary files /dev/null and b/Test Music/asdfmovie/That is weird.wav differ diff --git a/Test Music/asdfmovie/The end.wav b/Test Music/asdfmovie/The end.wav new file mode 100644 index 0000000..98028a8 Binary files /dev/null and b/Test Music/asdfmovie/The end.wav differ diff --git a/Test Music/asdfmovie/There's something on your face.wav b/Test Music/asdfmovie/There's something on your face.wav new file mode 100644 index 0000000..da51f3f Binary files /dev/null and b/Test Music/asdfmovie/There's something on your face.wav differ diff --git a/Test Music/asdfmovie/This does not help.wav b/Test Music/asdfmovie/This does not help.wav new file mode 100644 index 0000000..b7745b1 Binary files /dev/null and b/Test Music/asdfmovie/This does not help.wav differ diff --git a/Test Music/asdfmovie/This is a robbery.wav b/Test Music/asdfmovie/This is a robbery.wav new file mode 100644 index 0000000..6630116 Binary files /dev/null and b/Test Music/asdfmovie/This is a robbery.wav differ diff --git a/Test Music/asdfmovie/This was a really good idea.wav b/Test Music/asdfmovie/This was a really good idea.wav new file mode 100644 index 0000000..27e2046 Binary files /dev/null and b/Test Music/asdfmovie/This was a really good idea.wav differ diff --git a/Test Music/asdfmovie/Wah.wav b/Test Music/asdfmovie/Wah.wav new file mode 100644 index 0000000..3a9b0e8 Binary files /dev/null and b/Test Music/asdfmovie/Wah.wav differ diff --git a/Test Music/asdfmovie/Well I stole your face.wav b/Test Music/asdfmovie/Well I stole your face.wav new file mode 100644 index 0000000..6063759 Binary files /dev/null and b/Test Music/asdfmovie/Well I stole your face.wav differ diff --git a/Test Music/asdfmovie/Well, we failed.wav b/Test Music/asdfmovie/Well, we failed.wav new file mode 100644 index 0000000..ac91f80 Binary files /dev/null and b/Test Music/asdfmovie/Well, we failed.wav differ diff --git a/Test Music/asdfmovie/Well, you're a nerd.wav b/Test Music/asdfmovie/Well, you're a nerd.wav new file mode 100644 index 0000000..02e3e6f Binary files /dev/null and b/Test Music/asdfmovie/Well, you're a nerd.wav differ diff --git a/Test Music/asdfmovie/What no.wav b/Test Music/asdfmovie/What no.wav new file mode 100644 index 0000000..f9f9e2b Binary files /dev/null and b/Test Music/asdfmovie/What no.wav differ diff --git a/Test Music/asdfmovie/What the hell is wrong with you.wav b/Test Music/asdfmovie/What the hell is wrong with you.wav new file mode 100644 index 0000000..16c8679 Binary files /dev/null and b/Test Music/asdfmovie/What the hell is wrong with you.wav differ diff --git a/Test Music/asdfmovie/What're you talkin' about.wav b/Test Music/asdfmovie/What're you talkin' about.wav new file mode 100644 index 0000000..149590b Binary files /dev/null and b/Test Music/asdfmovie/What're you talkin' about.wav differ diff --git a/Test Music/asdfmovie/When did this all start.wav b/Test Music/asdfmovie/When did this all start.wav new file mode 100644 index 0000000..530e3f7 Binary files /dev/null and b/Test Music/asdfmovie/When did this all start.wav differ diff --git a/Test Music/asdfmovie/Who's idea was this.wav b/Test Music/asdfmovie/Who's idea was this.wav new file mode 100644 index 0000000..24ea855 Binary files /dev/null and b/Test Music/asdfmovie/Who's idea was this.wav differ diff --git a/Test Music/asdfmovie/Who's there.wav b/Test Music/asdfmovie/Who's there.wav new file mode 100644 index 0000000..5a36bbe Binary files /dev/null and b/Test Music/asdfmovie/Who's there.wav differ diff --git a/Test Music/asdfmovie/Whoa.wav b/Test Music/asdfmovie/Whoa.wav new file mode 100644 index 0000000..c4ed6b8 Binary files /dev/null and b/Test Music/asdfmovie/Whoa.wav differ diff --git a/Test Music/asdfmovie/Why wait.wav b/Test Music/asdfmovie/Why wait.wav new file mode 100644 index 0000000..ab34a3c Binary files /dev/null and b/Test Music/asdfmovie/Why wait.wav differ diff --git a/Test Music/asdfmovie/Why won't you let me die.wav b/Test Music/asdfmovie/Why won't you let me die.wav new file mode 100644 index 0000000..6861a17 Binary files /dev/null and b/Test Music/asdfmovie/Why won't you let me die.wav differ diff --git a/Test Music/asdfmovie/Why would you do this.wav b/Test Music/asdfmovie/Why would you do this.wav new file mode 100644 index 0000000..dc0362e Binary files /dev/null and b/Test Music/asdfmovie/Why would you do this.wav differ diff --git a/Test Music/asdfmovie/Yeah, I guess you're right.wav b/Test Music/asdfmovie/Yeah, I guess you're right.wav new file mode 100644 index 0000000..137c1a4 Binary files /dev/null and b/Test Music/asdfmovie/Yeah, I guess you're right.wav differ diff --git a/Test Music/asdfmovie/Yeah, me neither.wav b/Test Music/asdfmovie/Yeah, me neither.wav new file mode 100644 index 0000000..ec6e5af Binary files /dev/null and b/Test Music/asdfmovie/Yeah, me neither.wav differ diff --git a/Test Music/asdfmovie/Yes you can.wav b/Test Music/asdfmovie/Yes you can.wav new file mode 100644 index 0000000..dcbc0cb Binary files /dev/null and b/Test Music/asdfmovie/Yes you can.wav differ diff --git a/Test Music/asdfmovie/Yes you do.wav b/Test Music/asdfmovie/Yes you do.wav new file mode 100644 index 0000000..aaaf2db Binary files /dev/null and b/Test Music/asdfmovie/Yes you do.wav differ diff --git a/Test Music/asdfmovie/You fool.wav b/Test Music/asdfmovie/You fool.wav new file mode 100644 index 0000000..17ce6f0 Binary files /dev/null and b/Test Music/asdfmovie/You fool.wav differ diff --git a/Test Music/asdfmovie/You lied to me.wav b/Test Music/asdfmovie/You lied to me.wav new file mode 100644 index 0000000..f5b2f55 Binary files /dev/null and b/Test Music/asdfmovie/You lied to me.wav differ diff --git a/Test Music/asdfmovie/You'll never take me alive.wav b/Test Music/asdfmovie/You'll never take me alive.wav new file mode 100644 index 0000000..dac9988 Binary files /dev/null and b/Test Music/asdfmovie/You'll never take me alive.wav differ diff --git a/Test Music/asdfmovie/You're a dick.wav b/Test Music/asdfmovie/You're a dick.wav new file mode 100644 index 0000000..5ebb315 Binary files /dev/null and b/Test Music/asdfmovie/You're a dick.wav differ diff --git a/Test Music/asdfmovie/You're dead to me.wav b/Test Music/asdfmovie/You're dead to me.wav new file mode 100644 index 0000000..b065766 Binary files /dev/null and b/Test Music/asdfmovie/You're dead to me.wav differ diff --git a/Test Music/asdfmovie/You're fat.wav b/Test Music/asdfmovie/You're fat.wav new file mode 100644 index 0000000..06b073e Binary files /dev/null and b/Test Music/asdfmovie/You're fat.wav differ diff --git a/Test Music/asdfmovie/You've killed us all.wav b/Test Music/asdfmovie/You've killed us all.wav new file mode 100644 index 0000000..42711c3 Binary files /dev/null and b/Test Music/asdfmovie/You've killed us all.wav differ diff --git a/Test Music/gamer_poop/(Angry bees).wav b/Test Music/gamer_poop/(Angry bees).wav new file mode 100644 index 0000000..39c25d7 Binary files /dev/null and b/Test Music/gamer_poop/(Angry bees).wav differ diff --git a/Test Music/gamer_poop/(Beat 2).wav b/Test Music/gamer_poop/(Beat 2).wav new file mode 100644 index 0000000..6cef10b Binary files /dev/null and b/Test Music/gamer_poop/(Beat 2).wav differ diff --git a/Test Music/gamer_poop/(Beat).wav b/Test Music/gamer_poop/(Beat).wav new file mode 100644 index 0000000..71a12b3 Binary files /dev/null and b/Test Music/gamer_poop/(Beat).wav differ diff --git a/Test Music/gamer_poop/(Burp).wav b/Test Music/gamer_poop/(Burp).wav new file mode 100644 index 0000000..434c380 Binary files /dev/null and b/Test Music/gamer_poop/(Burp).wav differ diff --git a/Test Music/gamer_poop/(CRUNCH).wav b/Test Music/gamer_poop/(CRUNCH).wav new file mode 100644 index 0000000..8acf408 Binary files /dev/null and b/Test Music/gamer_poop/(CRUNCH).wav differ diff --git a/Test Music/gamer_poop/(Chicken scream).wav b/Test Music/gamer_poop/(Chicken scream).wav new file mode 100644 index 0000000..94e66c9 Binary files /dev/null and b/Test Music/gamer_poop/(Chicken scream).wav differ diff --git a/Test Music/gamer_poop/(Creepy laugh).wav b/Test Music/gamer_poop/(Creepy laugh).wav new file mode 100644 index 0000000..ff2b501 Binary files /dev/null and b/Test Music/gamer_poop/(Creepy laugh).wav differ diff --git a/Test Music/gamer_poop/(Creepy orc laugh).wav b/Test Music/gamer_poop/(Creepy orc laugh).wav new file mode 100644 index 0000000..682cd0a Binary files /dev/null and b/Test Music/gamer_poop/(Creepy orc laugh).wav differ diff --git a/Test Music/gamer_poop/(Dance).wav b/Test Music/gamer_poop/(Dance).wav new file mode 100644 index 0000000..b6676dc Binary files /dev/null and b/Test Music/gamer_poop/(Dance).wav differ diff --git a/Test Music/gamer_poop/(Dun dun dun dun dun).wav b/Test Music/gamer_poop/(Dun dun dun dun dun).wav new file mode 100644 index 0000000..742339e Binary files /dev/null and b/Test Music/gamer_poop/(Dun dun dun dun dun).wav differ diff --git a/Test Music/gamer_poop/(Gasp).wav b/Test Music/gamer_poop/(Gasp).wav new file mode 100644 index 0000000..0bc378f Binary files /dev/null and b/Test Music/gamer_poop/(Gasp).wav differ diff --git a/Test Music/gamer_poop/(Grunt) sweet jesus.wav b/Test Music/gamer_poop/(Grunt) sweet jesus.wav new file mode 100644 index 0000000..7f64178 Binary files /dev/null and b/Test Music/gamer_poop/(Grunt) sweet jesus.wav differ diff --git a/Test Music/gamer_poop/(Grunt).wav b/Test Music/gamer_poop/(Grunt).wav new file mode 100644 index 0000000..b4d6e3e Binary files /dev/null and b/Test Music/gamer_poop/(Grunt).wav differ diff --git a/Test Music/gamer_poop/(HIV slap).wav b/Test Music/gamer_poop/(HIV slap).wav new file mode 100644 index 0000000..2b0cc64 Binary files /dev/null and b/Test Music/gamer_poop/(HIV slap).wav differ diff --git a/Test Music/gamer_poop/(Laugh) Damn.wav b/Test Music/gamer_poop/(Laugh) Damn.wav new file mode 100644 index 0000000..cc653c3 Binary files /dev/null and b/Test Music/gamer_poop/(Laugh) Damn.wav differ diff --git a/Test Music/gamer_poop/(Make dat booty bounce).wav b/Test Music/gamer_poop/(Make dat booty bounce).wav new file mode 100644 index 0000000..e37df13 Binary files /dev/null and b/Test Music/gamer_poop/(Make dat booty bounce).wav differ diff --git a/Test Music/gamer_poop/(Old man scream).wav b/Test Music/gamer_poop/(Old man scream).wav new file mode 100644 index 0000000..14720c2 Binary files /dev/null and b/Test Music/gamer_poop/(Old man scream).wav differ diff --git a/Test Music/gamer_poop/(Orc laugh).wav b/Test Music/gamer_poop/(Orc laugh).wav new file mode 100644 index 0000000..2161311 Binary files /dev/null and b/Test Music/gamer_poop/(Orc laugh).wav differ diff --git a/Test Music/gamer_poop/(Scratching).wav b/Test Music/gamer_poop/(Scratching).wav new file mode 100644 index 0000000..809935c Binary files /dev/null and b/Test Music/gamer_poop/(Scratching).wav differ diff --git a/Test Music/gamer_poop/(Shove).wav b/Test Music/gamer_poop/(Shove).wav new file mode 100644 index 0000000..a4de066 Binary files /dev/null and b/Test Music/gamer_poop/(Shove).wav differ diff --git a/Test Music/gamer_poop/(Swag kills).wav b/Test Music/gamer_poop/(Swag kills).wav new file mode 100644 index 0000000..81b37fa Binary files /dev/null and b/Test Music/gamer_poop/(Swag kills).wav differ diff --git a/Test Music/gamer_poop/(Zip).wav b/Test Music/gamer_poop/(Zip).wav new file mode 100644 index 0000000..d74bdad Binary files /dev/null and b/Test Music/gamer_poop/(Zip).wav differ diff --git a/Test Music/gamer_poop/AAGGHH.wav b/Test Music/gamer_poop/AAGGHH.wav new file mode 100644 index 0000000..35507b0 Binary files /dev/null and b/Test Music/gamer_poop/AAGGHH.wav differ diff --git a/Test Music/gamer_poop/AGH.wav b/Test Music/gamer_poop/AGH.wav new file mode 100644 index 0000000..4cbbf48 Binary files /dev/null and b/Test Music/gamer_poop/AGH.wav differ diff --git a/Test Music/gamer_poop/Aaagh, it burns.wav b/Test Music/gamer_poop/Aaagh, it burns.wav new file mode 100644 index 0000000..4a1079d Binary files /dev/null and b/Test Music/gamer_poop/Aaagh, it burns.wav differ diff --git a/Test Music/gamer_poop/Agh, it burns.wav b/Test Music/gamer_poop/Agh, it burns.wav new file mode 100644 index 0000000..d1c5a1d Binary files /dev/null and b/Test Music/gamer_poop/Agh, it burns.wav differ diff --git a/Test Music/gamer_poop/Ahhh.wav b/Test Music/gamer_poop/Ahhh.wav new file mode 100644 index 0000000..386f27b Binary files /dev/null and b/Test Music/gamer_poop/Ahhh.wav differ diff --git a/Test Music/gamer_poop/And I be ballin'.wav b/Test Music/gamer_poop/And I be ballin'.wav new file mode 100644 index 0000000..074e45b Binary files /dev/null and b/Test Music/gamer_poop/And I be ballin'.wav differ diff --git a/Test Music/gamer_poop/And yesterday and the day before.wav b/Test Music/gamer_poop/And yesterday and the day before.wav new file mode 100644 index 0000000..d7a237d Binary files /dev/null and b/Test Music/gamer_poop/And yesterday and the day before.wav differ diff --git a/Test Music/gamer_poop/Are you trying to tickle me.wav b/Test Music/gamer_poop/Are you trying to tickle me.wav new file mode 100644 index 0000000..4892634 Binary files /dev/null and b/Test Music/gamer_poop/Are you trying to tickle me.wav differ diff --git a/Test Music/gamer_poop/Arthritic penis.wav b/Test Music/gamer_poop/Arthritic penis.wav new file mode 100644 index 0000000..22af7e2 Binary files /dev/null and b/Test Music/gamer_poop/Arthritic penis.wav differ diff --git a/Test Music/gamer_poop/BIG curved penises.wav b/Test Music/gamer_poop/BIG curved penises.wav new file mode 100644 index 0000000..2fd6b40 Binary files /dev/null and b/Test Music/gamer_poop/BIG curved penises.wav differ diff --git a/Test Music/gamer_poop/BOW TO ME.wav b/Test Music/gamer_poop/BOW TO ME.wav new file mode 100644 index 0000000..4e244db Binary files /dev/null and b/Test Music/gamer_poop/BOW TO ME.wav differ diff --git a/Test Music/gamer_poop/Better.wav b/Test Music/gamer_poop/Better.wav new file mode 100644 index 0000000..5f9f372 Binary files /dev/null and b/Test Music/gamer_poop/Better.wav differ diff --git a/Test Music/gamer_poop/Bitch slap.wav b/Test Music/gamer_poop/Bitch slap.wav new file mode 100644 index 0000000..1b3fd39 Binary files /dev/null and b/Test Music/gamer_poop/Bitch slap.wav differ diff --git a/Test Music/gamer_poop/Bitch.wav b/Test Music/gamer_poop/Bitch.wav new file mode 100644 index 0000000..d907229 Binary files /dev/null and b/Test Music/gamer_poop/Bitch.wav differ diff --git a/Test Music/gamer_poop/Bullshit.wav b/Test Music/gamer_poop/Bullshit.wav new file mode 100644 index 0000000..402c07c Binary files /dev/null and b/Test Music/gamer_poop/Bullshit.wav differ diff --git a/Test Music/gamer_poop/Certainly not that.wav b/Test Music/gamer_poop/Certainly not that.wav new file mode 100644 index 0000000..3fc323b Binary files /dev/null and b/Test Music/gamer_poop/Certainly not that.wav differ diff --git a/Test Music/gamer_poop/Ch ching.wav b/Test Music/gamer_poop/Ch ching.wav new file mode 100644 index 0000000..d76baaa Binary files /dev/null and b/Test Music/gamer_poop/Ch ching.wav differ diff --git a/Test Music/gamer_poop/Cheer_scream.wav b/Test Music/gamer_poop/Cheer_scream.wav new file mode 100644 index 0000000..8959dc9 Binary files /dev/null and b/Test Music/gamer_poop/Cheer_scream.wav differ diff --git a/Test Music/gamer_poop/Damn woman.wav b/Test Music/gamer_poop/Damn woman.wav new file mode 100644 index 0000000..f9919f3 Binary files /dev/null and b/Test Music/gamer_poop/Damn woman.wav differ diff --git a/Test Music/gamer_poop/Damn.wav b/Test Music/gamer_poop/Damn.wav new file mode 100644 index 0000000..9ea07bc Binary files /dev/null and b/Test Music/gamer_poop/Damn.wav differ diff --git a/Test Music/gamer_poop/Don't fuck it up.wav b/Test Music/gamer_poop/Don't fuck it up.wav new file mode 100644 index 0000000..93de432 Binary files /dev/null and b/Test Music/gamer_poop/Don't fuck it up.wav differ diff --git a/Test Music/gamer_poop/Don't get too close.wav b/Test Music/gamer_poop/Don't get too close.wav new file mode 100644 index 0000000..2b35211 Binary files /dev/null and b/Test Music/gamer_poop/Don't get too close.wav differ diff --git a/Test Music/gamer_poop/Don't tell me, I want to guess.wav b/Test Music/gamer_poop/Don't tell me, I want to guess.wav new file mode 100644 index 0000000..bee83ff Binary files /dev/null and b/Test Music/gamer_poop/Don't tell me, I want to guess.wav differ diff --git a/Test Music/gamer_poop/Don't worry.wav b/Test Music/gamer_poop/Don't worry.wav new file mode 100644 index 0000000..f4cc84a Binary files /dev/null and b/Test Music/gamer_poop/Don't worry.wav differ diff --git a/Test Music/gamer_poop/Don't you dare walk away from me, you slut.wav b/Test Music/gamer_poop/Don't you dare walk away from me, you slut.wav new file mode 100644 index 0000000..628d6f8 Binary files /dev/null and b/Test Music/gamer_poop/Don't you dare walk away from me, you slut.wav differ diff --git a/Test Music/gamer_poop/Dovahkiin.wav b/Test Music/gamer_poop/Dovahkiin.wav new file mode 100644 index 0000000..9f5ecf3 Binary files /dev/null and b/Test Music/gamer_poop/Dovahkiin.wav differ diff --git a/Test Music/gamer_poop/Dragon sized cock.wav b/Test Music/gamer_poop/Dragon sized cock.wav new file mode 100644 index 0000000..4bbfc5d Binary files /dev/null and b/Test Music/gamer_poop/Dragon sized cock.wav differ diff --git a/Test Music/gamer_poop/Easily cock-blocked.wav b/Test Music/gamer_poop/Easily cock-blocked.wav new file mode 100644 index 0000000..e98197d Binary files /dev/null and b/Test Music/gamer_poop/Easily cock-blocked.wav differ diff --git a/Test Music/gamer_poop/Embrace the powerful tacos.wav b/Test Music/gamer_poop/Embrace the powerful tacos.wav new file mode 100644 index 0000000..aaad6b2 Binary files /dev/null and b/Test Music/gamer_poop/Embrace the powerful tacos.wav differ diff --git a/Test Music/gamer_poop/Emporer is a cow fucker.wav b/Test Music/gamer_poop/Emporer is a cow fucker.wav new file mode 100644 index 0000000..d9e71e0 Binary files /dev/null and b/Test Music/gamer_poop/Emporer is a cow fucker.wav differ diff --git a/Test Music/gamer_poop/Everyone is smoking.wav b/Test Music/gamer_poop/Everyone is smoking.wav new file mode 100644 index 0000000..cc6d1cd Binary files /dev/null and b/Test Music/gamer_poop/Everyone is smoking.wav differ diff --git a/Test Music/gamer_poop/Fapped.wav b/Test Music/gamer_poop/Fapped.wav new file mode 100644 index 0000000..dfb3706 Binary files /dev/null and b/Test Music/gamer_poop/Fapped.wav differ diff --git a/Test Music/gamer_poop/Flop.wav b/Test Music/gamer_poop/Flop.wav new file mode 100644 index 0000000..37e17d2 Binary files /dev/null and b/Test Music/gamer_poop/Flop.wav differ diff --git a/Test Music/gamer_poop/Fool.wav b/Test Music/gamer_poop/Fool.wav new file mode 100644 index 0000000..99db65f Binary files /dev/null and b/Test Music/gamer_poop/Fool.wav differ diff --git a/Test Music/gamer_poop/For I love you.wav b/Test Music/gamer_poop/For I love you.wav new file mode 100644 index 0000000..bf703ba Binary files /dev/null and b/Test Music/gamer_poop/For I love you.wav differ diff --git a/Test Music/gamer_poop/Fucking excellent.wav b/Test Music/gamer_poop/Fucking excellent.wav new file mode 100644 index 0000000..edd00ba Binary files /dev/null and b/Test Music/gamer_poop/Fucking excellent.wav differ diff --git a/Test Music/gamer_poop/Funny.wav b/Test Music/gamer_poop/Funny.wav new file mode 100644 index 0000000..7b8bff7 Binary files /dev/null and b/Test Music/gamer_poop/Funny.wav differ diff --git a/Test Music/gamer_poop/Get my bat.wav b/Test Music/gamer_poop/Get my bat.wav new file mode 100644 index 0000000..d6b1ed1 Binary files /dev/null and b/Test Music/gamer_poop/Get my bat.wav differ diff --git a/Test Music/gamer_poop/Get your groove on soldier.wav b/Test Music/gamer_poop/Get your groove on soldier.wav new file mode 100644 index 0000000..8260e78 Binary files /dev/null and b/Test Music/gamer_poop/Get your groove on soldier.wav differ diff --git a/Test Music/gamer_poop/Girls need to learn.wav b/Test Music/gamer_poop/Girls need to learn.wav new file mode 100644 index 0000000..ebf0470 Binary files /dev/null and b/Test Music/gamer_poop/Girls need to learn.wav differ diff --git a/Test Music/gamer_poop/Glorious breasts.wav b/Test Music/gamer_poop/Glorious breasts.wav new file mode 100644 index 0000000..41d3b46 Binary files /dev/null and b/Test Music/gamer_poop/Glorious breasts.wav differ diff --git a/Test Music/gamer_poop/Glorious pubes like khajiit.wav b/Test Music/gamer_poop/Glorious pubes like khajiit.wav new file mode 100644 index 0000000..c0f7a0f Binary files /dev/null and b/Test Music/gamer_poop/Glorious pubes like khajiit.wav differ diff --git a/Test Music/gamer_poop/Glorious.wav b/Test Music/gamer_poop/Glorious.wav new file mode 100644 index 0000000..650fc37 Binary files /dev/null and b/Test Music/gamer_poop/Glorious.wav differ diff --git a/Test Music/gamer_poop/Going to have a real BIG party.wav b/Test Music/gamer_poop/Going to have a real BIG party.wav new file mode 100644 index 0000000..7119904 Binary files /dev/null and b/Test Music/gamer_poop/Going to have a real BIG party.wav differ diff --git a/Test Music/gamer_poop/HOSENKA.wav b/Test Music/gamer_poop/HOSENKA.wav new file mode 100644 index 0000000..e907195 Binary files /dev/null and b/Test Music/gamer_poop/HOSENKA.wav differ diff --git a/Test Music/gamer_poop/Hai.wav b/Test Music/gamer_poop/Hai.wav new file mode 100644 index 0000000..bfb2a5c Binary files /dev/null and b/Test Music/gamer_poop/Hai.wav differ diff --git a/Test Music/gamer_poop/Hands off.wav b/Test Music/gamer_poop/Hands off.wav new file mode 100644 index 0000000..541b0b5 Binary files /dev/null and b/Test Music/gamer_poop/Hands off.wav differ diff --git a/Test Music/gamer_poop/Heeey.wav b/Test Music/gamer_poop/Heeey.wav new file mode 100644 index 0000000..f407d91 Binary files /dev/null and b/Test Music/gamer_poop/Heeey.wav differ diff --git a/Test Music/gamer_poop/Hey, bitch.wav b/Test Music/gamer_poop/Hey, bitch.wav new file mode 100644 index 0000000..12ad093 Binary files /dev/null and b/Test Music/gamer_poop/Hey, bitch.wav differ diff --git a/Test Music/gamer_poop/Highly disturbing.wav b/Test Music/gamer_poop/Highly disturbing.wav new file mode 100644 index 0000000..563d3ae Binary files /dev/null and b/Test Music/gamer_poop/Highly disturbing.wav differ diff --git a/Test Music/gamer_poop/Hm.wav b/Test Music/gamer_poop/Hm.wav new file mode 100644 index 0000000..a436b20 Binary files /dev/null and b/Test Music/gamer_poop/Hm.wav differ diff --git a/Test Music/gamer_poop/I call next.wav b/Test Music/gamer_poop/I call next.wav new file mode 100644 index 0000000..4e9628b Binary files /dev/null and b/Test Music/gamer_poop/I call next.wav differ diff --git a/Test Music/gamer_poop/I can handle tits.wav b/Test Music/gamer_poop/I can handle tits.wav new file mode 100644 index 0000000..131b42e Binary files /dev/null and b/Test Music/gamer_poop/I can handle tits.wav differ diff --git a/Test Music/gamer_poop/I don't think so.wav b/Test Music/gamer_poop/I don't think so.wav new file mode 100644 index 0000000..1d7387a Binary files /dev/null and b/Test Music/gamer_poop/I don't think so.wav differ diff --git a/Test Music/gamer_poop/I know.wav b/Test Music/gamer_poop/I know.wav new file mode 100644 index 0000000..3455bd4 Binary files /dev/null and b/Test Music/gamer_poop/I know.wav differ diff --git a/Test Music/gamer_poop/I let you slap my tits around for a while.wav b/Test Music/gamer_poop/I let you slap my tits around for a while.wav new file mode 100644 index 0000000..c7adc1c Binary files /dev/null and b/Test Music/gamer_poop/I let you slap my tits around for a while.wav differ diff --git a/Test Music/gamer_poop/I like nipples.wav b/Test Music/gamer_poop/I like nipples.wav new file mode 100644 index 0000000..5a583f3 Binary files /dev/null and b/Test Music/gamer_poop/I like nipples.wav differ diff --git a/Test Music/gamer_poop/I like your ass.wav b/Test Music/gamer_poop/I like your ass.wav new file mode 100644 index 0000000..a704e16 Binary files /dev/null and b/Test Music/gamer_poop/I like your ass.wav differ diff --git a/Test Music/gamer_poop/I stay erect for hours.wav b/Test Music/gamer_poop/I stay erect for hours.wav new file mode 100644 index 0000000..57144de Binary files /dev/null and b/Test Music/gamer_poop/I stay erect for hours.wav differ diff --git a/Test Music/gamer_poop/I suppose you're right.wav b/Test Music/gamer_poop/I suppose you're right.wav new file mode 100644 index 0000000..23ff8fd Binary files /dev/null and b/Test Music/gamer_poop/I suppose you're right.wav differ diff --git a/Test Music/gamer_poop/I swear that's all he does.wav b/Test Music/gamer_poop/I swear that's all he does.wav new file mode 100644 index 0000000..805647f Binary files /dev/null and b/Test Music/gamer_poop/I swear that's all he does.wav differ diff --git a/Test Music/gamer_poop/I think we're done talking.wav b/Test Music/gamer_poop/I think we're done talking.wav new file mode 100644 index 0000000..2e27978 Binary files /dev/null and b/Test Music/gamer_poop/I think we're done talking.wav differ diff --git a/Test Music/gamer_poop/I want you to fuck my wife.wav b/Test Music/gamer_poop/I want you to fuck my wife.wav new file mode 100644 index 0000000..dc0b63a Binary files /dev/null and b/Test Music/gamer_poop/I want you to fuck my wife.wav differ diff --git a/Test Music/gamer_poop/I was always a turd.wav b/Test Music/gamer_poop/I was always a turd.wav new file mode 100644 index 0000000..b490d67 Binary files /dev/null and b/Test Music/gamer_poop/I was always a turd.wav differ diff --git a/Test Music/gamer_poop/I'm afraid ima have to slap your momma.wav b/Test Music/gamer_poop/I'm afraid ima have to slap your momma.wav new file mode 100644 index 0000000..0c1164b Binary files /dev/null and b/Test Music/gamer_poop/I'm afraid ima have to slap your momma.wav differ diff --git a/Test Music/gamer_poop/I'm like a vulture circling the desert.wav b/Test Music/gamer_poop/I'm like a vulture circling the desert.wav new file mode 100644 index 0000000..55a4cb0 Binary files /dev/null and b/Test Music/gamer_poop/I'm like a vulture circling the desert.wav differ diff --git a/Test Music/gamer_poop/If you catch my meaning.wav b/Test Music/gamer_poop/If you catch my meaning.wav new file mode 100644 index 0000000..51ab1f2 Binary files /dev/null and b/Test Music/gamer_poop/If you catch my meaning.wav differ diff --git a/Test Music/gamer_poop/In my throat.wav b/Test Music/gamer_poop/In my throat.wav new file mode 100644 index 0000000..2e64f35 Binary files /dev/null and b/Test Music/gamer_poop/In my throat.wav differ diff --git a/Test Music/gamer_poop/Intriguing, but highly disturbing.wav b/Test Music/gamer_poop/Intriguing, but highly disturbing.wav new file mode 100644 index 0000000..9457a99 Binary files /dev/null and b/Test Music/gamer_poop/Intriguing, but highly disturbing.wav differ diff --git a/Test Music/gamer_poop/Intriguing.wav b/Test Music/gamer_poop/Intriguing.wav new file mode 100644 index 0000000..b408634 Binary files /dev/null and b/Test Music/gamer_poop/Intriguing.wav differ diff --git a/Test Music/gamer_poop/Is that the way you like it.wav b/Test Music/gamer_poop/Is that the way you like it.wav new file mode 100644 index 0000000..3951bd4 Binary files /dev/null and b/Test Music/gamer_poop/Is that the way you like it.wav differ diff --git a/Test Music/gamer_poop/It's OK.wav b/Test Music/gamer_poop/It's OK.wav new file mode 100644 index 0000000..02951c0 Binary files /dev/null and b/Test Music/gamer_poop/It's OK.wav differ diff --git a/Test Music/gamer_poop/It's all those damn elder trolls you see.wav b/Test Music/gamer_poop/It's all those damn elder trolls you see.wav new file mode 100644 index 0000000..563342f Binary files /dev/null and b/Test Music/gamer_poop/It's all those damn elder trolls you see.wav differ diff --git a/Test Music/gamer_poop/Jokes' on you.wav b/Test Music/gamer_poop/Jokes' on you.wav new file mode 100644 index 0000000..8a191c0 Binary files /dev/null and b/Test Music/gamer_poop/Jokes' on you.wav differ diff --git a/Test Music/gamer_poop/KO.wav b/Test Music/gamer_poop/KO.wav new file mode 100644 index 0000000..85f99c0 Binary files /dev/null and b/Test Music/gamer_poop/KO.wav differ diff --git a/Test Music/gamer_poop/Let's make a turd.wav b/Test Music/gamer_poop/Let's make a turd.wav new file mode 100644 index 0000000..a8fd2c8 Binary files /dev/null and b/Test Music/gamer_poop/Let's make a turd.wav differ diff --git a/Test Music/gamer_poop/Looong, holy, paenus.wav b/Test Music/gamer_poop/Looong, holy, paenus.wav new file mode 100644 index 0000000..c5a455a Binary files /dev/null and b/Test Music/gamer_poop/Looong, holy, paenus.wav differ diff --git a/Test Music/gamer_poop/Love, LOVE.wav b/Test Music/gamer_poop/Love, LOVE.wav new file mode 100644 index 0000000..6fe992e Binary files /dev/null and b/Test Music/gamer_poop/Love, LOVE.wav differ diff --git a/Test Music/gamer_poop/Me.wav b/Test Music/gamer_poop/Me.wav new file mode 100644 index 0000000..a1b4de2 Binary files /dev/null and b/Test Music/gamer_poop/Me.wav differ diff --git a/Test Music/gamer_poop/Mind your own business, got it.wav b/Test Music/gamer_poop/Mind your own business, got it.wav new file mode 100644 index 0000000..2455e6e Binary files /dev/null and b/Test Music/gamer_poop/Mind your own business, got it.wav differ diff --git a/Test Music/gamer_poop/NO.wav b/Test Music/gamer_poop/NO.wav new file mode 100644 index 0000000..c83c382 Binary files /dev/null and b/Test Music/gamer_poop/NO.wav differ diff --git a/Test Music/gamer_poop/Nah, just kidding.wav b/Test Music/gamer_poop/Nah, just kidding.wav new file mode 100644 index 0000000..b3d4ca7 Binary files /dev/null and b/Test Music/gamer_poop/Nah, just kidding.wav differ diff --git a/Test Music/gamer_poop/Nice tits.wav b/Test Music/gamer_poop/Nice tits.wav new file mode 100644 index 0000000..9ed7a08 Binary files /dev/null and b/Test Music/gamer_poop/Nice tits.wav differ diff --git a/Test Music/gamer_poop/Nigel's got an arthritic penis.wav b/Test Music/gamer_poop/Nigel's got an arthritic penis.wav new file mode 100644 index 0000000..51ebd33 Binary files /dev/null and b/Test Music/gamer_poop/Nigel's got an arthritic penis.wav differ diff --git a/Test Music/gamer_poop/No no, goodness no.wav b/Test Music/gamer_poop/No no, goodness no.wav new file mode 100644 index 0000000..16fc2d8 Binary files /dev/null and b/Test Music/gamer_poop/No no, goodness no.wav differ diff --git a/Test Music/gamer_poop/Nooo (evil laugh).wav b/Test Music/gamer_poop/Nooo (evil laugh).wav new file mode 100644 index 0000000..5f4e341 Binary files /dev/null and b/Test Music/gamer_poop/Nooo (evil laugh).wav differ diff --git a/Test Music/gamer_poop/Nooo thank you.wav b/Test Music/gamer_poop/Nooo thank you.wav new file mode 100644 index 0000000..b62f929 Binary files /dev/null and b/Test Music/gamer_poop/Nooo thank you.wav differ diff --git a/Test Music/gamer_poop/Nope.wav b/Test Music/gamer_poop/Nope.wav new file mode 100644 index 0000000..646bf1c Binary files /dev/null and b/Test Music/gamer_poop/Nope.wav differ diff --git a/Test Music/gamer_poop/Not again.wav b/Test Music/gamer_poop/Not again.wav new file mode 100644 index 0000000..ef9d923 Binary files /dev/null and b/Test Music/gamer_poop/Not again.wav differ diff --git a/Test Music/gamer_poop/Of course.wav b/Test Music/gamer_poop/Of course.wav new file mode 100644 index 0000000..a2ed955 Binary files /dev/null and b/Test Music/gamer_poop/Of course.wav differ diff --git a/Test Music/gamer_poop/Oh no you don't.wav b/Test Music/gamer_poop/Oh no you don't.wav new file mode 100644 index 0000000..7abe64e Binary files /dev/null and b/Test Music/gamer_poop/Oh no you don't.wav differ diff --git a/Test Music/gamer_poop/Oh shit.wav b/Test Music/gamer_poop/Oh shit.wav new file mode 100644 index 0000000..94e0363 Binary files /dev/null and b/Test Music/gamer_poop/Oh shit.wav differ diff --git a/Test Music/gamer_poop/Oh yeah, now I remember.wav b/Test Music/gamer_poop/Oh yeah, now I remember.wav new file mode 100644 index 0000000..de0bd5d Binary files /dev/null and b/Test Music/gamer_poop/Oh yeah, now I remember.wav differ diff --git a/Test Music/gamer_poop/Oh yeah.wav b/Test Music/gamer_poop/Oh yeah.wav new file mode 100644 index 0000000..50fff4c Binary files /dev/null and b/Test Music/gamer_poop/Oh yeah.wav differ diff --git a/Test Music/gamer_poop/Oh, hello.wav b/Test Music/gamer_poop/Oh, hello.wav new file mode 100644 index 0000000..af602d1 Binary files /dev/null and b/Test Music/gamer_poop/Oh, hello.wav differ diff --git a/Test Music/gamer_poop/Oh, no you don't.wav b/Test Music/gamer_poop/Oh, no you don't.wav new file mode 100644 index 0000000..e0e3793 Binary files /dev/null and b/Test Music/gamer_poop/Oh, no you don't.wav differ diff --git a/Test Music/gamer_poop/Oh, no.wav b/Test Music/gamer_poop/Oh, no.wav new file mode 100644 index 0000000..3d2f0e4 Binary files /dev/null and b/Test Music/gamer_poop/Oh, no.wav differ diff --git a/Test Music/gamer_poop/Oh, oh, oh, OH.wav b/Test Music/gamer_poop/Oh, oh, oh, OH.wav new file mode 100644 index 0000000..1fb5f25 Binary files /dev/null and b/Test Music/gamer_poop/Oh, oh, oh, OH.wav differ diff --git a/Test Music/gamer_poop/Oh, snap.wav b/Test Music/gamer_poop/Oh, snap.wav new file mode 100644 index 0000000..bea38d9 Binary files /dev/null and b/Test Music/gamer_poop/Oh, snap.wav differ diff --git a/Test Music/gamer_poop/Oh, yes indeed.wav b/Test Music/gamer_poop/Oh, yes indeed.wav new file mode 100644 index 0000000..948e35f Binary files /dev/null and b/Test Music/gamer_poop/Oh, yes indeed.wav differ diff --git a/Test Music/gamer_poop/Oh, yes, YES.wav b/Test Music/gamer_poop/Oh, yes, YES.wav new file mode 100644 index 0000000..1a8203e Binary files /dev/null and b/Test Music/gamer_poop/Oh, yes, YES.wav differ diff --git a/Test Music/gamer_poop/Oils it.wav b/Test Music/gamer_poop/Oils it.wav new file mode 100644 index 0000000..3e8ab6f Binary files /dev/null and b/Test Music/gamer_poop/Oils it.wav differ diff --git a/Test Music/gamer_poop/Okay.wav b/Test Music/gamer_poop/Okay.wav new file mode 100644 index 0000000..b88d655 Binary files /dev/null and b/Test Music/gamer_poop/Okay.wav differ diff --git a/Test Music/gamer_poop/Okey doke.wav b/Test Music/gamer_poop/Okey doke.wav new file mode 100644 index 0000000..f9eae8f Binary files /dev/null and b/Test Music/gamer_poop/Okey doke.wav differ diff --git a/Test Music/gamer_poop/Oof.wav b/Test Music/gamer_poop/Oof.wav new file mode 100644 index 0000000..f321d11 Binary files /dev/null and b/Test Music/gamer_poop/Oof.wav differ diff --git a/Test Music/gamer_poop/Oooh.wav b/Test Music/gamer_poop/Oooh.wav new file mode 100644 index 0000000..5696e0d Binary files /dev/null and b/Test Music/gamer_poop/Oooh.wav differ diff --git a/Test Music/gamer_poop/Please no.wav b/Test Music/gamer_poop/Please no.wav new file mode 100644 index 0000000..218dd7e Binary files /dev/null and b/Test Music/gamer_poop/Please no.wav differ diff --git a/Test Music/gamer_poop/Please, stop that.wav b/Test Music/gamer_poop/Please, stop that.wav new file mode 100644 index 0000000..a34eb15 Binary files /dev/null and b/Test Music/gamer_poop/Please, stop that.wav differ diff --git a/Test Music/gamer_poop/Please, you have to help me.wav b/Test Music/gamer_poop/Please, you have to help me.wav new file mode 100644 index 0000000..520ef43 Binary files /dev/null and b/Test Music/gamer_poop/Please, you have to help me.wav differ diff --git a/Test Music/gamer_poop/Real harsh down south.wav b/Test Music/gamer_poop/Real harsh down south.wav new file mode 100644 index 0000000..d8a5f62 Binary files /dev/null and b/Test Music/gamer_poop/Real harsh down south.wav differ diff --git a/Test Music/gamer_poop/Really.wav b/Test Music/gamer_poop/Really.wav new file mode 100644 index 0000000..4806b32 Binary files /dev/null and b/Test Music/gamer_poop/Really.wav differ diff --git a/Test Music/gamer_poop/Riiise.wav b/Test Music/gamer_poop/Riiise.wav new file mode 100644 index 0000000..d940b30 Binary files /dev/null and b/Test Music/gamer_poop/Riiise.wav differ diff --git a/Test Music/gamer_poop/Sarcasm.wav b/Test Music/gamer_poop/Sarcasm.wav new file mode 100644 index 0000000..4302285 Binary files /dev/null and b/Test Music/gamer_poop/Sarcasm.wav differ diff --git a/Test Music/gamer_poop/She's a beauty isn't she.wav b/Test Music/gamer_poop/She's a beauty isn't she.wav new file mode 100644 index 0000000..957ff63 Binary files /dev/null and b/Test Music/gamer_poop/She's a beauty isn't she.wav differ diff --git a/Test Music/gamer_poop/Silence, idiot.wav b/Test Music/gamer_poop/Silence, idiot.wav new file mode 100644 index 0000000..d0e22bc Binary files /dev/null and b/Test Music/gamer_poop/Silence, idiot.wav differ diff --git a/Test Music/gamer_poop/Skyrim shuffle.wav b/Test Music/gamer_poop/Skyrim shuffle.wav new file mode 100644 index 0000000..68d1fae Binary files /dev/null and b/Test Music/gamer_poop/Skyrim shuffle.wav differ diff --git a/Test Music/gamer_poop/Slap.wav b/Test Music/gamer_poop/Slap.wav new file mode 100644 index 0000000..a69c8b4 Binary files /dev/null and b/Test Music/gamer_poop/Slap.wav differ diff --git a/Test Music/gamer_poop/So shut up.wav b/Test Music/gamer_poop/So shut up.wav new file mode 100644 index 0000000..0518922 Binary files /dev/null and b/Test Music/gamer_poop/So shut up.wav differ diff --git a/Test Music/gamer_poop/Somebody stop the pain.wav b/Test Music/gamer_poop/Somebody stop the pain.wav new file mode 100644 index 0000000..4c18150 Binary files /dev/null and b/Test Music/gamer_poop/Somebody stop the pain.wav differ diff --git a/Test Music/gamer_poop/Son of a bitch.wav b/Test Music/gamer_poop/Son of a bitch.wav new file mode 100644 index 0000000..600cd1b Binary files /dev/null and b/Test Music/gamer_poop/Son of a bitch.wav differ diff --git a/Test Music/gamer_poop/Sounds too good to be true.wav b/Test Music/gamer_poop/Sounds too good to be true.wav new file mode 100644 index 0000000..0193ff3 Binary files /dev/null and b/Test Music/gamer_poop/Sounds too good to be true.wav differ diff --git a/Test Music/gamer_poop/Stop that.wav b/Test Music/gamer_poop/Stop that.wav new file mode 100644 index 0000000..3608757 Binary files /dev/null and b/Test Music/gamer_poop/Stop that.wav differ diff --git a/Test Music/gamer_poop/Sucks for you.wav b/Test Music/gamer_poop/Sucks for you.wav new file mode 100644 index 0000000..a096803 Binary files /dev/null and b/Test Music/gamer_poop/Sucks for you.wav differ diff --git a/Test Music/gamer_poop/Surprise, buttsex.wav b/Test Music/gamer_poop/Surprise, buttsex.wav new file mode 100644 index 0000000..e361237 Binary files /dev/null and b/Test Music/gamer_poop/Surprise, buttsex.wav differ diff --git a/Test Music/gamer_poop/Swag.wav b/Test Music/gamer_poop/Swag.wav new file mode 100644 index 0000000..26a488d Binary files /dev/null and b/Test Music/gamer_poop/Swag.wav differ diff --git a/Test Music/gamer_poop/Take off your pants right now.wav b/Test Music/gamer_poop/Take off your pants right now.wav new file mode 100644 index 0000000..c1f211b Binary files /dev/null and b/Test Music/gamer_poop/Take off your pants right now.wav differ diff --git a/Test Music/gamer_poop/That it.wav b/Test Music/gamer_poop/That it.wav new file mode 100644 index 0000000..b9c5e4b Binary files /dev/null and b/Test Music/gamer_poop/That it.wav differ diff --git a/Test Music/gamer_poop/That's a big fat butt.wav b/Test Music/gamer_poop/That's a big fat butt.wav new file mode 100644 index 0000000..54608f4 Binary files /dev/null and b/Test Music/gamer_poop/That's a big fat butt.wav differ diff --git a/Test Music/gamer_poop/That's a sweet piece of ass.wav b/Test Music/gamer_poop/That's a sweet piece of ass.wav new file mode 100644 index 0000000..e636210 Binary files /dev/null and b/Test Music/gamer_poop/That's a sweet piece of ass.wav differ diff --git a/Test Music/gamer_poop/That's disgusting.wav b/Test Music/gamer_poop/That's disgusting.wav new file mode 100644 index 0000000..f9cd502 Binary files /dev/null and b/Test Music/gamer_poop/That's disgusting.wav differ diff --git a/Test Music/gamer_poop/That's nothing.wav b/Test Music/gamer_poop/That's nothing.wav new file mode 100644 index 0000000..d240fcc Binary files /dev/null and b/Test Music/gamer_poop/That's nothing.wav differ diff --git a/Test Music/gamer_poop/That's right.wav b/Test Music/gamer_poop/That's right.wav new file mode 100644 index 0000000..d14455d Binary files /dev/null and b/Test Music/gamer_poop/That's right.wav differ diff --git a/Test Music/gamer_poop/That's sexy.wav b/Test Music/gamer_poop/That's sexy.wav new file mode 100644 index 0000000..c3865d6 Binary files /dev/null and b/Test Music/gamer_poop/That's sexy.wav differ diff --git a/Test Music/gamer_poop/The balls on that man.wav b/Test Music/gamer_poop/The balls on that man.wav new file mode 100644 index 0000000..aff14f9 Binary files /dev/null and b/Test Music/gamer_poop/The balls on that man.wav differ diff --git a/Test Music/gamer_poop/The waiting is killing me.wav b/Test Music/gamer_poop/The waiting is killing me.wav new file mode 100644 index 0000000..0ac4e66 Binary files /dev/null and b/Test Music/gamer_poop/The waiting is killing me.wav differ diff --git a/Test Music/gamer_poop/This is a voice from your ass.wav b/Test Music/gamer_poop/This is a voice from your ass.wav new file mode 100644 index 0000000..020ead8 Binary files /dev/null and b/Test Music/gamer_poop/This is a voice from your ass.wav differ diff --git a/Test Music/gamer_poop/This is going to be fun.wav b/Test Music/gamer_poop/This is going to be fun.wav new file mode 100644 index 0000000..b404fbc Binary files /dev/null and b/Test Music/gamer_poop/This is going to be fun.wav differ diff --git a/Test Music/gamer_poop/This isn't happening.wav b/Test Music/gamer_poop/This isn't happening.wav new file mode 100644 index 0000000..af214ef Binary files /dev/null and b/Test Music/gamer_poop/This isn't happening.wav differ diff --git a/Test Music/gamer_poop/Today's your lucky day.wav b/Test Music/gamer_poop/Today's your lucky day.wav new file mode 100644 index 0000000..5791760 Binary files /dev/null and b/Test Music/gamer_poop/Today's your lucky day.wav differ diff --git a/Test Music/gamer_poop/Too bad they're gone.wav b/Test Music/gamer_poop/Too bad they're gone.wav new file mode 100644 index 0000000..8fffb3c Binary files /dev/null and b/Test Music/gamer_poop/Too bad they're gone.wav differ diff --git a/Test Music/gamer_poop/Uh huh.wav b/Test Music/gamer_poop/Uh huh.wav new file mode 100644 index 0000000..2c7e287 Binary files /dev/null and b/Test Music/gamer_poop/Uh huh.wav differ diff --git a/Test Music/gamer_poop/WHAT.wav b/Test Music/gamer_poop/WHAT.wav new file mode 100644 index 0000000..edbb0a9 Binary files /dev/null and b/Test Music/gamer_poop/WHAT.wav differ diff --git a/Test Music/gamer_poop/Wait.wav b/Test Music/gamer_poop/Wait.wav new file mode 100644 index 0000000..9749545 Binary files /dev/null and b/Test Music/gamer_poop/Wait.wav differ diff --git a/Test Music/gamer_poop/Wat.wav b/Test Music/gamer_poop/Wat.wav new file mode 100644 index 0000000..dda7a6f Binary files /dev/null and b/Test Music/gamer_poop/Wat.wav differ diff --git a/Test Music/gamer_poop/Watch it there brother.wav b/Test Music/gamer_poop/Watch it there brother.wav new file mode 100644 index 0000000..8b4cc47 Binary files /dev/null and b/Test Music/gamer_poop/Watch it there brother.wav differ diff --git a/Test Music/gamer_poop/We are PATHETIC.wav b/Test Music/gamer_poop/We are PATHETIC.wav new file mode 100644 index 0000000..b2c9e6d Binary files /dev/null and b/Test Music/gamer_poop/We are PATHETIC.wav differ diff --git a/Test Music/gamer_poop/Well this is a nice mess you've gotten me into.wav b/Test Music/gamer_poop/Well this is a nice mess you've gotten me into.wav new file mode 100644 index 0000000..755df98 Binary files /dev/null and b/Test Music/gamer_poop/Well this is a nice mess you've gotten me into.wav differ diff --git a/Test Music/gamer_poop/What more can a man ask for.wav b/Test Music/gamer_poop/What more can a man ask for.wav new file mode 100644 index 0000000..5032b7f Binary files /dev/null and b/Test Music/gamer_poop/What more can a man ask for.wav differ diff --git a/Test Music/gamer_poop/What the fuck are you talking about.wav b/Test Music/gamer_poop/What the fuck are you talking about.wav new file mode 100644 index 0000000..efc6102 Binary files /dev/null and b/Test Music/gamer_poop/What the fuck are you talking about.wav differ diff --git a/Test Music/gamer_poop/What the hell are you doing.wav b/Test Music/gamer_poop/What the hell are you doing.wav new file mode 100644 index 0000000..58ee9f3 Binary files /dev/null and b/Test Music/gamer_poop/What the hell are you doing.wav differ diff --git a/Test Music/gamer_poop/What was that.wav b/Test Music/gamer_poop/What was that.wav new file mode 100644 index 0000000..4fb6fd1 Binary files /dev/null and b/Test Music/gamer_poop/What was that.wav differ diff --git a/Test Music/gamer_poop/What, no.wav b/Test Music/gamer_poop/What, no.wav new file mode 100644 index 0000000..28c1f7d Binary files /dev/null and b/Test Music/gamer_poop/What, no.wav differ diff --git a/Test Music/gamer_poop/Whoa, WHOA.wav b/Test Music/gamer_poop/Whoa, WHOA.wav new file mode 100644 index 0000000..e2bada0 Binary files /dev/null and b/Test Music/gamer_poop/Whoa, WHOA.wav differ diff --git a/Test Music/gamer_poop/Whoa, whoa, whoa, hey, HEY.wav b/Test Music/gamer_poop/Whoa, whoa, whoa, hey, HEY.wav new file mode 100644 index 0000000..e6eeca8 Binary files /dev/null and b/Test Music/gamer_poop/Whoa, whoa, whoa, hey, HEY.wav differ diff --git a/Test Music/gamer_poop/Why do you care, huh.wav b/Test Music/gamer_poop/Why do you care, huh.wav new file mode 100644 index 0000000..b6ab252 Binary files /dev/null and b/Test Music/gamer_poop/Why do you care, huh.wav differ diff --git a/Test Music/gamer_poop/Why, why.wav b/Test Music/gamer_poop/Why, why.wav new file mode 100644 index 0000000..e42309f Binary files /dev/null and b/Test Music/gamer_poop/Why, why.wav differ diff --git a/Test Music/gamer_poop/Why.wav b/Test Music/gamer_poop/Why.wav new file mode 100644 index 0000000..4ce8544 Binary files /dev/null and b/Test Music/gamer_poop/Why.wav differ diff --git a/Test Music/gamer_poop/Wiggle waggle.wav b/Test Music/gamer_poop/Wiggle waggle.wav new file mode 100644 index 0000000..44b71f7 Binary files /dev/null and b/Test Music/gamer_poop/Wiggle waggle.wav differ diff --git a/Test Music/gamer_poop/Woo, bravo.wav b/Test Music/gamer_poop/Woo, bravo.wav new file mode 100644 index 0000000..97d29f9 Binary files /dev/null and b/Test Music/gamer_poop/Woo, bravo.wav differ diff --git a/Test Music/gamer_poop/Wow, that's impressive.wav b/Test Music/gamer_poop/Wow, that's impressive.wav new file mode 100644 index 0000000..5e6f00f Binary files /dev/null and b/Test Music/gamer_poop/Wow, that's impressive.wav differ diff --git a/Test Music/gamer_poop/Yeah, I did.wav b/Test Music/gamer_poop/Yeah, I did.wav new file mode 100644 index 0000000..f0fdda4 Binary files /dev/null and b/Test Music/gamer_poop/Yeah, I did.wav differ diff --git a/Test Music/gamer_poop/Yeah, ok, that would be my pleasure.wav b/Test Music/gamer_poop/Yeah, ok, that would be my pleasure.wav new file mode 100644 index 0000000..5722c06 Binary files /dev/null and b/Test Music/gamer_poop/Yeah, ok, that would be my pleasure.wav differ diff --git a/Test Music/gamer_poop/Yeah, sure.wav b/Test Music/gamer_poop/Yeah, sure.wav new file mode 100644 index 0000000..5d4cff2 Binary files /dev/null and b/Test Music/gamer_poop/Yeah, sure.wav differ diff --git a/Test Music/gamer_poop/Yeeep.wav b/Test Music/gamer_poop/Yeeep.wav new file mode 100644 index 0000000..b29e199 Binary files /dev/null and b/Test Music/gamer_poop/Yeeep.wav differ diff --git a/Test Music/gamer_poop/Yeees.wav b/Test Music/gamer_poop/Yeees.wav new file mode 100644 index 0000000..688080f Binary files /dev/null and b/Test Music/gamer_poop/Yeees.wav differ diff --git a/Test Music/gamer_poop/You can do it.wav b/Test Music/gamer_poop/You can do it.wav new file mode 100644 index 0000000..2e69a83 Binary files /dev/null and b/Test Music/gamer_poop/You can do it.wav differ diff --git a/Test Music/gamer_poop/You can't resist can you.wav b/Test Music/gamer_poop/You can't resist can you.wav new file mode 100644 index 0000000..011c96c Binary files /dev/null and b/Test Music/gamer_poop/You can't resist can you.wav differ diff --git a/Test Music/gamer_poop/You derpy motherfucker.wav b/Test Music/gamer_poop/You derpy motherfucker.wav new file mode 100644 index 0000000..67a47d5 Binary files /dev/null and b/Test Music/gamer_poop/You derpy motherfucker.wav differ diff --git a/Test Music/gamer_poop/You do raise a good point.wav b/Test Music/gamer_poop/You do raise a good point.wav new file mode 100644 index 0000000..c25fbd6 Binary files /dev/null and b/Test Music/gamer_poop/You do raise a good point.wav differ diff --git a/Test Music/gamer_poop/You like that, huh.wav b/Test Music/gamer_poop/You like that, huh.wav new file mode 100644 index 0000000..9325b4d Binary files /dev/null and b/Test Music/gamer_poop/You like that, huh.wav differ diff --git a/Test Music/gamer_poop/You seem to be having a small problem.wav b/Test Music/gamer_poop/You seem to be having a small problem.wav new file mode 100644 index 0000000..a5fa244 Binary files /dev/null and b/Test Music/gamer_poop/You seem to be having a small problem.wav differ diff --git a/Test Music/gamer_poop/You slut.wav b/Test Music/gamer_poop/You slut.wav new file mode 100644 index 0000000..d1d1835 Binary files /dev/null and b/Test Music/gamer_poop/You slut.wav differ diff --git a/Test Music/gamer_poop/You wanna be a woman.wav b/Test Music/gamer_poop/You wanna be a woman.wav new file mode 100644 index 0000000..c692006 Binary files /dev/null and b/Test Music/gamer_poop/You wanna be a woman.wav differ diff --git a/Test Music/gamer_poop/You're creepin' me the fuck out.wav b/Test Music/gamer_poop/You're creepin' me the fuck out.wav new file mode 100644 index 0000000..e5fc196 Binary files /dev/null and b/Test Music/gamer_poop/You're creepin' me the fuck out.wav differ diff --git a/Test Music/gamer_poop/You're welcome.wav b/Test Music/gamer_poop/You're welcome.wav new file mode 100644 index 0000000..14194b1 Binary files /dev/null and b/Test Music/gamer_poop/You're welcome.wav differ diff --git a/Test Music/gamer_poop/Your ass.wav b/Test Music/gamer_poop/Your ass.wav new file mode 100644 index 0000000..b457cf3 Binary files /dev/null and b/Test Music/gamer_poop/Your ass.wav differ