diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm
index b3cdba6030..39c19c76fe 100644
--- a/code/modules/client/client procs.dm
+++ b/code/modules/client/client procs.dm
@@ -254,7 +254,6 @@
//send resources to the client. It's here in its own proc so we can move it around easiliy if need be
/client/proc/send_resources()
-// preload_vox() //Causes long delays with initial start window and subsequent windows when first logged in.
getFiles(
'html/search.js',
diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm
index 71267a4d45..17dee12762 100644
--- a/code/modules/mob/living/silicon/ai/ai.dm
+++ b/code/modules/mob/living/silicon/ai/ai.dm
@@ -386,13 +386,6 @@ var/list/ai_list = list()
// src << text ("Switching Law [L]'s report status to []", lawcheck[L+1])
checklaws()
- //Uncomment this line of code if you are enabling the AI Vocal (VOX) announcements.
-/*
- if(href_list["say_word"])
- play_vox_word(href_list["say_word"], null, src)
- return
-*/
-
if (href_list["lawi"]) // Toggling whether or not a law gets stated by the State Laws verb --NeoFite
var/L = text2num(href_list["lawi"])
switch(ioncheck[L])
diff --git a/code/modules/mob/living/silicon/ai/say.dm b/code/modules/mob/living/silicon/ai/say.dm
index 65118d811c..1e37639227 100644
--- a/code/modules/mob/living/silicon/ai/say.dm
+++ b/code/modules/mob/living/silicon/ai/say.dm
@@ -4,126 +4,3 @@
return
//If there is a defined "parent" AI, it is actually an AI, and it is alive, anything the AI tries to say is said by the parent instead.
..(message)
-
-// These Verbs are commented out since we've disabled the AI vocal (VOX) announcements.
-// If you re-enable them there is 3 lines in ai.dm Topic() that you need to uncomment as well.
-// just search for VOX in there.
-
-/*
-var/announcing_vox = 0 // Stores the time of the last announcement
-var/const/VOX_CHANNEL = 200
-var/const/VOX_DELAY = 100 // 10 seconds
-var/const/VOX_PATH = "sound/vox/"
-
-/mob/living/silicon/ai/verb/announcement_help()
-
- set name = "Announcement Help"
- set desc = "Display a list of vocal words to announce to the crew."
- set category = "AI Commands"
-
-
- var/dat = "Here is a list of words you can type into the 'Announcement' button to create sentences to vocally announce to everyone on the same level at you.
\
-
- You can also click on the word to preview it.
\
- - You can only say 30 words for every announcement.
\
- - Do not use punctuation as you would normally, if you want a pause you can use the full stop and comma characters by separating them with spaces, like so: 'Alpha . Test , Bravo'.
\
- WARNING:
Misuse of the announcement system will get you job banned.
"
-
- var/index = 0
- var/list/vox_words = flist(VOX_PATH) // flist will return a list of strings with all the files in the path
- for(var/word in vox_words)
- index++
- var/stripped_word = copytext(word, 1, length(word) - 3) // Remove the .wav
- dat += "[capitalize(stripped_word)]"
- if(index != vox_words.len)
- dat += " / "
-
- src << browse(dat, "window=announce_help;size=500x400")
-
-
-/mob/living/silicon/ai/verb/announcement()
-
- set name = "Announcement"
- set desc = "Create a vocal announcement by typing in the available words to create a sentence."
- set category = "AI Commands"
-
- if(announcing_vox > world.time)
- src << "Please wait [round((announcing_vox - world.time) / 10)] seconds."
- return
-
- var/message = input(src, "WARNING: Misuse of this verb can result in you being job banned. More help is available in 'Announcement Help'", "Announcement", src.last_announcement) as text
-
- last_announcement = message
-
- if(!message || announcing_vox > world.time)
- return
-
- var/list/words = text2list(trim(message), " ")
- var/list/incorrect_words = list()
-
- if(words.len > 30)
- words.len = 30
-
- // Detect incorrect words which aren't .wav files.
- for(var/word in words)
- word = trim(word)
- if(!word)
- words -= word
- continue
- if(!vox_word_exists(word))
- incorrect_words += word
-
- if(incorrect_words.len)
- src << "These words are not available on the announcement system: [english_list(incorrect_words)]."
- return
-
- announcing_vox = world.time + VOX_DELAY
-
- log_game("[key_name_admin(src)] made a vocal announcement with the following message: [message].")
-
- for(var/word in words)
- play_vox_word(word, src.z, null)
-
-
-/proc/play_vox_word(var/word, var/z_level, var/mob/only_listener)
-
- word = lowertext(word)
-
- if(vox_word_exists(word))
-
- var/sound_file = get_vox_file(word)
- var/sound/voice = sound(sound_file, wait = 1, channel = VOX_CHANNEL)
- voice.status = SOUND_STREAM
-
- // If there is no single listener, broadcast to everyone in the same z level
- if(!only_listener)
- // Play voice for all mobs in the z level
- for(var/mob/M in player_list)
- if(M.client)
- var/turf/T = get_turf(M)
- if(T.z == z_level)
- M << voice
- else
- only_listener << voice
- return 1
- return 0
-
-
-/proc/vox_word_exists(var/word)
- return fexists("[VOX_PATH][word].wav")
-
-/proc/get_vox_file(var/word)
- if(vox_word_exists(word))
- return file("[VOX_PATH][word].wav")
-
-// Dynamically loading it has bad results with sounds overtaking each other, even with the wait variable.
-// We send the file to the user when they login.
-
-/client/proc/preload_vox()
- var/list/vox_files = flist(VOX_PATH)
- for(var/file in vox_files)
- // src << "Downloading [file]"
- var/sound/S = sound("[VOX_PATH][file]")
- src << browse_rsc(S)
-
-
-*/
diff --git a/sound/vox/,.wav b/sound/vox/,.wav
deleted file mode 100644
index 31a47dca60..0000000000
Binary files a/sound/vox/,.wav and /dev/null differ
diff --git a/sound/vox/..wav b/sound/vox/..wav
deleted file mode 100644
index 7eeb1eb9bc..0000000000
Binary files a/sound/vox/..wav and /dev/null differ
diff --git a/sound/vox/a.wav b/sound/vox/a.wav
deleted file mode 100644
index c6981d2902..0000000000
Binary files a/sound/vox/a.wav and /dev/null differ
diff --git a/sound/vox/accelerating.wav b/sound/vox/accelerating.wav
deleted file mode 100644
index e86b18a04b..0000000000
Binary files a/sound/vox/accelerating.wav and /dev/null differ
diff --git a/sound/vox/accelerator.wav b/sound/vox/accelerator.wav
deleted file mode 100644
index be097b6caa..0000000000
Binary files a/sound/vox/accelerator.wav and /dev/null differ
diff --git a/sound/vox/accepted.wav b/sound/vox/accepted.wav
deleted file mode 100644
index 59160849e2..0000000000
Binary files a/sound/vox/accepted.wav and /dev/null differ
diff --git a/sound/vox/access.wav b/sound/vox/access.wav
deleted file mode 100644
index 25fd098883..0000000000
Binary files a/sound/vox/access.wav and /dev/null differ
diff --git a/sound/vox/acknowledge.wav b/sound/vox/acknowledge.wav
deleted file mode 100644
index 14946cccf8..0000000000
Binary files a/sound/vox/acknowledge.wav and /dev/null differ
diff --git a/sound/vox/acknowledged.wav b/sound/vox/acknowledged.wav
deleted file mode 100644
index 232d9c3bf7..0000000000
Binary files a/sound/vox/acknowledged.wav and /dev/null differ
diff --git a/sound/vox/acquired.wav b/sound/vox/acquired.wav
deleted file mode 100644
index 7eecdf9140..0000000000
Binary files a/sound/vox/acquired.wav and /dev/null differ
diff --git a/sound/vox/acquisition.wav b/sound/vox/acquisition.wav
deleted file mode 100644
index 11be7dc475..0000000000
Binary files a/sound/vox/acquisition.wav and /dev/null differ
diff --git a/sound/vox/across.wav b/sound/vox/across.wav
deleted file mode 100644
index 1591e89700..0000000000
Binary files a/sound/vox/across.wav and /dev/null differ
diff --git a/sound/vox/activate.wav b/sound/vox/activate.wav
deleted file mode 100644
index 32a45cbf22..0000000000
Binary files a/sound/vox/activate.wav and /dev/null differ
diff --git a/sound/vox/activated.wav b/sound/vox/activated.wav
deleted file mode 100644
index 154e0389e8..0000000000
Binary files a/sound/vox/activated.wav and /dev/null differ
diff --git a/sound/vox/activity.wav b/sound/vox/activity.wav
deleted file mode 100644
index 5920e6dd38..0000000000
Binary files a/sound/vox/activity.wav and /dev/null differ
diff --git a/sound/vox/adios.wav b/sound/vox/adios.wav
deleted file mode 100644
index 86e268ca1f..0000000000
Binary files a/sound/vox/adios.wav and /dev/null differ
diff --git a/sound/vox/administration.wav b/sound/vox/administration.wav
deleted file mode 100644
index d85d67eabf..0000000000
Binary files a/sound/vox/administration.wav and /dev/null differ
diff --git a/sound/vox/advanced.wav b/sound/vox/advanced.wav
deleted file mode 100644
index 987cd05b2a..0000000000
Binary files a/sound/vox/advanced.wav and /dev/null differ
diff --git a/sound/vox/after.wav b/sound/vox/after.wav
deleted file mode 100644
index f63abdff55..0000000000
Binary files a/sound/vox/after.wav and /dev/null differ
diff --git a/sound/vox/agent.wav b/sound/vox/agent.wav
deleted file mode 100644
index 594932971e..0000000000
Binary files a/sound/vox/agent.wav and /dev/null differ
diff --git a/sound/vox/alarm.wav b/sound/vox/alarm.wav
deleted file mode 100644
index 296ca773d6..0000000000
Binary files a/sound/vox/alarm.wav and /dev/null differ
diff --git a/sound/vox/alert.wav b/sound/vox/alert.wav
deleted file mode 100644
index 1a749b7c74..0000000000
Binary files a/sound/vox/alert.wav and /dev/null differ
diff --git a/sound/vox/alien.wav b/sound/vox/alien.wav
deleted file mode 100644
index 5890955995..0000000000
Binary files a/sound/vox/alien.wav and /dev/null differ
diff --git a/sound/vox/aligned.wav b/sound/vox/aligned.wav
deleted file mode 100644
index 20bbe5bfa7..0000000000
Binary files a/sound/vox/aligned.wav and /dev/null differ
diff --git a/sound/vox/all.wav b/sound/vox/all.wav
deleted file mode 100644
index 5bfc4dee60..0000000000
Binary files a/sound/vox/all.wav and /dev/null differ
diff --git a/sound/vox/alpha.wav b/sound/vox/alpha.wav
deleted file mode 100644
index d64239ec88..0000000000
Binary files a/sound/vox/alpha.wav and /dev/null differ
diff --git a/sound/vox/am.wav b/sound/vox/am.wav
deleted file mode 100644
index c273e5231d..0000000000
Binary files a/sound/vox/am.wav and /dev/null differ
diff --git a/sound/vox/amigo.wav b/sound/vox/amigo.wav
deleted file mode 100644
index 03ec617c29..0000000000
Binary files a/sound/vox/amigo.wav and /dev/null differ
diff --git a/sound/vox/ammunition.wav b/sound/vox/ammunition.wav
deleted file mode 100644
index 148605c2ca..0000000000
Binary files a/sound/vox/ammunition.wav and /dev/null differ
diff --git a/sound/vox/an.wav b/sound/vox/an.wav
deleted file mode 100644
index 5755607e36..0000000000
Binary files a/sound/vox/an.wav and /dev/null differ
diff --git a/sound/vox/and.wav b/sound/vox/and.wav
deleted file mode 100644
index 6e155c09d9..0000000000
Binary files a/sound/vox/and.wav and /dev/null differ
diff --git a/sound/vox/announcement.wav b/sound/vox/announcement.wav
deleted file mode 100644
index 9d185ead91..0000000000
Binary files a/sound/vox/announcement.wav and /dev/null differ
diff --git a/sound/vox/anomalous.wav b/sound/vox/anomalous.wav
deleted file mode 100644
index 1db9a4fa09..0000000000
Binary files a/sound/vox/anomalous.wav and /dev/null differ
diff --git a/sound/vox/antenna.wav b/sound/vox/antenna.wav
deleted file mode 100644
index fa82d58cb9..0000000000
Binary files a/sound/vox/antenna.wav and /dev/null differ
diff --git a/sound/vox/any.wav b/sound/vox/any.wav
deleted file mode 100644
index 73bed24661..0000000000
Binary files a/sound/vox/any.wav and /dev/null differ
diff --git a/sound/vox/apprehend.wav b/sound/vox/apprehend.wav
deleted file mode 100644
index 874ef83963..0000000000
Binary files a/sound/vox/apprehend.wav and /dev/null differ
diff --git a/sound/vox/approach.wav b/sound/vox/approach.wav
deleted file mode 100644
index 5c5e1995df..0000000000
Binary files a/sound/vox/approach.wav and /dev/null differ
diff --git a/sound/vox/are.wav b/sound/vox/are.wav
deleted file mode 100644
index bacdb31e2a..0000000000
Binary files a/sound/vox/are.wav and /dev/null differ
diff --git a/sound/vox/area.wav b/sound/vox/area.wav
deleted file mode 100644
index f2ac3dd05a..0000000000
Binary files a/sound/vox/area.wav and /dev/null differ
diff --git a/sound/vox/arm.wav b/sound/vox/arm.wav
deleted file mode 100644
index 225abed39e..0000000000
Binary files a/sound/vox/arm.wav and /dev/null differ
diff --git a/sound/vox/armed.wav b/sound/vox/armed.wav
deleted file mode 100644
index 55e4a67c66..0000000000
Binary files a/sound/vox/armed.wav and /dev/null differ
diff --git a/sound/vox/armor.wav b/sound/vox/armor.wav
deleted file mode 100644
index 2ca51709d4..0000000000
Binary files a/sound/vox/armor.wav and /dev/null differ
diff --git a/sound/vox/armory.wav b/sound/vox/armory.wav
deleted file mode 100644
index 63fff9e39e..0000000000
Binary files a/sound/vox/armory.wav and /dev/null differ
diff --git a/sound/vox/arrest.wav b/sound/vox/arrest.wav
deleted file mode 100644
index cdc24ec627..0000000000
Binary files a/sound/vox/arrest.wav and /dev/null differ
diff --git a/sound/vox/ass.wav b/sound/vox/ass.wav
deleted file mode 100644
index 2b6698aa66..0000000000
Binary files a/sound/vox/ass.wav and /dev/null differ
diff --git a/sound/vox/at.wav b/sound/vox/at.wav
deleted file mode 100644
index 0b1b9396e5..0000000000
Binary files a/sound/vox/at.wav and /dev/null differ
diff --git a/sound/vox/atomic.wav b/sound/vox/atomic.wav
deleted file mode 100644
index 6a00304807..0000000000
Binary files a/sound/vox/atomic.wav and /dev/null differ
diff --git a/sound/vox/attention.wav b/sound/vox/attention.wav
deleted file mode 100644
index e9078e6d9e..0000000000
Binary files a/sound/vox/attention.wav and /dev/null differ
diff --git a/sound/vox/authorize.wav b/sound/vox/authorize.wav
deleted file mode 100644
index 3dcff1208b..0000000000
Binary files a/sound/vox/authorize.wav and /dev/null differ
diff --git a/sound/vox/authorized.wav b/sound/vox/authorized.wav
deleted file mode 100644
index 67672abf35..0000000000
Binary files a/sound/vox/authorized.wav and /dev/null differ
diff --git a/sound/vox/automatic.wav b/sound/vox/automatic.wav
deleted file mode 100644
index 8e676b0827..0000000000
Binary files a/sound/vox/automatic.wav and /dev/null differ
diff --git a/sound/vox/away.wav b/sound/vox/away.wav
deleted file mode 100644
index e1a3bee4d8..0000000000
Binary files a/sound/vox/away.wav and /dev/null differ
diff --git a/sound/vox/b.wav b/sound/vox/b.wav
deleted file mode 100644
index 751c7b7b1a..0000000000
Binary files a/sound/vox/b.wav and /dev/null differ
diff --git a/sound/vox/back.wav b/sound/vox/back.wav
deleted file mode 100644
index b2f4e56e40..0000000000
Binary files a/sound/vox/back.wav and /dev/null differ
diff --git a/sound/vox/backman.wav b/sound/vox/backman.wav
deleted file mode 100644
index 60e149eaee..0000000000
Binary files a/sound/vox/backman.wav and /dev/null differ
diff --git a/sound/vox/bad.wav b/sound/vox/bad.wav
deleted file mode 100644
index b59100564f..0000000000
Binary files a/sound/vox/bad.wav and /dev/null differ
diff --git a/sound/vox/bag.wav b/sound/vox/bag.wav
deleted file mode 100644
index ccbf3f851e..0000000000
Binary files a/sound/vox/bag.wav and /dev/null differ
diff --git a/sound/vox/bailey.wav b/sound/vox/bailey.wav
deleted file mode 100644
index deca97dc6b..0000000000
Binary files a/sound/vox/bailey.wav and /dev/null differ
diff --git a/sound/vox/barracks.wav b/sound/vox/barracks.wav
deleted file mode 100644
index c7cc651ced..0000000000
Binary files a/sound/vox/barracks.wav and /dev/null differ
diff --git a/sound/vox/base.wav b/sound/vox/base.wav
deleted file mode 100644
index a4c6c829e5..0000000000
Binary files a/sound/vox/base.wav and /dev/null differ
diff --git a/sound/vox/bay.wav b/sound/vox/bay.wav
deleted file mode 100644
index 769dfc38c2..0000000000
Binary files a/sound/vox/bay.wav and /dev/null differ
diff --git a/sound/vox/be.wav b/sound/vox/be.wav
deleted file mode 100644
index 38074711b4..0000000000
Binary files a/sound/vox/be.wav and /dev/null differ
diff --git a/sound/vox/been.wav b/sound/vox/been.wav
deleted file mode 100644
index 959f08ebf5..0000000000
Binary files a/sound/vox/been.wav and /dev/null differ
diff --git a/sound/vox/before.wav b/sound/vox/before.wav
deleted file mode 100644
index a7c2cdd5b2..0000000000
Binary files a/sound/vox/before.wav and /dev/null differ
diff --git a/sound/vox/beyond.wav b/sound/vox/beyond.wav
deleted file mode 100644
index d0641c009b..0000000000
Binary files a/sound/vox/beyond.wav and /dev/null differ
diff --git a/sound/vox/biohazard.wav b/sound/vox/biohazard.wav
deleted file mode 100644
index 6ee3aca426..0000000000
Binary files a/sound/vox/biohazard.wav and /dev/null differ
diff --git a/sound/vox/biological.wav b/sound/vox/biological.wav
deleted file mode 100644
index fef86450b1..0000000000
Binary files a/sound/vox/biological.wav and /dev/null differ
diff --git a/sound/vox/birdwell.wav b/sound/vox/birdwell.wav
deleted file mode 100644
index 6436f724f0..0000000000
Binary files a/sound/vox/birdwell.wav and /dev/null differ
diff --git a/sound/vox/bizwarn.wav b/sound/vox/bizwarn.wav
deleted file mode 100644
index ff392b491a..0000000000
Binary files a/sound/vox/bizwarn.wav and /dev/null differ
diff --git a/sound/vox/black.wav b/sound/vox/black.wav
deleted file mode 100644
index 52dd0881ae..0000000000
Binary files a/sound/vox/black.wav and /dev/null differ
diff --git a/sound/vox/blast.wav b/sound/vox/blast.wav
deleted file mode 100644
index fa8d79fbb4..0000000000
Binary files a/sound/vox/blast.wav and /dev/null differ
diff --git a/sound/vox/blocked.wav b/sound/vox/blocked.wav
deleted file mode 100644
index 5e086f4bce..0000000000
Binary files a/sound/vox/blocked.wav and /dev/null differ
diff --git a/sound/vox/bloop.wav b/sound/vox/bloop.wav
deleted file mode 100644
index 49cf90c523..0000000000
Binary files a/sound/vox/bloop.wav and /dev/null differ
diff --git a/sound/vox/blue.wav b/sound/vox/blue.wav
deleted file mode 100644
index 83a6e7c3eb..0000000000
Binary files a/sound/vox/blue.wav and /dev/null differ
diff --git a/sound/vox/bottom.wav b/sound/vox/bottom.wav
deleted file mode 100644
index 2330a74b28..0000000000
Binary files a/sound/vox/bottom.wav and /dev/null differ
diff --git a/sound/vox/bravo.wav b/sound/vox/bravo.wav
deleted file mode 100644
index 560af14f2c..0000000000
Binary files a/sound/vox/bravo.wav and /dev/null differ
diff --git a/sound/vox/breach.wav b/sound/vox/breach.wav
deleted file mode 100644
index 89a6178334..0000000000
Binary files a/sound/vox/breach.wav and /dev/null differ
diff --git a/sound/vox/breached.wav b/sound/vox/breached.wav
deleted file mode 100644
index f4028d18a8..0000000000
Binary files a/sound/vox/breached.wav and /dev/null differ
diff --git a/sound/vox/break.wav b/sound/vox/break.wav
deleted file mode 100644
index 124720295b..0000000000
Binary files a/sound/vox/break.wav and /dev/null differ
diff --git a/sound/vox/bridge.wav b/sound/vox/bridge.wav
deleted file mode 100644
index cbb0cb461d..0000000000
Binary files a/sound/vox/bridge.wav and /dev/null differ
diff --git a/sound/vox/bust.wav b/sound/vox/bust.wav
deleted file mode 100644
index 6af0f12c80..0000000000
Binary files a/sound/vox/bust.wav and /dev/null differ
diff --git a/sound/vox/but.wav b/sound/vox/but.wav
deleted file mode 100644
index 0728ed3e1e..0000000000
Binary files a/sound/vox/but.wav and /dev/null differ
diff --git a/sound/vox/button.wav b/sound/vox/button.wav
deleted file mode 100644
index bc583238ca..0000000000
Binary files a/sound/vox/button.wav and /dev/null differ
diff --git a/sound/vox/buzwarn.wav b/sound/vox/buzwarn.wav
deleted file mode 100644
index 82ddd2cdb3..0000000000
Binary files a/sound/vox/buzwarn.wav and /dev/null differ
diff --git a/sound/vox/bypass.wav b/sound/vox/bypass.wav
deleted file mode 100644
index b5155d37ff..0000000000
Binary files a/sound/vox/bypass.wav and /dev/null differ
diff --git a/sound/vox/c.wav b/sound/vox/c.wav
deleted file mode 100644
index 9fcfc5e745..0000000000
Binary files a/sound/vox/c.wav and /dev/null differ
diff --git a/sound/vox/cable.wav b/sound/vox/cable.wav
deleted file mode 100644
index d761092651..0000000000
Binary files a/sound/vox/cable.wav and /dev/null differ
diff --git a/sound/vox/call.wav b/sound/vox/call.wav
deleted file mode 100644
index aa06767b94..0000000000
Binary files a/sound/vox/call.wav and /dev/null differ
diff --git a/sound/vox/called.wav b/sound/vox/called.wav
deleted file mode 100644
index f0c2897c8d..0000000000
Binary files a/sound/vox/called.wav and /dev/null differ
diff --git a/sound/vox/canal.wav b/sound/vox/canal.wav
deleted file mode 100644
index b426a8f6a9..0000000000
Binary files a/sound/vox/canal.wav and /dev/null differ
diff --git a/sound/vox/cap.wav b/sound/vox/cap.wav
deleted file mode 100644
index 998505184b..0000000000
Binary files a/sound/vox/cap.wav and /dev/null differ
diff --git a/sound/vox/captain.wav b/sound/vox/captain.wav
deleted file mode 100644
index 61222de532..0000000000
Binary files a/sound/vox/captain.wav and /dev/null differ
diff --git a/sound/vox/capture.wav b/sound/vox/capture.wav
deleted file mode 100644
index c7bfaad64f..0000000000
Binary files a/sound/vox/capture.wav and /dev/null differ
diff --git a/sound/vox/ceiling.wav b/sound/vox/ceiling.wav
deleted file mode 100644
index 381db754ca..0000000000
Binary files a/sound/vox/ceiling.wav and /dev/null differ
diff --git a/sound/vox/celsius.wav b/sound/vox/celsius.wav
deleted file mode 100644
index ac59448a46..0000000000
Binary files a/sound/vox/celsius.wav and /dev/null differ
diff --git a/sound/vox/center.wav b/sound/vox/center.wav
deleted file mode 100644
index 35bdcb5224..0000000000
Binary files a/sound/vox/center.wav and /dev/null differ
diff --git a/sound/vox/centi.wav b/sound/vox/centi.wav
deleted file mode 100644
index efccef07e7..0000000000
Binary files a/sound/vox/centi.wav and /dev/null differ
diff --git a/sound/vox/central.wav b/sound/vox/central.wav
deleted file mode 100644
index 1c9c58be57..0000000000
Binary files a/sound/vox/central.wav and /dev/null differ
diff --git a/sound/vox/chamber.wav b/sound/vox/chamber.wav
deleted file mode 100644
index 38dbf9ffa7..0000000000
Binary files a/sound/vox/chamber.wav and /dev/null differ
diff --git a/sound/vox/charlie.wav b/sound/vox/charlie.wav
deleted file mode 100644
index 353ce195f3..0000000000
Binary files a/sound/vox/charlie.wav and /dev/null differ
diff --git a/sound/vox/check.wav b/sound/vox/check.wav
deleted file mode 100644
index 709f9a6555..0000000000
Binary files a/sound/vox/check.wav and /dev/null differ
diff --git a/sound/vox/checkpoint.wav b/sound/vox/checkpoint.wav
deleted file mode 100644
index 15aa5e4cc9..0000000000
Binary files a/sound/vox/checkpoint.wav and /dev/null differ
diff --git a/sound/vox/chemical.wav b/sound/vox/chemical.wav
deleted file mode 100644
index eeb32be385..0000000000
Binary files a/sound/vox/chemical.wav and /dev/null differ
diff --git a/sound/vox/cleanup.wav b/sound/vox/cleanup.wav
deleted file mode 100644
index a47ddb233a..0000000000
Binary files a/sound/vox/cleanup.wav and /dev/null differ
diff --git a/sound/vox/clear.wav b/sound/vox/clear.wav
deleted file mode 100644
index a23cfc5e2b..0000000000
Binary files a/sound/vox/clear.wav and /dev/null differ
diff --git a/sound/vox/clearance.wav b/sound/vox/clearance.wav
deleted file mode 100644
index a35e0699b8..0000000000
Binary files a/sound/vox/clearance.wav and /dev/null differ
diff --git a/sound/vox/close.wav b/sound/vox/close.wav
deleted file mode 100644
index 6a46d7fb06..0000000000
Binary files a/sound/vox/close.wav and /dev/null differ
diff --git a/sound/vox/code.wav b/sound/vox/code.wav
deleted file mode 100644
index 63bdfbe883..0000000000
Binary files a/sound/vox/code.wav and /dev/null differ
diff --git a/sound/vox/coded.wav b/sound/vox/coded.wav
deleted file mode 100644
index ec876b297f..0000000000
Binary files a/sound/vox/coded.wav and /dev/null differ
diff --git a/sound/vox/collider.wav b/sound/vox/collider.wav
deleted file mode 100644
index a26ff0a317..0000000000
Binary files a/sound/vox/collider.wav and /dev/null differ
diff --git a/sound/vox/command.wav b/sound/vox/command.wav
deleted file mode 100644
index ba0c7e852b..0000000000
Binary files a/sound/vox/command.wav and /dev/null differ
diff --git a/sound/vox/communication.wav b/sound/vox/communication.wav
deleted file mode 100644
index 35165357e6..0000000000
Binary files a/sound/vox/communication.wav and /dev/null differ
diff --git a/sound/vox/complex.wav b/sound/vox/complex.wav
deleted file mode 100644
index d2c01ccd57..0000000000
Binary files a/sound/vox/complex.wav and /dev/null differ
diff --git a/sound/vox/computer.wav b/sound/vox/computer.wav
deleted file mode 100644
index 89808c20d7..0000000000
Binary files a/sound/vox/computer.wav and /dev/null differ
diff --git a/sound/vox/condition.wav b/sound/vox/condition.wav
deleted file mode 100644
index b32c83668e..0000000000
Binary files a/sound/vox/condition.wav and /dev/null differ
diff --git a/sound/vox/containment.wav b/sound/vox/containment.wav
deleted file mode 100644
index 563cb4e15a..0000000000
Binary files a/sound/vox/containment.wav and /dev/null differ
diff --git a/sound/vox/contamination.wav b/sound/vox/contamination.wav
deleted file mode 100644
index d597267cdd..0000000000
Binary files a/sound/vox/contamination.wav and /dev/null differ
diff --git a/sound/vox/control.wav b/sound/vox/control.wav
deleted file mode 100644
index e7bf57bbd8..0000000000
Binary files a/sound/vox/control.wav and /dev/null differ
diff --git a/sound/vox/coolant.wav b/sound/vox/coolant.wav
deleted file mode 100644
index d4474b9d9d..0000000000
Binary files a/sound/vox/coolant.wav and /dev/null differ
diff --git a/sound/vox/coomer.wav b/sound/vox/coomer.wav
deleted file mode 100644
index 1e4b37929f..0000000000
Binary files a/sound/vox/coomer.wav and /dev/null differ
diff --git a/sound/vox/core.wav b/sound/vox/core.wav
deleted file mode 100644
index da6874b2e7..0000000000
Binary files a/sound/vox/core.wav and /dev/null differ
diff --git a/sound/vox/correct.wav b/sound/vox/correct.wav
deleted file mode 100644
index cde927b747..0000000000
Binary files a/sound/vox/correct.wav and /dev/null differ
diff --git a/sound/vox/corridor.wav b/sound/vox/corridor.wav
deleted file mode 100644
index defdcda2d1..0000000000
Binary files a/sound/vox/corridor.wav and /dev/null differ
diff --git a/sound/vox/crew.wav b/sound/vox/crew.wav
deleted file mode 100644
index 4f48a08cb1..0000000000
Binary files a/sound/vox/crew.wav and /dev/null differ
diff --git a/sound/vox/cross.wav b/sound/vox/cross.wav
deleted file mode 100644
index c393dffbf1..0000000000
Binary files a/sound/vox/cross.wav and /dev/null differ
diff --git a/sound/vox/cryogenic.wav b/sound/vox/cryogenic.wav
deleted file mode 100644
index eb1a62ae38..0000000000
Binary files a/sound/vox/cryogenic.wav and /dev/null differ
diff --git a/sound/vox/d.wav b/sound/vox/d.wav
deleted file mode 100644
index f977a49505..0000000000
Binary files a/sound/vox/d.wav and /dev/null differ
diff --git a/sound/vox/dadeda.wav b/sound/vox/dadeda.wav
deleted file mode 100644
index 2ac0ff589a..0000000000
Binary files a/sound/vox/dadeda.wav and /dev/null differ
diff --git a/sound/vox/damage.wav b/sound/vox/damage.wav
deleted file mode 100644
index 83fce3dcf0..0000000000
Binary files a/sound/vox/damage.wav and /dev/null differ
diff --git a/sound/vox/damaged.wav b/sound/vox/damaged.wav
deleted file mode 100644
index e9f2ff5dbb..0000000000
Binary files a/sound/vox/damaged.wav and /dev/null differ
diff --git a/sound/vox/danger.wav b/sound/vox/danger.wav
deleted file mode 100644
index 40ff8b8db9..0000000000
Binary files a/sound/vox/danger.wav and /dev/null differ
diff --git a/sound/vox/day.wav b/sound/vox/day.wav
deleted file mode 100644
index 92e3fe81da..0000000000
Binary files a/sound/vox/day.wav and /dev/null differ
diff --git a/sound/vox/deactivated.wav b/sound/vox/deactivated.wav
deleted file mode 100644
index f587f266dd..0000000000
Binary files a/sound/vox/deactivated.wav and /dev/null differ
diff --git a/sound/vox/decompression.wav b/sound/vox/decompression.wav
deleted file mode 100644
index a758f1bbd7..0000000000
Binary files a/sound/vox/decompression.wav and /dev/null differ
diff --git a/sound/vox/decontamination.wav b/sound/vox/decontamination.wav
deleted file mode 100644
index 9794de0a23..0000000000
Binary files a/sound/vox/decontamination.wav and /dev/null differ
diff --git a/sound/vox/deeoo.wav b/sound/vox/deeoo.wav
deleted file mode 100644
index 4f82a18b2a..0000000000
Binary files a/sound/vox/deeoo.wav and /dev/null differ
diff --git a/sound/vox/defense.wav b/sound/vox/defense.wav
deleted file mode 100644
index 9da8de137f..0000000000
Binary files a/sound/vox/defense.wav and /dev/null differ
diff --git a/sound/vox/degrees.wav b/sound/vox/degrees.wav
deleted file mode 100644
index 7e77561c14..0000000000
Binary files a/sound/vox/degrees.wav and /dev/null differ
diff --git a/sound/vox/delta.wav b/sound/vox/delta.wav
deleted file mode 100644
index 86052809f4..0000000000
Binary files a/sound/vox/delta.wav and /dev/null differ
diff --git a/sound/vox/denied.wav b/sound/vox/denied.wav
deleted file mode 100644
index 6b1167d41d..0000000000
Binary files a/sound/vox/denied.wav and /dev/null differ
diff --git a/sound/vox/deploy.wav b/sound/vox/deploy.wav
deleted file mode 100644
index 2f9aacd350..0000000000
Binary files a/sound/vox/deploy.wav and /dev/null differ
diff --git a/sound/vox/deployed.wav b/sound/vox/deployed.wav
deleted file mode 100644
index a85a076b18..0000000000
Binary files a/sound/vox/deployed.wav and /dev/null differ
diff --git a/sound/vox/destroy.wav b/sound/vox/destroy.wav
deleted file mode 100644
index 56cf437c66..0000000000
Binary files a/sound/vox/destroy.wav and /dev/null differ
diff --git a/sound/vox/destroyed.wav b/sound/vox/destroyed.wav
deleted file mode 100644
index 20308df2df..0000000000
Binary files a/sound/vox/destroyed.wav and /dev/null differ
diff --git a/sound/vox/detain.wav b/sound/vox/detain.wav
deleted file mode 100644
index 7d5f4e06f4..0000000000
Binary files a/sound/vox/detain.wav and /dev/null differ
diff --git a/sound/vox/detected.wav b/sound/vox/detected.wav
deleted file mode 100644
index 101429a614..0000000000
Binary files a/sound/vox/detected.wav and /dev/null differ
diff --git a/sound/vox/detonation.wav b/sound/vox/detonation.wav
deleted file mode 100644
index a696e97976..0000000000
Binary files a/sound/vox/detonation.wav and /dev/null differ
diff --git a/sound/vox/device.wav b/sound/vox/device.wav
deleted file mode 100644
index d5ecd2f67b..0000000000
Binary files a/sound/vox/device.wav and /dev/null differ
diff --git a/sound/vox/did.wav b/sound/vox/did.wav
deleted file mode 100644
index 0c52e31b72..0000000000
Binary files a/sound/vox/did.wav and /dev/null differ
diff --git a/sound/vox/die.wav b/sound/vox/die.wav
deleted file mode 100644
index b47622cfc7..0000000000
Binary files a/sound/vox/die.wav and /dev/null differ
diff --git a/sound/vox/dimensional.wav b/sound/vox/dimensional.wav
deleted file mode 100644
index f67956ddc7..0000000000
Binary files a/sound/vox/dimensional.wav and /dev/null differ
diff --git a/sound/vox/dirt.wav b/sound/vox/dirt.wav
deleted file mode 100644
index 08990c47d8..0000000000
Binary files a/sound/vox/dirt.wav and /dev/null differ
diff --git a/sound/vox/disengaged.wav b/sound/vox/disengaged.wav
deleted file mode 100644
index aa84ed27a6..0000000000
Binary files a/sound/vox/disengaged.wav and /dev/null differ
diff --git a/sound/vox/dish.wav b/sound/vox/dish.wav
deleted file mode 100644
index aeff92d205..0000000000
Binary files a/sound/vox/dish.wav and /dev/null differ
diff --git a/sound/vox/disposal.wav b/sound/vox/disposal.wav
deleted file mode 100644
index bfe38f6098..0000000000
Binary files a/sound/vox/disposal.wav and /dev/null differ
diff --git a/sound/vox/distance.wav b/sound/vox/distance.wav
deleted file mode 100644
index 670eacaabe..0000000000
Binary files a/sound/vox/distance.wav and /dev/null differ
diff --git a/sound/vox/distortion.wav b/sound/vox/distortion.wav
deleted file mode 100644
index 7fae33e244..0000000000
Binary files a/sound/vox/distortion.wav and /dev/null differ
diff --git a/sound/vox/do.wav b/sound/vox/do.wav
deleted file mode 100644
index d82a9ab107..0000000000
Binary files a/sound/vox/do.wav and /dev/null differ
diff --git a/sound/vox/doctor.wav b/sound/vox/doctor.wav
deleted file mode 100644
index f9cdc53805..0000000000
Binary files a/sound/vox/doctor.wav and /dev/null differ
diff --git a/sound/vox/doop.wav b/sound/vox/doop.wav
deleted file mode 100644
index 14bce15cea..0000000000
Binary files a/sound/vox/doop.wav and /dev/null differ
diff --git a/sound/vox/door.wav b/sound/vox/door.wav
deleted file mode 100644
index 629dee38e7..0000000000
Binary files a/sound/vox/door.wav and /dev/null differ
diff --git a/sound/vox/down.wav b/sound/vox/down.wav
deleted file mode 100644
index b677e031da..0000000000
Binary files a/sound/vox/down.wav and /dev/null differ
diff --git a/sound/vox/dual.wav b/sound/vox/dual.wav
deleted file mode 100644
index 4693b31d42..0000000000
Binary files a/sound/vox/dual.wav and /dev/null differ
diff --git a/sound/vox/duct.wav b/sound/vox/duct.wav
deleted file mode 100644
index d0e937fd80..0000000000
Binary files a/sound/vox/duct.wav and /dev/null differ
diff --git a/sound/vox/e.wav b/sound/vox/e.wav
deleted file mode 100644
index 6f991d0fcc..0000000000
Binary files a/sound/vox/e.wav and /dev/null differ
diff --git a/sound/vox/east.wav b/sound/vox/east.wav
deleted file mode 100644
index 296ce53d41..0000000000
Binary files a/sound/vox/east.wav and /dev/null differ
diff --git a/sound/vox/echo.wav b/sound/vox/echo.wav
deleted file mode 100644
index 3087ecbd9c..0000000000
Binary files a/sound/vox/echo.wav and /dev/null differ
diff --git a/sound/vox/ed.wav b/sound/vox/ed.wav
deleted file mode 100644
index 71303ffe0a..0000000000
Binary files a/sound/vox/ed.wav and /dev/null differ
diff --git a/sound/vox/effect.wav b/sound/vox/effect.wav
deleted file mode 100644
index a0128cf698..0000000000
Binary files a/sound/vox/effect.wav and /dev/null differ
diff --git a/sound/vox/egress.wav b/sound/vox/egress.wav
deleted file mode 100644
index 47fa437ce8..0000000000
Binary files a/sound/vox/egress.wav and /dev/null differ
diff --git a/sound/vox/eight.wav b/sound/vox/eight.wav
deleted file mode 100644
index 4fef5c2eb7..0000000000
Binary files a/sound/vox/eight.wav and /dev/null differ
diff --git a/sound/vox/eighteen.wav b/sound/vox/eighteen.wav
deleted file mode 100644
index 1aff299ad2..0000000000
Binary files a/sound/vox/eighteen.wav and /dev/null differ
diff --git a/sound/vox/eighty.wav b/sound/vox/eighty.wav
deleted file mode 100644
index a1f54835db..0000000000
Binary files a/sound/vox/eighty.wav and /dev/null differ
diff --git a/sound/vox/electric.wav b/sound/vox/electric.wav
deleted file mode 100644
index 48c4fe0176..0000000000
Binary files a/sound/vox/electric.wav and /dev/null differ
diff --git a/sound/vox/electromagnetic.wav b/sound/vox/electromagnetic.wav
deleted file mode 100644
index 886c76ef6b..0000000000
Binary files a/sound/vox/electromagnetic.wav and /dev/null differ
diff --git a/sound/vox/elevator.wav b/sound/vox/elevator.wav
deleted file mode 100644
index a4d4144849..0000000000
Binary files a/sound/vox/elevator.wav and /dev/null differ
diff --git a/sound/vox/eleven.wav b/sound/vox/eleven.wav
deleted file mode 100644
index 5473a25411..0000000000
Binary files a/sound/vox/eleven.wav and /dev/null differ
diff --git a/sound/vox/eliminate.wav b/sound/vox/eliminate.wav
deleted file mode 100644
index d4e51affb3..0000000000
Binary files a/sound/vox/eliminate.wav and /dev/null differ
diff --git a/sound/vox/emergency.wav b/sound/vox/emergency.wav
deleted file mode 100644
index 62bb34ef41..0000000000
Binary files a/sound/vox/emergency.wav and /dev/null differ
diff --git a/sound/vox/energy.wav b/sound/vox/energy.wav
deleted file mode 100644
index b66ed4db10..0000000000
Binary files a/sound/vox/energy.wav and /dev/null differ
diff --git a/sound/vox/engage.wav b/sound/vox/engage.wav
deleted file mode 100644
index 11a43c40a7..0000000000
Binary files a/sound/vox/engage.wav and /dev/null differ
diff --git a/sound/vox/engaged.wav b/sound/vox/engaged.wav
deleted file mode 100644
index a47cbb5977..0000000000
Binary files a/sound/vox/engaged.wav and /dev/null differ
diff --git a/sound/vox/engine.wav b/sound/vox/engine.wav
deleted file mode 100644
index f6ab907c5b..0000000000
Binary files a/sound/vox/engine.wav and /dev/null differ
diff --git a/sound/vox/enter.wav b/sound/vox/enter.wav
deleted file mode 100644
index f3f53ea821..0000000000
Binary files a/sound/vox/enter.wav and /dev/null differ
diff --git a/sound/vox/entry.wav b/sound/vox/entry.wav
deleted file mode 100644
index a027e1a7e5..0000000000
Binary files a/sound/vox/entry.wav and /dev/null differ
diff --git a/sound/vox/environment.wav b/sound/vox/environment.wav
deleted file mode 100644
index 6ab7d940cc..0000000000
Binary files a/sound/vox/environment.wav and /dev/null differ
diff --git a/sound/vox/error.wav b/sound/vox/error.wav
deleted file mode 100644
index 05b2bebf60..0000000000
Binary files a/sound/vox/error.wav and /dev/null differ
diff --git a/sound/vox/escape.wav b/sound/vox/escape.wav
deleted file mode 100644
index dbf3c954f5..0000000000
Binary files a/sound/vox/escape.wav and /dev/null differ
diff --git a/sound/vox/evacuate.wav b/sound/vox/evacuate.wav
deleted file mode 100644
index 2766662cd2..0000000000
Binary files a/sound/vox/evacuate.wav and /dev/null differ
diff --git a/sound/vox/exchange.wav b/sound/vox/exchange.wav
deleted file mode 100644
index 73426aea01..0000000000
Binary files a/sound/vox/exchange.wav and /dev/null differ
diff --git a/sound/vox/exit.wav b/sound/vox/exit.wav
deleted file mode 100644
index 85680b3212..0000000000
Binary files a/sound/vox/exit.wav and /dev/null differ
diff --git a/sound/vox/expect.wav b/sound/vox/expect.wav
deleted file mode 100644
index a562e53a9a..0000000000
Binary files a/sound/vox/expect.wav and /dev/null differ
diff --git a/sound/vox/experiment.wav b/sound/vox/experiment.wav
deleted file mode 100644
index 3f60c2181b..0000000000
Binary files a/sound/vox/experiment.wav and /dev/null differ
diff --git a/sound/vox/experimental.wav b/sound/vox/experimental.wav
deleted file mode 100644
index fbf75a59d3..0000000000
Binary files a/sound/vox/experimental.wav and /dev/null differ
diff --git a/sound/vox/explode.wav b/sound/vox/explode.wav
deleted file mode 100644
index 847e64562c..0000000000
Binary files a/sound/vox/explode.wav and /dev/null differ
diff --git a/sound/vox/explosion.wav b/sound/vox/explosion.wav
deleted file mode 100644
index a2e442ec2f..0000000000
Binary files a/sound/vox/explosion.wav and /dev/null differ
diff --git a/sound/vox/exposure.wav b/sound/vox/exposure.wav
deleted file mode 100644
index 37a933ca62..0000000000
Binary files a/sound/vox/exposure.wav and /dev/null differ
diff --git a/sound/vox/exterminate.wav b/sound/vox/exterminate.wav
deleted file mode 100644
index f1c3c233d6..0000000000
Binary files a/sound/vox/exterminate.wav and /dev/null differ
diff --git a/sound/vox/extinguish.wav b/sound/vox/extinguish.wav
deleted file mode 100644
index 1fc83d9e7e..0000000000
Binary files a/sound/vox/extinguish.wav and /dev/null differ
diff --git a/sound/vox/extinguisher.wav b/sound/vox/extinguisher.wav
deleted file mode 100644
index eed3164bfc..0000000000
Binary files a/sound/vox/extinguisher.wav and /dev/null differ
diff --git a/sound/vox/extreme.wav b/sound/vox/extreme.wav
deleted file mode 100644
index 0fc3adfb50..0000000000
Binary files a/sound/vox/extreme.wav and /dev/null differ
diff --git a/sound/vox/f.wav b/sound/vox/f.wav
deleted file mode 100644
index 0f06b33886..0000000000
Binary files a/sound/vox/f.wav and /dev/null differ
diff --git a/sound/vox/facility.wav b/sound/vox/facility.wav
deleted file mode 100644
index 812445e3dd..0000000000
Binary files a/sound/vox/facility.wav and /dev/null differ
diff --git a/sound/vox/fahrenheit.wav b/sound/vox/fahrenheit.wav
deleted file mode 100644
index 96411aabdc..0000000000
Binary files a/sound/vox/fahrenheit.wav and /dev/null differ
diff --git a/sound/vox/failed.wav b/sound/vox/failed.wav
deleted file mode 100644
index f717b05375..0000000000
Binary files a/sound/vox/failed.wav and /dev/null differ
diff --git a/sound/vox/failure.wav b/sound/vox/failure.wav
deleted file mode 100644
index dd662fc5a6..0000000000
Binary files a/sound/vox/failure.wav and /dev/null differ
diff --git a/sound/vox/farthest.wav b/sound/vox/farthest.wav
deleted file mode 100644
index fcca7a432e..0000000000
Binary files a/sound/vox/farthest.wav and /dev/null differ
diff --git a/sound/vox/fast.wav b/sound/vox/fast.wav
deleted file mode 100644
index 821885a739..0000000000
Binary files a/sound/vox/fast.wav and /dev/null differ
diff --git a/sound/vox/feet.wav b/sound/vox/feet.wav
deleted file mode 100644
index 5adc5dbd62..0000000000
Binary files a/sound/vox/feet.wav and /dev/null differ
diff --git a/sound/vox/field.wav b/sound/vox/field.wav
deleted file mode 100644
index 6cc1ab42f8..0000000000
Binary files a/sound/vox/field.wav and /dev/null differ
diff --git a/sound/vox/fifteen.wav b/sound/vox/fifteen.wav
deleted file mode 100644
index 63ca382128..0000000000
Binary files a/sound/vox/fifteen.wav and /dev/null differ
diff --git a/sound/vox/fifth.wav b/sound/vox/fifth.wav
deleted file mode 100644
index 3886e043bf..0000000000
Binary files a/sound/vox/fifth.wav and /dev/null differ
diff --git a/sound/vox/fifty.wav b/sound/vox/fifty.wav
deleted file mode 100644
index 80f7b11103..0000000000
Binary files a/sound/vox/fifty.wav and /dev/null differ
diff --git a/sound/vox/final.wav b/sound/vox/final.wav
deleted file mode 100644
index d4c807af6e..0000000000
Binary files a/sound/vox/final.wav and /dev/null differ
diff --git a/sound/vox/fine.wav b/sound/vox/fine.wav
deleted file mode 100644
index f74d8fbfaa..0000000000
Binary files a/sound/vox/fine.wav and /dev/null differ
diff --git a/sound/vox/fire.wav b/sound/vox/fire.wav
deleted file mode 100644
index ce0a45d9c6..0000000000
Binary files a/sound/vox/fire.wav and /dev/null differ
diff --git a/sound/vox/first.wav b/sound/vox/first.wav
deleted file mode 100644
index 18a7fdf7af..0000000000
Binary files a/sound/vox/first.wav and /dev/null differ
diff --git a/sound/vox/five.wav b/sound/vox/five.wav
deleted file mode 100644
index aa23cbe9cf..0000000000
Binary files a/sound/vox/five.wav and /dev/null differ
diff --git a/sound/vox/flooding.wav b/sound/vox/flooding.wav
deleted file mode 100644
index 7b9f5bcc69..0000000000
Binary files a/sound/vox/flooding.wav and /dev/null differ
diff --git a/sound/vox/floor.wav b/sound/vox/floor.wav
deleted file mode 100644
index b086549164..0000000000
Binary files a/sound/vox/floor.wav and /dev/null differ
diff --git a/sound/vox/fool.wav b/sound/vox/fool.wav
deleted file mode 100644
index 327b3f5b59..0000000000
Binary files a/sound/vox/fool.wav and /dev/null differ
diff --git a/sound/vox/for.wav b/sound/vox/for.wav
deleted file mode 100644
index 84f793dece..0000000000
Binary files a/sound/vox/for.wav and /dev/null differ
diff --git a/sound/vox/forbidden.wav b/sound/vox/forbidden.wav
deleted file mode 100644
index f4d742505e..0000000000
Binary files a/sound/vox/forbidden.wav and /dev/null differ
diff --git a/sound/vox/force.wav b/sound/vox/force.wav
deleted file mode 100644
index 3745c71418..0000000000
Binary files a/sound/vox/force.wav and /dev/null differ
diff --git a/sound/vox/forms.wav b/sound/vox/forms.wav
deleted file mode 100644
index 642e201abc..0000000000
Binary files a/sound/vox/forms.wav and /dev/null differ
diff --git a/sound/vox/found.wav b/sound/vox/found.wav
deleted file mode 100644
index 59da4031fc..0000000000
Binary files a/sound/vox/found.wav and /dev/null differ
diff --git a/sound/vox/four.wav b/sound/vox/four.wav
deleted file mode 100644
index a614cbcdc5..0000000000
Binary files a/sound/vox/four.wav and /dev/null differ
diff --git a/sound/vox/fourteen.wav b/sound/vox/fourteen.wav
deleted file mode 100644
index aa0846855b..0000000000
Binary files a/sound/vox/fourteen.wav and /dev/null differ
diff --git a/sound/vox/fourth.wav b/sound/vox/fourth.wav
deleted file mode 100644
index 5c9071d292..0000000000
Binary files a/sound/vox/fourth.wav and /dev/null differ
diff --git a/sound/vox/fourty.wav b/sound/vox/fourty.wav
deleted file mode 100644
index 6bb8fb3e12..0000000000
Binary files a/sound/vox/fourty.wav and /dev/null differ
diff --git a/sound/vox/foxtrot.wav b/sound/vox/foxtrot.wav
deleted file mode 100644
index ece21be942..0000000000
Binary files a/sound/vox/foxtrot.wav and /dev/null differ
diff --git a/sound/vox/freeman.wav b/sound/vox/freeman.wav
deleted file mode 100644
index 26a9ae229b..0000000000
Binary files a/sound/vox/freeman.wav and /dev/null differ
diff --git a/sound/vox/freezer.wav b/sound/vox/freezer.wav
deleted file mode 100644
index 32da861548..0000000000
Binary files a/sound/vox/freezer.wav and /dev/null differ
diff --git a/sound/vox/from.wav b/sound/vox/from.wav
deleted file mode 100644
index 46541abe65..0000000000
Binary files a/sound/vox/from.wav and /dev/null differ
diff --git a/sound/vox/front.wav b/sound/vox/front.wav
deleted file mode 100644
index 46d600144d..0000000000
Binary files a/sound/vox/front.wav and /dev/null differ
diff --git a/sound/vox/fuel.wav b/sound/vox/fuel.wav
deleted file mode 100644
index 1b2256b006..0000000000
Binary files a/sound/vox/fuel.wav and /dev/null differ
diff --git a/sound/vox/g.wav b/sound/vox/g.wav
deleted file mode 100644
index 37f5ce8010..0000000000
Binary files a/sound/vox/g.wav and /dev/null differ
diff --git a/sound/vox/get.wav b/sound/vox/get.wav
deleted file mode 100644
index 9dd512d512..0000000000
Binary files a/sound/vox/get.wav and /dev/null differ
diff --git a/sound/vox/go.wav b/sound/vox/go.wav
deleted file mode 100644
index 665989a94f..0000000000
Binary files a/sound/vox/go.wav and /dev/null differ
diff --git a/sound/vox/going.wav b/sound/vox/going.wav
deleted file mode 100644
index 308b1b6890..0000000000
Binary files a/sound/vox/going.wav and /dev/null differ
diff --git a/sound/vox/good.wav b/sound/vox/good.wav
deleted file mode 100644
index bf15c9c2b4..0000000000
Binary files a/sound/vox/good.wav and /dev/null differ
diff --git a/sound/vox/goodbye.wav b/sound/vox/goodbye.wav
deleted file mode 100644
index 2599ca560c..0000000000
Binary files a/sound/vox/goodbye.wav and /dev/null differ
diff --git a/sound/vox/gordon.wav b/sound/vox/gordon.wav
deleted file mode 100644
index 51c7195091..0000000000
Binary files a/sound/vox/gordon.wav and /dev/null differ
diff --git a/sound/vox/got.wav b/sound/vox/got.wav
deleted file mode 100644
index b2b47c9d2e..0000000000
Binary files a/sound/vox/got.wav and /dev/null differ
diff --git a/sound/vox/government.wav b/sound/vox/government.wav
deleted file mode 100644
index 17e7fa8fbf..0000000000
Binary files a/sound/vox/government.wav and /dev/null differ
diff --git a/sound/vox/granted.wav b/sound/vox/granted.wav
deleted file mode 100644
index 661bf0506f..0000000000
Binary files a/sound/vox/granted.wav and /dev/null differ
diff --git a/sound/vox/great.wav b/sound/vox/great.wav
deleted file mode 100644
index 8640b88fb6..0000000000
Binary files a/sound/vox/great.wav and /dev/null differ
diff --git a/sound/vox/green.wav b/sound/vox/green.wav
deleted file mode 100644
index 0eb5558231..0000000000
Binary files a/sound/vox/green.wav and /dev/null differ
diff --git a/sound/vox/grenade.wav b/sound/vox/grenade.wav
deleted file mode 100644
index 7b2d80ed6d..0000000000
Binary files a/sound/vox/grenade.wav and /dev/null differ
diff --git a/sound/vox/guard.wav b/sound/vox/guard.wav
deleted file mode 100644
index e715dc641c..0000000000
Binary files a/sound/vox/guard.wav and /dev/null differ
diff --git a/sound/vox/gulf.wav b/sound/vox/gulf.wav
deleted file mode 100644
index 95b3e9fc4f..0000000000
Binary files a/sound/vox/gulf.wav and /dev/null differ
diff --git a/sound/vox/gun.wav b/sound/vox/gun.wav
deleted file mode 100644
index 86e3ac1cbb..0000000000
Binary files a/sound/vox/gun.wav and /dev/null differ
diff --git a/sound/vox/guthrie.wav b/sound/vox/guthrie.wav
deleted file mode 100644
index 362ab46d60..0000000000
Binary files a/sound/vox/guthrie.wav and /dev/null differ
diff --git a/sound/vox/handling.wav b/sound/vox/handling.wav
deleted file mode 100644
index b9c7c5f581..0000000000
Binary files a/sound/vox/handling.wav and /dev/null differ
diff --git a/sound/vox/hangar.wav b/sound/vox/hangar.wav
deleted file mode 100644
index e937054af9..0000000000
Binary files a/sound/vox/hangar.wav and /dev/null differ
diff --git a/sound/vox/has.wav b/sound/vox/has.wav
deleted file mode 100644
index 625a110f07..0000000000
Binary files a/sound/vox/has.wav and /dev/null differ
diff --git a/sound/vox/have.wav b/sound/vox/have.wav
deleted file mode 100644
index c5f0794a1f..0000000000
Binary files a/sound/vox/have.wav and /dev/null differ
diff --git a/sound/vox/hazard.wav b/sound/vox/hazard.wav
deleted file mode 100644
index b311552c76..0000000000
Binary files a/sound/vox/hazard.wav and /dev/null differ
diff --git a/sound/vox/head.wav b/sound/vox/head.wav
deleted file mode 100644
index ed8e9d88c6..0000000000
Binary files a/sound/vox/head.wav and /dev/null differ
diff --git a/sound/vox/health.wav b/sound/vox/health.wav
deleted file mode 100644
index e3158318f4..0000000000
Binary files a/sound/vox/health.wav and /dev/null differ
diff --git a/sound/vox/heat.wav b/sound/vox/heat.wav
deleted file mode 100644
index ca0b345225..0000000000
Binary files a/sound/vox/heat.wav and /dev/null differ
diff --git a/sound/vox/helicopter.wav b/sound/vox/helicopter.wav
deleted file mode 100644
index 22e5449443..0000000000
Binary files a/sound/vox/helicopter.wav and /dev/null differ
diff --git a/sound/vox/helium.wav b/sound/vox/helium.wav
deleted file mode 100644
index fbb8197cb0..0000000000
Binary files a/sound/vox/helium.wav and /dev/null differ
diff --git a/sound/vox/hello.wav b/sound/vox/hello.wav
deleted file mode 100644
index 7e61fec55e..0000000000
Binary files a/sound/vox/hello.wav and /dev/null differ
diff --git a/sound/vox/help.wav b/sound/vox/help.wav
deleted file mode 100644
index 5bef919ee9..0000000000
Binary files a/sound/vox/help.wav and /dev/null differ
diff --git a/sound/vox/here.wav b/sound/vox/here.wav
deleted file mode 100644
index e6d74f47f7..0000000000
Binary files a/sound/vox/here.wav and /dev/null differ
diff --git a/sound/vox/hide.wav b/sound/vox/hide.wav
deleted file mode 100644
index f7bb32b283..0000000000
Binary files a/sound/vox/hide.wav and /dev/null differ
diff --git a/sound/vox/high.wav b/sound/vox/high.wav
deleted file mode 100644
index 832bf16040..0000000000
Binary files a/sound/vox/high.wav and /dev/null differ
diff --git a/sound/vox/highest.wav b/sound/vox/highest.wav
deleted file mode 100644
index ef4b2caf39..0000000000
Binary files a/sound/vox/highest.wav and /dev/null differ
diff --git a/sound/vox/hit.wav b/sound/vox/hit.wav
deleted file mode 100644
index d70619a3f5..0000000000
Binary files a/sound/vox/hit.wav and /dev/null differ
diff --git a/sound/vox/hole.wav b/sound/vox/hole.wav
deleted file mode 100644
index afb46f59ad..0000000000
Binary files a/sound/vox/hole.wav and /dev/null differ
diff --git a/sound/vox/hostile.wav b/sound/vox/hostile.wav
deleted file mode 100644
index 4dc88f26c6..0000000000
Binary files a/sound/vox/hostile.wav and /dev/null differ
diff --git a/sound/vox/hot.wav b/sound/vox/hot.wav
deleted file mode 100644
index 7ced07279b..0000000000
Binary files a/sound/vox/hot.wav and /dev/null differ
diff --git a/sound/vox/hotel.wav b/sound/vox/hotel.wav
deleted file mode 100644
index dde78cf2a1..0000000000
Binary files a/sound/vox/hotel.wav and /dev/null differ
diff --git a/sound/vox/hour.wav b/sound/vox/hour.wav
deleted file mode 100644
index d428bd779e..0000000000
Binary files a/sound/vox/hour.wav and /dev/null differ
diff --git a/sound/vox/hours.wav b/sound/vox/hours.wav
deleted file mode 100644
index 63a2470427..0000000000
Binary files a/sound/vox/hours.wav and /dev/null differ
diff --git a/sound/vox/hundred.wav b/sound/vox/hundred.wav
deleted file mode 100644
index 8d3a8a0b4a..0000000000
Binary files a/sound/vox/hundred.wav and /dev/null differ
diff --git a/sound/vox/hydro.wav b/sound/vox/hydro.wav
deleted file mode 100644
index 9653b7bf73..0000000000
Binary files a/sound/vox/hydro.wav and /dev/null differ
diff --git a/sound/vox/i.wav b/sound/vox/i.wav
deleted file mode 100644
index b98a48fd29..0000000000
Binary files a/sound/vox/i.wav and /dev/null differ
diff --git a/sound/vox/idiot.wav b/sound/vox/idiot.wav
deleted file mode 100644
index 8c19f9d7a4..0000000000
Binary files a/sound/vox/idiot.wav and /dev/null differ
diff --git a/sound/vox/illegal.wav b/sound/vox/illegal.wav
deleted file mode 100644
index 6087e6ba7d..0000000000
Binary files a/sound/vox/illegal.wav and /dev/null differ
diff --git a/sound/vox/immediate.wav b/sound/vox/immediate.wav
deleted file mode 100644
index 19fab3c842..0000000000
Binary files a/sound/vox/immediate.wav and /dev/null differ
diff --git a/sound/vox/immediately.wav b/sound/vox/immediately.wav
deleted file mode 100644
index f2716edf0e..0000000000
Binary files a/sound/vox/immediately.wav and /dev/null differ
diff --git a/sound/vox/in.wav b/sound/vox/in.wav
deleted file mode 100644
index e15bb9a6d5..0000000000
Binary files a/sound/vox/in.wav and /dev/null differ
diff --git a/sound/vox/inches.wav b/sound/vox/inches.wav
deleted file mode 100644
index fc8e89ce7b..0000000000
Binary files a/sound/vox/inches.wav and /dev/null differ
diff --git a/sound/vox/india.wav b/sound/vox/india.wav
deleted file mode 100644
index 991f9af5e0..0000000000
Binary files a/sound/vox/india.wav and /dev/null differ
diff --git a/sound/vox/ing.wav b/sound/vox/ing.wav
deleted file mode 100644
index 0728905c34..0000000000
Binary files a/sound/vox/ing.wav and /dev/null differ
diff --git a/sound/vox/inoperative.wav b/sound/vox/inoperative.wav
deleted file mode 100644
index 6822cc5fc3..0000000000
Binary files a/sound/vox/inoperative.wav and /dev/null differ
diff --git a/sound/vox/inside.wav b/sound/vox/inside.wav
deleted file mode 100644
index 03cb903c24..0000000000
Binary files a/sound/vox/inside.wav and /dev/null differ
diff --git a/sound/vox/inspection.wav b/sound/vox/inspection.wav
deleted file mode 100644
index 3aecb74626..0000000000
Binary files a/sound/vox/inspection.wav and /dev/null differ
diff --git a/sound/vox/inspector.wav b/sound/vox/inspector.wav
deleted file mode 100644
index 06a54a3670..0000000000
Binary files a/sound/vox/inspector.wav and /dev/null differ
diff --git a/sound/vox/interchange.wav b/sound/vox/interchange.wav
deleted file mode 100644
index c7814162b4..0000000000
Binary files a/sound/vox/interchange.wav and /dev/null differ
diff --git a/sound/vox/intruder.wav b/sound/vox/intruder.wav
deleted file mode 100644
index a32958f0be..0000000000
Binary files a/sound/vox/intruder.wav and /dev/null differ
diff --git a/sound/vox/invallid.wav b/sound/vox/invallid.wav
deleted file mode 100644
index fbf3b4e524..0000000000
Binary files a/sound/vox/invallid.wav and /dev/null differ
diff --git a/sound/vox/invasion.wav b/sound/vox/invasion.wav
deleted file mode 100644
index 0024f331d4..0000000000
Binary files a/sound/vox/invasion.wav and /dev/null differ
diff --git a/sound/vox/is.wav b/sound/vox/is.wav
deleted file mode 100644
index 0eecb1a7b7..0000000000
Binary files a/sound/vox/is.wav and /dev/null differ
diff --git a/sound/vox/it.wav b/sound/vox/it.wav
deleted file mode 100644
index 1e96daf6bb..0000000000
Binary files a/sound/vox/it.wav and /dev/null differ
diff --git a/sound/vox/johnson.wav b/sound/vox/johnson.wav
deleted file mode 100644
index 1cef742cf6..0000000000
Binary files a/sound/vox/johnson.wav and /dev/null differ
diff --git a/sound/vox/juliet.wav b/sound/vox/juliet.wav
deleted file mode 100644
index 88a78517ca..0000000000
Binary files a/sound/vox/juliet.wav and /dev/null differ
diff --git a/sound/vox/key.wav b/sound/vox/key.wav
deleted file mode 100644
index ba42b393db..0000000000
Binary files a/sound/vox/key.wav and /dev/null differ
diff --git a/sound/vox/kill.wav b/sound/vox/kill.wav
deleted file mode 100644
index 9ae66ac5f6..0000000000
Binary files a/sound/vox/kill.wav and /dev/null differ
diff --git a/sound/vox/kilo.wav b/sound/vox/kilo.wav
deleted file mode 100644
index e30904cafb..0000000000
Binary files a/sound/vox/kilo.wav and /dev/null differ
diff --git a/sound/vox/kit.wav b/sound/vox/kit.wav
deleted file mode 100644
index b6cf53a547..0000000000
Binary files a/sound/vox/kit.wav and /dev/null differ
diff --git a/sound/vox/lab.wav b/sound/vox/lab.wav
deleted file mode 100644
index 8b2518fe57..0000000000
Binary files a/sound/vox/lab.wav and /dev/null differ
diff --git a/sound/vox/lambda.wav b/sound/vox/lambda.wav
deleted file mode 100644
index a238ac9d96..0000000000
Binary files a/sound/vox/lambda.wav and /dev/null differ
diff --git a/sound/vox/laser.wav b/sound/vox/laser.wav
deleted file mode 100644
index 7617aa65d7..0000000000
Binary files a/sound/vox/laser.wav and /dev/null differ
diff --git a/sound/vox/last.wav b/sound/vox/last.wav
deleted file mode 100644
index 458d13af62..0000000000
Binary files a/sound/vox/last.wav and /dev/null differ
diff --git a/sound/vox/launch.wav b/sound/vox/launch.wav
deleted file mode 100644
index 66fd2224ce..0000000000
Binary files a/sound/vox/launch.wav and /dev/null differ
diff --git a/sound/vox/leak.wav b/sound/vox/leak.wav
deleted file mode 100644
index 0ec0fc786d..0000000000
Binary files a/sound/vox/leak.wav and /dev/null differ
diff --git a/sound/vox/leave.wav b/sound/vox/leave.wav
deleted file mode 100644
index ce45698813..0000000000
Binary files a/sound/vox/leave.wav and /dev/null differ
diff --git a/sound/vox/left.wav b/sound/vox/left.wav
deleted file mode 100644
index 2621d07fbd..0000000000
Binary files a/sound/vox/left.wav and /dev/null differ
diff --git a/sound/vox/legal.wav b/sound/vox/legal.wav
deleted file mode 100644
index 928033759d..0000000000
Binary files a/sound/vox/legal.wav and /dev/null differ
diff --git a/sound/vox/level.wav b/sound/vox/level.wav
deleted file mode 100644
index 1f01010dd0..0000000000
Binary files a/sound/vox/level.wav and /dev/null differ
diff --git a/sound/vox/lever.wav b/sound/vox/lever.wav
deleted file mode 100644
index a863fdc77a..0000000000
Binary files a/sound/vox/lever.wav and /dev/null differ
diff --git a/sound/vox/lie.wav b/sound/vox/lie.wav
deleted file mode 100644
index 01b8749a0c..0000000000
Binary files a/sound/vox/lie.wav and /dev/null differ
diff --git a/sound/vox/lieutenant.wav b/sound/vox/lieutenant.wav
deleted file mode 100644
index f749f2782a..0000000000
Binary files a/sound/vox/lieutenant.wav and /dev/null differ
diff --git a/sound/vox/life.wav b/sound/vox/life.wav
deleted file mode 100644
index fd739b4593..0000000000
Binary files a/sound/vox/life.wav and /dev/null differ
diff --git a/sound/vox/light.wav b/sound/vox/light.wav
deleted file mode 100644
index 69be049955..0000000000
Binary files a/sound/vox/light.wav and /dev/null differ
diff --git a/sound/vox/lima.wav b/sound/vox/lima.wav
deleted file mode 100644
index d0cf4d0581..0000000000
Binary files a/sound/vox/lima.wav and /dev/null differ
diff --git a/sound/vox/liquid.wav b/sound/vox/liquid.wav
deleted file mode 100644
index 9f77a868e7..0000000000
Binary files a/sound/vox/liquid.wav and /dev/null differ
diff --git a/sound/vox/loading.wav b/sound/vox/loading.wav
deleted file mode 100644
index f5404ef81b..0000000000
Binary files a/sound/vox/loading.wav and /dev/null differ
diff --git a/sound/vox/locate.wav b/sound/vox/locate.wav
deleted file mode 100644
index 6b605a8d2d..0000000000
Binary files a/sound/vox/locate.wav and /dev/null differ
diff --git a/sound/vox/located.wav b/sound/vox/located.wav
deleted file mode 100644
index 19fb575525..0000000000
Binary files a/sound/vox/located.wav and /dev/null differ
diff --git a/sound/vox/location.wav b/sound/vox/location.wav
deleted file mode 100644
index 149b0ec027..0000000000
Binary files a/sound/vox/location.wav and /dev/null differ
diff --git a/sound/vox/lock.wav b/sound/vox/lock.wav
deleted file mode 100644
index a62efba6b9..0000000000
Binary files a/sound/vox/lock.wav and /dev/null differ
diff --git a/sound/vox/locked.wav b/sound/vox/locked.wav
deleted file mode 100644
index 8d197f2502..0000000000
Binary files a/sound/vox/locked.wav and /dev/null differ
diff --git a/sound/vox/locker.wav b/sound/vox/locker.wav
deleted file mode 100644
index e6f9dfe299..0000000000
Binary files a/sound/vox/locker.wav and /dev/null differ
diff --git a/sound/vox/lockout.wav b/sound/vox/lockout.wav
deleted file mode 100644
index b2cd0fb64d..0000000000
Binary files a/sound/vox/lockout.wav and /dev/null differ
diff --git a/sound/vox/lower.wav b/sound/vox/lower.wav
deleted file mode 100644
index a654c1d424..0000000000
Binary files a/sound/vox/lower.wav and /dev/null differ
diff --git a/sound/vox/lowest.wav b/sound/vox/lowest.wav
deleted file mode 100644
index 63fdaf93f0..0000000000
Binary files a/sound/vox/lowest.wav and /dev/null differ
diff --git a/sound/vox/magnetic.wav b/sound/vox/magnetic.wav
deleted file mode 100644
index 68deeeae9c..0000000000
Binary files a/sound/vox/magnetic.wav and /dev/null differ
diff --git a/sound/vox/main.wav b/sound/vox/main.wav
deleted file mode 100644
index 4657274912..0000000000
Binary files a/sound/vox/main.wav and /dev/null differ
diff --git a/sound/vox/maintenance.wav b/sound/vox/maintenance.wav
deleted file mode 100644
index ebca04c9d6..0000000000
Binary files a/sound/vox/maintenance.wav and /dev/null differ
diff --git a/sound/vox/malfunction.wav b/sound/vox/malfunction.wav
deleted file mode 100644
index 51d999b41f..0000000000
Binary files a/sound/vox/malfunction.wav and /dev/null differ
diff --git a/sound/vox/man.wav b/sound/vox/man.wav
deleted file mode 100644
index 64525a4f23..0000000000
Binary files a/sound/vox/man.wav and /dev/null differ
diff --git a/sound/vox/mass.wav b/sound/vox/mass.wav
deleted file mode 100644
index c7825984aa..0000000000
Binary files a/sound/vox/mass.wav and /dev/null differ
diff --git a/sound/vox/materials.wav b/sound/vox/materials.wav
deleted file mode 100644
index c983ae71a8..0000000000
Binary files a/sound/vox/materials.wav and /dev/null differ
diff --git a/sound/vox/maximum.wav b/sound/vox/maximum.wav
deleted file mode 100644
index f1dbc8062d..0000000000
Binary files a/sound/vox/maximum.wav and /dev/null differ
diff --git a/sound/vox/may.wav b/sound/vox/may.wav
deleted file mode 100644
index a238738703..0000000000
Binary files a/sound/vox/may.wav and /dev/null differ
diff --git a/sound/vox/medical.wav b/sound/vox/medical.wav
deleted file mode 100644
index ece7f0c4c5..0000000000
Binary files a/sound/vox/medical.wav and /dev/null differ
diff --git a/sound/vox/men.wav b/sound/vox/men.wav
deleted file mode 100644
index 594523da0a..0000000000
Binary files a/sound/vox/men.wav and /dev/null differ
diff --git a/sound/vox/mercy.wav b/sound/vox/mercy.wav
deleted file mode 100644
index 8416b25dae..0000000000
Binary files a/sound/vox/mercy.wav and /dev/null differ
diff --git a/sound/vox/mesa.wav b/sound/vox/mesa.wav
deleted file mode 100644
index fcb1d9843c..0000000000
Binary files a/sound/vox/mesa.wav and /dev/null differ
diff --git a/sound/vox/message.wav b/sound/vox/message.wav
deleted file mode 100644
index b0b769db72..0000000000
Binary files a/sound/vox/message.wav and /dev/null differ
diff --git a/sound/vox/meter.wav b/sound/vox/meter.wav
deleted file mode 100644
index ca063bddad..0000000000
Binary files a/sound/vox/meter.wav and /dev/null differ
diff --git a/sound/vox/micro.wav b/sound/vox/micro.wav
deleted file mode 100644
index 7869b97cec..0000000000
Binary files a/sound/vox/micro.wav and /dev/null differ
diff --git a/sound/vox/middle.wav b/sound/vox/middle.wav
deleted file mode 100644
index b58a5878a9..0000000000
Binary files a/sound/vox/middle.wav and /dev/null differ
diff --git a/sound/vox/mike.wav b/sound/vox/mike.wav
deleted file mode 100644
index a008bdefed..0000000000
Binary files a/sound/vox/mike.wav and /dev/null differ
diff --git a/sound/vox/miles.wav b/sound/vox/miles.wav
deleted file mode 100644
index 9b04a790ea..0000000000
Binary files a/sound/vox/miles.wav and /dev/null differ
diff --git a/sound/vox/military.wav b/sound/vox/military.wav
deleted file mode 100644
index 8387dc3b6c..0000000000
Binary files a/sound/vox/military.wav and /dev/null differ
diff --git a/sound/vox/milli.wav b/sound/vox/milli.wav
deleted file mode 100644
index cc0b3e4c97..0000000000
Binary files a/sound/vox/milli.wav and /dev/null differ
diff --git a/sound/vox/million.wav b/sound/vox/million.wav
deleted file mode 100644
index 6409eb0760..0000000000
Binary files a/sound/vox/million.wav and /dev/null differ
diff --git a/sound/vox/minefield.wav b/sound/vox/minefield.wav
deleted file mode 100644
index 2af1c21367..0000000000
Binary files a/sound/vox/minefield.wav and /dev/null differ
diff --git a/sound/vox/minimum.wav b/sound/vox/minimum.wav
deleted file mode 100644
index ee184ce4fc..0000000000
Binary files a/sound/vox/minimum.wav and /dev/null differ
diff --git a/sound/vox/minutes.wav b/sound/vox/minutes.wav
deleted file mode 100644
index 2e9fb914ed..0000000000
Binary files a/sound/vox/minutes.wav and /dev/null differ
diff --git a/sound/vox/mister.wav b/sound/vox/mister.wav
deleted file mode 100644
index 27507cfb09..0000000000
Binary files a/sound/vox/mister.wav and /dev/null differ
diff --git a/sound/vox/mode.wav b/sound/vox/mode.wav
deleted file mode 100644
index e1060e9661..0000000000
Binary files a/sound/vox/mode.wav and /dev/null differ
diff --git a/sound/vox/motor.wav b/sound/vox/motor.wav
deleted file mode 100644
index 7d1dbaeba4..0000000000
Binary files a/sound/vox/motor.wav and /dev/null differ
diff --git a/sound/vox/motorpool.wav b/sound/vox/motorpool.wav
deleted file mode 100644
index ae5a6af0d6..0000000000
Binary files a/sound/vox/motorpool.wav and /dev/null differ
diff --git a/sound/vox/move.wav b/sound/vox/move.wav
deleted file mode 100644
index 1bc2172297..0000000000
Binary files a/sound/vox/move.wav and /dev/null differ
diff --git a/sound/vox/must.wav b/sound/vox/must.wav
deleted file mode 100644
index 3e6e965bec..0000000000
Binary files a/sound/vox/must.wav and /dev/null differ
diff --git a/sound/vox/nearest.wav b/sound/vox/nearest.wav
deleted file mode 100644
index 3f84ee7241..0000000000
Binary files a/sound/vox/nearest.wav and /dev/null differ
diff --git a/sound/vox/nice.wav b/sound/vox/nice.wav
deleted file mode 100644
index 8bd140649f..0000000000
Binary files a/sound/vox/nice.wav and /dev/null differ
diff --git a/sound/vox/nine.wav b/sound/vox/nine.wav
deleted file mode 100644
index b85745edf9..0000000000
Binary files a/sound/vox/nine.wav and /dev/null differ
diff --git a/sound/vox/nineteen.wav b/sound/vox/nineteen.wav
deleted file mode 100644
index c6da48310b..0000000000
Binary files a/sound/vox/nineteen.wav and /dev/null differ
diff --git a/sound/vox/ninety.wav b/sound/vox/ninety.wav
deleted file mode 100644
index 74e2e02d41..0000000000
Binary files a/sound/vox/ninety.wav and /dev/null differ
diff --git a/sound/vox/no.wav b/sound/vox/no.wav
deleted file mode 100644
index ced1b6617c..0000000000
Binary files a/sound/vox/no.wav and /dev/null differ
diff --git a/sound/vox/nominal.wav b/sound/vox/nominal.wav
deleted file mode 100644
index f0656302d1..0000000000
Binary files a/sound/vox/nominal.wav and /dev/null differ
diff --git a/sound/vox/north.wav b/sound/vox/north.wav
deleted file mode 100644
index 4867fdc7bc..0000000000
Binary files a/sound/vox/north.wav and /dev/null differ
diff --git a/sound/vox/not.wav b/sound/vox/not.wav
deleted file mode 100644
index 626cd17774..0000000000
Binary files a/sound/vox/not.wav and /dev/null differ
diff --git a/sound/vox/november.wav b/sound/vox/november.wav
deleted file mode 100644
index 212efe5f9a..0000000000
Binary files a/sound/vox/november.wav and /dev/null differ
diff --git a/sound/vox/now.wav b/sound/vox/now.wav
deleted file mode 100644
index 0619087d59..0000000000
Binary files a/sound/vox/now.wav and /dev/null differ
diff --git a/sound/vox/number.wav b/sound/vox/number.wav
deleted file mode 100644
index cfec10a75e..0000000000
Binary files a/sound/vox/number.wav and /dev/null differ
diff --git a/sound/vox/objective.wav b/sound/vox/objective.wav
deleted file mode 100644
index 14ea571aa6..0000000000
Binary files a/sound/vox/objective.wav and /dev/null differ
diff --git a/sound/vox/observation.wav b/sound/vox/observation.wav
deleted file mode 100644
index 9141789671..0000000000
Binary files a/sound/vox/observation.wav and /dev/null differ
diff --git a/sound/vox/of.wav b/sound/vox/of.wav
deleted file mode 100644
index 7cf5427dfb..0000000000
Binary files a/sound/vox/of.wav and /dev/null differ
diff --git a/sound/vox/officer.wav b/sound/vox/officer.wav
deleted file mode 100644
index 9017915aef..0000000000
Binary files a/sound/vox/officer.wav and /dev/null differ
diff --git a/sound/vox/ok.wav b/sound/vox/ok.wav
deleted file mode 100644
index 66011aed6d..0000000000
Binary files a/sound/vox/ok.wav and /dev/null differ
diff --git a/sound/vox/on.wav b/sound/vox/on.wav
deleted file mode 100644
index 2b97a1fd46..0000000000
Binary files a/sound/vox/on.wav and /dev/null differ
diff --git a/sound/vox/one.wav b/sound/vox/one.wav
deleted file mode 100644
index 57f2b3f14d..0000000000
Binary files a/sound/vox/one.wav and /dev/null differ
diff --git a/sound/vox/open.wav b/sound/vox/open.wav
deleted file mode 100644
index be98260bb9..0000000000
Binary files a/sound/vox/open.wav and /dev/null differ
diff --git a/sound/vox/operating.wav b/sound/vox/operating.wav
deleted file mode 100644
index b218069420..0000000000
Binary files a/sound/vox/operating.wav and /dev/null differ
diff --git a/sound/vox/operations.wav b/sound/vox/operations.wav
deleted file mode 100644
index 37c9d75e0e..0000000000
Binary files a/sound/vox/operations.wav and /dev/null differ
diff --git a/sound/vox/operative.wav b/sound/vox/operative.wav
deleted file mode 100644
index 70f99029cd..0000000000
Binary files a/sound/vox/operative.wav and /dev/null differ
diff --git a/sound/vox/option.wav b/sound/vox/option.wav
deleted file mode 100644
index a5199b71de..0000000000
Binary files a/sound/vox/option.wav and /dev/null differ
diff --git a/sound/vox/order.wav b/sound/vox/order.wav
deleted file mode 100644
index c5a2548340..0000000000
Binary files a/sound/vox/order.wav and /dev/null differ
diff --git a/sound/vox/organic.wav b/sound/vox/organic.wav
deleted file mode 100644
index 78dc879d7c..0000000000
Binary files a/sound/vox/organic.wav and /dev/null differ
diff --git a/sound/vox/oscar.wav b/sound/vox/oscar.wav
deleted file mode 100644
index 32db2392d5..0000000000
Binary files a/sound/vox/oscar.wav and /dev/null differ
diff --git a/sound/vox/out.wav b/sound/vox/out.wav
deleted file mode 100644
index 4aca4d7070..0000000000
Binary files a/sound/vox/out.wav and /dev/null differ
diff --git a/sound/vox/outside.wav b/sound/vox/outside.wav
deleted file mode 100644
index 62993ea5e4..0000000000
Binary files a/sound/vox/outside.wav and /dev/null differ
diff --git a/sound/vox/over.wav b/sound/vox/over.wav
deleted file mode 100644
index 8068c74f73..0000000000
Binary files a/sound/vox/over.wav and /dev/null differ
diff --git a/sound/vox/overload.wav b/sound/vox/overload.wav
deleted file mode 100644
index d932cb3ded..0000000000
Binary files a/sound/vox/overload.wav and /dev/null differ
diff --git a/sound/vox/override.wav b/sound/vox/override.wav
deleted file mode 100644
index 132667e7ea..0000000000
Binary files a/sound/vox/override.wav and /dev/null differ
diff --git a/sound/vox/pacify.wav b/sound/vox/pacify.wav
deleted file mode 100644
index 6a596197d7..0000000000
Binary files a/sound/vox/pacify.wav and /dev/null differ
diff --git a/sound/vox/pain.wav b/sound/vox/pain.wav
deleted file mode 100644
index bdb30dded8..0000000000
Binary files a/sound/vox/pain.wav and /dev/null differ
diff --git a/sound/vox/pal.wav b/sound/vox/pal.wav
deleted file mode 100644
index 28eb17ce99..0000000000
Binary files a/sound/vox/pal.wav and /dev/null differ
diff --git a/sound/vox/panel.wav b/sound/vox/panel.wav
deleted file mode 100644
index ce1f22fd23..0000000000
Binary files a/sound/vox/panel.wav and /dev/null differ
diff --git a/sound/vox/percent.wav b/sound/vox/percent.wav
deleted file mode 100644
index 9e775863ae..0000000000
Binary files a/sound/vox/percent.wav and /dev/null differ
diff --git a/sound/vox/perimeter.wav b/sound/vox/perimeter.wav
deleted file mode 100644
index 91a8d95d91..0000000000
Binary files a/sound/vox/perimeter.wav and /dev/null differ
diff --git a/sound/vox/permitted.wav b/sound/vox/permitted.wav
deleted file mode 100644
index 015d10eaa8..0000000000
Binary files a/sound/vox/permitted.wav and /dev/null differ
diff --git a/sound/vox/personnel.wav b/sound/vox/personnel.wav
deleted file mode 100644
index 665a3215c9..0000000000
Binary files a/sound/vox/personnel.wav and /dev/null differ
diff --git a/sound/vox/pipe.wav b/sound/vox/pipe.wav
deleted file mode 100644
index 53abe7db8b..0000000000
Binary files a/sound/vox/pipe.wav and /dev/null differ
diff --git a/sound/vox/plant.wav b/sound/vox/plant.wav
deleted file mode 100644
index 8fc84c60ac..0000000000
Binary files a/sound/vox/plant.wav and /dev/null differ
diff --git a/sound/vox/platform.wav b/sound/vox/platform.wav
deleted file mode 100644
index 72ca2c179f..0000000000
Binary files a/sound/vox/platform.wav and /dev/null differ
diff --git a/sound/vox/please.wav b/sound/vox/please.wav
deleted file mode 100644
index 4dc346e3e0..0000000000
Binary files a/sound/vox/please.wav and /dev/null differ
diff --git a/sound/vox/point.wav b/sound/vox/point.wav
deleted file mode 100644
index 26e4ca508b..0000000000
Binary files a/sound/vox/point.wav and /dev/null differ
diff --git a/sound/vox/portal.wav b/sound/vox/portal.wav
deleted file mode 100644
index 2f093e9924..0000000000
Binary files a/sound/vox/portal.wav and /dev/null differ
diff --git a/sound/vox/power.wav b/sound/vox/power.wav
deleted file mode 100644
index 3256e3ee99..0000000000
Binary files a/sound/vox/power.wav and /dev/null differ
diff --git a/sound/vox/presence.wav b/sound/vox/presence.wav
deleted file mode 100644
index c7a3b8f1e0..0000000000
Binary files a/sound/vox/presence.wav and /dev/null differ
diff --git a/sound/vox/press.wav b/sound/vox/press.wav
deleted file mode 100644
index 138ef0f2eb..0000000000
Binary files a/sound/vox/press.wav and /dev/null differ
diff --git a/sound/vox/primary.wav b/sound/vox/primary.wav
deleted file mode 100644
index ed107abdd1..0000000000
Binary files a/sound/vox/primary.wav and /dev/null differ
diff --git a/sound/vox/proceed.wav b/sound/vox/proceed.wav
deleted file mode 100644
index ec5ba2f438..0000000000
Binary files a/sound/vox/proceed.wav and /dev/null differ
diff --git a/sound/vox/processing.wav b/sound/vox/processing.wav
deleted file mode 100644
index 3470d8eb07..0000000000
Binary files a/sound/vox/processing.wav and /dev/null differ
diff --git a/sound/vox/progress.wav b/sound/vox/progress.wav
deleted file mode 100644
index ab2ef1914f..0000000000
Binary files a/sound/vox/progress.wav and /dev/null differ
diff --git a/sound/vox/proper.wav b/sound/vox/proper.wav
deleted file mode 100644
index fb799ae067..0000000000
Binary files a/sound/vox/proper.wav and /dev/null differ
diff --git a/sound/vox/propulsion.wav b/sound/vox/propulsion.wav
deleted file mode 100644
index cc60270a56..0000000000
Binary files a/sound/vox/propulsion.wav and /dev/null differ
diff --git a/sound/vox/prosecute.wav b/sound/vox/prosecute.wav
deleted file mode 100644
index 9d76be850b..0000000000
Binary files a/sound/vox/prosecute.wav and /dev/null differ
diff --git a/sound/vox/protective.wav b/sound/vox/protective.wav
deleted file mode 100644
index be17714e62..0000000000
Binary files a/sound/vox/protective.wav and /dev/null differ
diff --git a/sound/vox/push.wav b/sound/vox/push.wav
deleted file mode 100644
index db91cb1229..0000000000
Binary files a/sound/vox/push.wav and /dev/null differ
diff --git a/sound/vox/quantum.wav b/sound/vox/quantum.wav
deleted file mode 100644
index 3e5ee45d7b..0000000000
Binary files a/sound/vox/quantum.wav and /dev/null differ
diff --git a/sound/vox/quebec.wav b/sound/vox/quebec.wav
deleted file mode 100644
index 6323a992cb..0000000000
Binary files a/sound/vox/quebec.wav and /dev/null differ
diff --git a/sound/vox/question.wav b/sound/vox/question.wav
deleted file mode 100644
index cf6de8dd52..0000000000
Binary files a/sound/vox/question.wav and /dev/null differ
diff --git a/sound/vox/questioning.wav b/sound/vox/questioning.wav
deleted file mode 100644
index 51f08488dc..0000000000
Binary files a/sound/vox/questioning.wav and /dev/null differ
diff --git a/sound/vox/quick.wav b/sound/vox/quick.wav
deleted file mode 100644
index 82c6c493d7..0000000000
Binary files a/sound/vox/quick.wav and /dev/null differ
diff --git a/sound/vox/quit.wav b/sound/vox/quit.wav
deleted file mode 100644
index 1ee00b87a1..0000000000
Binary files a/sound/vox/quit.wav and /dev/null differ
diff --git a/sound/vox/radiation.wav b/sound/vox/radiation.wav
deleted file mode 100644
index 5551f24b44..0000000000
Binary files a/sound/vox/radiation.wav and /dev/null differ
diff --git a/sound/vox/radioactive.wav b/sound/vox/radioactive.wav
deleted file mode 100644
index 84b3b4a180..0000000000
Binary files a/sound/vox/radioactive.wav and /dev/null differ
diff --git a/sound/vox/rads.wav b/sound/vox/rads.wav
deleted file mode 100644
index 13802ea302..0000000000
Binary files a/sound/vox/rads.wav and /dev/null differ
diff --git a/sound/vox/rapid.wav b/sound/vox/rapid.wav
deleted file mode 100644
index fdfdd10faa..0000000000
Binary files a/sound/vox/rapid.wav and /dev/null differ
diff --git a/sound/vox/reach.wav b/sound/vox/reach.wav
deleted file mode 100644
index 5b2ec24bd4..0000000000
Binary files a/sound/vox/reach.wav and /dev/null differ
diff --git a/sound/vox/reached.wav b/sound/vox/reached.wav
deleted file mode 100644
index 22bd766019..0000000000
Binary files a/sound/vox/reached.wav and /dev/null differ
diff --git a/sound/vox/reactor.wav b/sound/vox/reactor.wav
deleted file mode 100644
index c8fb909be0..0000000000
Binary files a/sound/vox/reactor.wav and /dev/null differ
diff --git a/sound/vox/red.wav b/sound/vox/red.wav
deleted file mode 100644
index 777e546648..0000000000
Binary files a/sound/vox/red.wav and /dev/null differ
diff --git a/sound/vox/relay.wav b/sound/vox/relay.wav
deleted file mode 100644
index bef9fb0927..0000000000
Binary files a/sound/vox/relay.wav and /dev/null differ
diff --git a/sound/vox/released.wav b/sound/vox/released.wav
deleted file mode 100644
index ba56d6d955..0000000000
Binary files a/sound/vox/released.wav and /dev/null differ
diff --git a/sound/vox/remaining.wav b/sound/vox/remaining.wav
deleted file mode 100644
index 0c393ee9d1..0000000000
Binary files a/sound/vox/remaining.wav and /dev/null differ
diff --git a/sound/vox/renegade.wav b/sound/vox/renegade.wav
deleted file mode 100644
index 0dc4518edc..0000000000
Binary files a/sound/vox/renegade.wav and /dev/null differ
diff --git a/sound/vox/repair.wav b/sound/vox/repair.wav
deleted file mode 100644
index be2fe5418e..0000000000
Binary files a/sound/vox/repair.wav and /dev/null differ
diff --git a/sound/vox/report.wav b/sound/vox/report.wav
deleted file mode 100644
index 685c387894..0000000000
Binary files a/sound/vox/report.wav and /dev/null differ
diff --git a/sound/vox/reports.wav b/sound/vox/reports.wav
deleted file mode 100644
index 19e8f0478b..0000000000
Binary files a/sound/vox/reports.wav and /dev/null differ
diff --git a/sound/vox/required.wav b/sound/vox/required.wav
deleted file mode 100644
index c5bbf850b4..0000000000
Binary files a/sound/vox/required.wav and /dev/null differ
diff --git a/sound/vox/research.wav b/sound/vox/research.wav
deleted file mode 100644
index d7385867da..0000000000
Binary files a/sound/vox/research.wav and /dev/null differ
diff --git a/sound/vox/resevoir.wav b/sound/vox/resevoir.wav
deleted file mode 100644
index 7b67635b92..0000000000
Binary files a/sound/vox/resevoir.wav and /dev/null differ
diff --git a/sound/vox/resistance.wav b/sound/vox/resistance.wav
deleted file mode 100644
index 1f3f90b0f9..0000000000
Binary files a/sound/vox/resistance.wav and /dev/null differ
diff --git a/sound/vox/right.wav b/sound/vox/right.wav
deleted file mode 100644
index 0c920c843d..0000000000
Binary files a/sound/vox/right.wav and /dev/null differ
diff --git a/sound/vox/rocket.wav b/sound/vox/rocket.wav
deleted file mode 100644
index 57d7e6a8e0..0000000000
Binary files a/sound/vox/rocket.wav and /dev/null differ
diff --git a/sound/vox/roger.wav b/sound/vox/roger.wav
deleted file mode 100644
index 426014be23..0000000000
Binary files a/sound/vox/roger.wav and /dev/null differ
diff --git a/sound/vox/romeo.wav b/sound/vox/romeo.wav
deleted file mode 100644
index 42590922e4..0000000000
Binary files a/sound/vox/romeo.wav and /dev/null differ
diff --git a/sound/vox/room.wav b/sound/vox/room.wav
deleted file mode 100644
index da12c55fea..0000000000
Binary files a/sound/vox/room.wav and /dev/null differ
diff --git a/sound/vox/round.wav b/sound/vox/round.wav
deleted file mode 100644
index 76d30382eb..0000000000
Binary files a/sound/vox/round.wav and /dev/null differ
diff --git a/sound/vox/run.wav b/sound/vox/run.wav
deleted file mode 100644
index f2baec69b1..0000000000
Binary files a/sound/vox/run.wav and /dev/null differ
diff --git a/sound/vox/safe.wav b/sound/vox/safe.wav
deleted file mode 100644
index 65d52fbcdc..0000000000
Binary files a/sound/vox/safe.wav and /dev/null differ
diff --git a/sound/vox/safety.wav b/sound/vox/safety.wav
deleted file mode 100644
index b24e8951b2..0000000000
Binary files a/sound/vox/safety.wav and /dev/null differ
diff --git a/sound/vox/sargeant.wav b/sound/vox/sargeant.wav
deleted file mode 100644
index e26c6a301e..0000000000
Binary files a/sound/vox/sargeant.wav and /dev/null differ
diff --git a/sound/vox/satellite.wav b/sound/vox/satellite.wav
deleted file mode 100644
index 45187b819b..0000000000
Binary files a/sound/vox/satellite.wav and /dev/null differ
diff --git a/sound/vox/save.wav b/sound/vox/save.wav
deleted file mode 100644
index db09e27539..0000000000
Binary files a/sound/vox/save.wav and /dev/null differ
diff --git a/sound/vox/science.wav b/sound/vox/science.wav
deleted file mode 100644
index cb1f2d7236..0000000000
Binary files a/sound/vox/science.wav and /dev/null differ
diff --git a/sound/vox/scream.wav b/sound/vox/scream.wav
deleted file mode 100644
index 66afd0983d..0000000000
Binary files a/sound/vox/scream.wav and /dev/null differ
diff --git a/sound/vox/screen.wav b/sound/vox/screen.wav
deleted file mode 100644
index bb375266bb..0000000000
Binary files a/sound/vox/screen.wav and /dev/null differ
diff --git a/sound/vox/search.wav b/sound/vox/search.wav
deleted file mode 100644
index 023072d989..0000000000
Binary files a/sound/vox/search.wav and /dev/null differ
diff --git a/sound/vox/second.wav b/sound/vox/second.wav
deleted file mode 100644
index dbed0caa0a..0000000000
Binary files a/sound/vox/second.wav and /dev/null differ
diff --git a/sound/vox/secondary.wav b/sound/vox/secondary.wav
deleted file mode 100644
index af29ac286c..0000000000
Binary files a/sound/vox/secondary.wav and /dev/null differ
diff --git a/sound/vox/seconds.wav b/sound/vox/seconds.wav
deleted file mode 100644
index a631ea1db0..0000000000
Binary files a/sound/vox/seconds.wav and /dev/null differ
diff --git a/sound/vox/sector.wav b/sound/vox/sector.wav
deleted file mode 100644
index 2318ccf631..0000000000
Binary files a/sound/vox/sector.wav and /dev/null differ
diff --git a/sound/vox/secure.wav b/sound/vox/secure.wav
deleted file mode 100644
index 17fe6225ff..0000000000
Binary files a/sound/vox/secure.wav and /dev/null differ
diff --git a/sound/vox/secured.wav b/sound/vox/secured.wav
deleted file mode 100644
index 8007a48c0d..0000000000
Binary files a/sound/vox/secured.wav and /dev/null differ
diff --git a/sound/vox/security.wav b/sound/vox/security.wav
deleted file mode 100644
index 16435fdf51..0000000000
Binary files a/sound/vox/security.wav and /dev/null differ
diff --git a/sound/vox/select.wav b/sound/vox/select.wav
deleted file mode 100644
index 9b89d52bb0..0000000000
Binary files a/sound/vox/select.wav and /dev/null differ
diff --git a/sound/vox/selected.wav b/sound/vox/selected.wav
deleted file mode 100644
index d4124f579a..0000000000
Binary files a/sound/vox/selected.wav and /dev/null differ
diff --git a/sound/vox/service.wav b/sound/vox/service.wav
deleted file mode 100644
index 3f6957d2e0..0000000000
Binary files a/sound/vox/service.wav and /dev/null differ
diff --git a/sound/vox/seven.wav b/sound/vox/seven.wav
deleted file mode 100644
index eca99c196a..0000000000
Binary files a/sound/vox/seven.wav and /dev/null differ
diff --git a/sound/vox/seventeen.wav b/sound/vox/seventeen.wav
deleted file mode 100644
index 9526b8a4e3..0000000000
Binary files a/sound/vox/seventeen.wav and /dev/null differ
diff --git a/sound/vox/seventy.wav b/sound/vox/seventy.wav
deleted file mode 100644
index 1b45ce6afe..0000000000
Binary files a/sound/vox/seventy.wav and /dev/null differ
diff --git a/sound/vox/severe.wav b/sound/vox/severe.wav
deleted file mode 100644
index fed84eea85..0000000000
Binary files a/sound/vox/severe.wav and /dev/null differ
diff --git a/sound/vox/sewage.wav b/sound/vox/sewage.wav
deleted file mode 100644
index 60978963e2..0000000000
Binary files a/sound/vox/sewage.wav and /dev/null differ
diff --git a/sound/vox/sewer.wav b/sound/vox/sewer.wav
deleted file mode 100644
index 5071a1d64a..0000000000
Binary files a/sound/vox/sewer.wav and /dev/null differ
diff --git a/sound/vox/shield.wav b/sound/vox/shield.wav
deleted file mode 100644
index 0ab01e0a6a..0000000000
Binary files a/sound/vox/shield.wav and /dev/null differ
diff --git a/sound/vox/shipment.wav b/sound/vox/shipment.wav
deleted file mode 100644
index 9b9014c51d..0000000000
Binary files a/sound/vox/shipment.wav and /dev/null differ
diff --git a/sound/vox/shock.wav b/sound/vox/shock.wav
deleted file mode 100644
index d4451bdf3c..0000000000
Binary files a/sound/vox/shock.wav and /dev/null differ
diff --git a/sound/vox/shoot.wav b/sound/vox/shoot.wav
deleted file mode 100644
index 5661ceb9c9..0000000000
Binary files a/sound/vox/shoot.wav and /dev/null differ
diff --git a/sound/vox/shower.wav b/sound/vox/shower.wav
deleted file mode 100644
index c32a9e42e0..0000000000
Binary files a/sound/vox/shower.wav and /dev/null differ
diff --git a/sound/vox/shut.wav b/sound/vox/shut.wav
deleted file mode 100644
index 6f68340502..0000000000
Binary files a/sound/vox/shut.wav and /dev/null differ
diff --git a/sound/vox/side.wav b/sound/vox/side.wav
deleted file mode 100644
index 4f4091a4e5..0000000000
Binary files a/sound/vox/side.wav and /dev/null differ
diff --git a/sound/vox/sierra.wav b/sound/vox/sierra.wav
deleted file mode 100644
index 0e52a6ec56..0000000000
Binary files a/sound/vox/sierra.wav and /dev/null differ
diff --git a/sound/vox/sight.wav b/sound/vox/sight.wav
deleted file mode 100644
index 5d479cab75..0000000000
Binary files a/sound/vox/sight.wav and /dev/null differ
diff --git a/sound/vox/silo.wav b/sound/vox/silo.wav
deleted file mode 100644
index daf9f28be1..0000000000
Binary files a/sound/vox/silo.wav and /dev/null differ
diff --git a/sound/vox/six.wav b/sound/vox/six.wav
deleted file mode 100644
index aa6bb638e3..0000000000
Binary files a/sound/vox/six.wav and /dev/null differ
diff --git a/sound/vox/sixteen.wav b/sound/vox/sixteen.wav
deleted file mode 100644
index 6f2db2ad9d..0000000000
Binary files a/sound/vox/sixteen.wav and /dev/null differ
diff --git a/sound/vox/sixty.wav b/sound/vox/sixty.wav
deleted file mode 100644
index 19610c7f79..0000000000
Binary files a/sound/vox/sixty.wav and /dev/null differ
diff --git a/sound/vox/slime.wav b/sound/vox/slime.wav
deleted file mode 100644
index 4d1d3cf6a4..0000000000
Binary files a/sound/vox/slime.wav and /dev/null differ
diff --git a/sound/vox/slow.wav b/sound/vox/slow.wav
deleted file mode 100644
index 75101b7de4..0000000000
Binary files a/sound/vox/slow.wav and /dev/null differ
diff --git a/sound/vox/soldier.wav b/sound/vox/soldier.wav
deleted file mode 100644
index c84ce20178..0000000000
Binary files a/sound/vox/soldier.wav and /dev/null differ
diff --git a/sound/vox/some.wav b/sound/vox/some.wav
deleted file mode 100644
index c4ba34efff..0000000000
Binary files a/sound/vox/some.wav and /dev/null differ
diff --git a/sound/vox/someone.wav b/sound/vox/someone.wav
deleted file mode 100644
index 6f6183e1f7..0000000000
Binary files a/sound/vox/someone.wav and /dev/null differ
diff --git a/sound/vox/something.wav b/sound/vox/something.wav
deleted file mode 100644
index 4601140095..0000000000
Binary files a/sound/vox/something.wav and /dev/null differ
diff --git a/sound/vox/son.wav b/sound/vox/son.wav
deleted file mode 100644
index f23495127e..0000000000
Binary files a/sound/vox/son.wav and /dev/null differ
diff --git a/sound/vox/sorry.wav b/sound/vox/sorry.wav
deleted file mode 100644
index 4c0725b938..0000000000
Binary files a/sound/vox/sorry.wav and /dev/null differ
diff --git a/sound/vox/south.wav b/sound/vox/south.wav
deleted file mode 100644
index 3a5ba00410..0000000000
Binary files a/sound/vox/south.wav and /dev/null differ
diff --git a/sound/vox/squad.wav b/sound/vox/squad.wav
deleted file mode 100644
index 71739d1498..0000000000
Binary files a/sound/vox/squad.wav and /dev/null differ
diff --git a/sound/vox/square.wav b/sound/vox/square.wav
deleted file mode 100644
index f08f73a5f4..0000000000
Binary files a/sound/vox/square.wav and /dev/null differ
diff --git a/sound/vox/stairway.wav b/sound/vox/stairway.wav
deleted file mode 100644
index ab84571c82..0000000000
Binary files a/sound/vox/stairway.wav and /dev/null differ
diff --git a/sound/vox/status.wav b/sound/vox/status.wav
deleted file mode 100644
index 42fe8b7822..0000000000
Binary files a/sound/vox/status.wav and /dev/null differ
diff --git a/sound/vox/sterile.wav b/sound/vox/sterile.wav
deleted file mode 100644
index d95753222b..0000000000
Binary files a/sound/vox/sterile.wav and /dev/null differ
diff --git a/sound/vox/sterilization.wav b/sound/vox/sterilization.wav
deleted file mode 100644
index f53240310c..0000000000
Binary files a/sound/vox/sterilization.wav and /dev/null differ
diff --git a/sound/vox/storage.wav b/sound/vox/storage.wav
deleted file mode 100644
index 18954a4f79..0000000000
Binary files a/sound/vox/storage.wav and /dev/null differ
diff --git a/sound/vox/sub.wav b/sound/vox/sub.wav
deleted file mode 100644
index d25510d3c0..0000000000
Binary files a/sound/vox/sub.wav and /dev/null differ
diff --git a/sound/vox/subsurface.wav b/sound/vox/subsurface.wav
deleted file mode 100644
index cb19be3a88..0000000000
Binary files a/sound/vox/subsurface.wav and /dev/null differ
diff --git a/sound/vox/sudden.wav b/sound/vox/sudden.wav
deleted file mode 100644
index b5eb4088ac..0000000000
Binary files a/sound/vox/sudden.wav and /dev/null differ
diff --git a/sound/vox/suit.wav b/sound/vox/suit.wav
deleted file mode 100644
index d099c95843..0000000000
Binary files a/sound/vox/suit.wav and /dev/null differ
diff --git a/sound/vox/superconducting.wav b/sound/vox/superconducting.wav
deleted file mode 100644
index ad4fcc8f9d..0000000000
Binary files a/sound/vox/superconducting.wav and /dev/null differ
diff --git a/sound/vox/supercooled.wav b/sound/vox/supercooled.wav
deleted file mode 100644
index 936562ed4f..0000000000
Binary files a/sound/vox/supercooled.wav and /dev/null differ
diff --git a/sound/vox/supply.wav b/sound/vox/supply.wav
deleted file mode 100644
index 4b33c8e9b7..0000000000
Binary files a/sound/vox/supply.wav and /dev/null differ
diff --git a/sound/vox/surface.wav b/sound/vox/surface.wav
deleted file mode 100644
index 0b02d732a9..0000000000
Binary files a/sound/vox/surface.wav and /dev/null differ
diff --git a/sound/vox/surrender.wav b/sound/vox/surrender.wav
deleted file mode 100644
index f0a17b395a..0000000000
Binary files a/sound/vox/surrender.wav and /dev/null differ
diff --git a/sound/vox/surround.wav b/sound/vox/surround.wav
deleted file mode 100644
index c9afd86f9c..0000000000
Binary files a/sound/vox/surround.wav and /dev/null differ
diff --git a/sound/vox/surrounded.wav b/sound/vox/surrounded.wav
deleted file mode 100644
index 3cbf513481..0000000000
Binary files a/sound/vox/surrounded.wav and /dev/null differ
diff --git a/sound/vox/switch.wav b/sound/vox/switch.wav
deleted file mode 100644
index f5ffcc7a6b..0000000000
Binary files a/sound/vox/switch.wav and /dev/null differ
diff --git a/sound/vox/system.wav b/sound/vox/system.wav
deleted file mode 100644
index 078727a081..0000000000
Binary files a/sound/vox/system.wav and /dev/null differ
diff --git a/sound/vox/systems.wav b/sound/vox/systems.wav
deleted file mode 100644
index c880250830..0000000000
Binary files a/sound/vox/systems.wav and /dev/null differ
diff --git a/sound/vox/tactical.wav b/sound/vox/tactical.wav
deleted file mode 100644
index 6b1aca650b..0000000000
Binary files a/sound/vox/tactical.wav and /dev/null differ
diff --git a/sound/vox/take.wav b/sound/vox/take.wav
deleted file mode 100644
index 70644f5220..0000000000
Binary files a/sound/vox/take.wav and /dev/null differ
diff --git a/sound/vox/talk.wav b/sound/vox/talk.wav
deleted file mode 100644
index 3ff83c48c9..0000000000
Binary files a/sound/vox/talk.wav and /dev/null differ
diff --git a/sound/vox/tango.wav b/sound/vox/tango.wav
deleted file mode 100644
index 37b6f4fe19..0000000000
Binary files a/sound/vox/tango.wav and /dev/null differ
diff --git a/sound/vox/tank.wav b/sound/vox/tank.wav
deleted file mode 100644
index 9608b0d749..0000000000
Binary files a/sound/vox/tank.wav and /dev/null differ
diff --git a/sound/vox/target.wav b/sound/vox/target.wav
deleted file mode 100644
index bd004147bf..0000000000
Binary files a/sound/vox/target.wav and /dev/null differ
diff --git a/sound/vox/team.wav b/sound/vox/team.wav
deleted file mode 100644
index d0e47d4e10..0000000000
Binary files a/sound/vox/team.wav and /dev/null differ
diff --git a/sound/vox/temperature.wav b/sound/vox/temperature.wav
deleted file mode 100644
index e9b51dada7..0000000000
Binary files a/sound/vox/temperature.wav and /dev/null differ
diff --git a/sound/vox/temporal.wav b/sound/vox/temporal.wav
deleted file mode 100644
index d0398a0f8c..0000000000
Binary files a/sound/vox/temporal.wav and /dev/null differ
diff --git a/sound/vox/ten.wav b/sound/vox/ten.wav
deleted file mode 100644
index fd0f353f6b..0000000000
Binary files a/sound/vox/ten.wav and /dev/null differ
diff --git a/sound/vox/terminal.wav b/sound/vox/terminal.wav
deleted file mode 100644
index 5ffe39101e..0000000000
Binary files a/sound/vox/terminal.wav and /dev/null differ
diff --git a/sound/vox/terminated.wav b/sound/vox/terminated.wav
deleted file mode 100644
index 1c972f092c..0000000000
Binary files a/sound/vox/terminated.wav and /dev/null differ
diff --git a/sound/vox/termination.wav b/sound/vox/termination.wav
deleted file mode 100644
index f093cd31a1..0000000000
Binary files a/sound/vox/termination.wav and /dev/null differ
diff --git a/sound/vox/test.wav b/sound/vox/test.wav
deleted file mode 100644
index f7c9b461fc..0000000000
Binary files a/sound/vox/test.wav and /dev/null differ
diff --git a/sound/vox/that.wav b/sound/vox/that.wav
deleted file mode 100644
index f9e8c92873..0000000000
Binary files a/sound/vox/that.wav and /dev/null differ
diff --git a/sound/vox/the.wav b/sound/vox/the.wav
deleted file mode 100644
index 3a07ea3be8..0000000000
Binary files a/sound/vox/the.wav and /dev/null differ
diff --git a/sound/vox/then.wav b/sound/vox/then.wav
deleted file mode 100644
index 1c2ec53386..0000000000
Binary files a/sound/vox/then.wav and /dev/null differ
diff --git a/sound/vox/there.wav b/sound/vox/there.wav
deleted file mode 100644
index 0e25880076..0000000000
Binary files a/sound/vox/there.wav and /dev/null differ
diff --git a/sound/vox/third.wav b/sound/vox/third.wav
deleted file mode 100644
index 962f2f9697..0000000000
Binary files a/sound/vox/third.wav and /dev/null differ
diff --git a/sound/vox/thirteen.wav b/sound/vox/thirteen.wav
deleted file mode 100644
index 1c392cfa3e..0000000000
Binary files a/sound/vox/thirteen.wav and /dev/null differ
diff --git a/sound/vox/thirty.wav b/sound/vox/thirty.wav
deleted file mode 100644
index d7a34d4351..0000000000
Binary files a/sound/vox/thirty.wav and /dev/null differ
diff --git a/sound/vox/this.wav b/sound/vox/this.wav
deleted file mode 100644
index b8f51ea151..0000000000
Binary files a/sound/vox/this.wav and /dev/null differ
diff --git a/sound/vox/those.wav b/sound/vox/those.wav
deleted file mode 100644
index ef7db90721..0000000000
Binary files a/sound/vox/those.wav and /dev/null differ
diff --git a/sound/vox/thousand.wav b/sound/vox/thousand.wav
deleted file mode 100644
index b1f9df6edd..0000000000
Binary files a/sound/vox/thousand.wav and /dev/null differ
diff --git a/sound/vox/threat.wav b/sound/vox/threat.wav
deleted file mode 100644
index 75cefae187..0000000000
Binary files a/sound/vox/threat.wav and /dev/null differ
diff --git a/sound/vox/three.wav b/sound/vox/three.wav
deleted file mode 100644
index 097504d605..0000000000
Binary files a/sound/vox/three.wav and /dev/null differ
diff --git a/sound/vox/through.wav b/sound/vox/through.wav
deleted file mode 100644
index 78053bdf90..0000000000
Binary files a/sound/vox/through.wav and /dev/null differ
diff --git a/sound/vox/time.wav b/sound/vox/time.wav
deleted file mode 100644
index 856529d6a4..0000000000
Binary files a/sound/vox/time.wav and /dev/null differ
diff --git a/sound/vox/to.wav b/sound/vox/to.wav
deleted file mode 100644
index 5189cf2d58..0000000000
Binary files a/sound/vox/to.wav and /dev/null differ
diff --git a/sound/vox/top.wav b/sound/vox/top.wav
deleted file mode 100644
index 0747e8965a..0000000000
Binary files a/sound/vox/top.wav and /dev/null differ
diff --git a/sound/vox/topside.wav b/sound/vox/topside.wav
deleted file mode 100644
index 6f6f54b973..0000000000
Binary files a/sound/vox/topside.wav and /dev/null differ
diff --git a/sound/vox/touch.wav b/sound/vox/touch.wav
deleted file mode 100644
index 6712dc18a3..0000000000
Binary files a/sound/vox/touch.wav and /dev/null differ
diff --git a/sound/vox/towards.wav b/sound/vox/towards.wav
deleted file mode 100644
index ff04147f15..0000000000
Binary files a/sound/vox/towards.wav and /dev/null differ
diff --git a/sound/vox/track.wav b/sound/vox/track.wav
deleted file mode 100644
index 5247acabd0..0000000000
Binary files a/sound/vox/track.wav and /dev/null differ
diff --git a/sound/vox/train.wav b/sound/vox/train.wav
deleted file mode 100644
index ced1a9850c..0000000000
Binary files a/sound/vox/train.wav and /dev/null differ
diff --git a/sound/vox/transportation.wav b/sound/vox/transportation.wav
deleted file mode 100644
index 302241aeb0..0000000000
Binary files a/sound/vox/transportation.wav and /dev/null differ
diff --git a/sound/vox/truck.wav b/sound/vox/truck.wav
deleted file mode 100644
index 1692a9c7dd..0000000000
Binary files a/sound/vox/truck.wav and /dev/null differ
diff --git a/sound/vox/tunnel.wav b/sound/vox/tunnel.wav
deleted file mode 100644
index f158042a9d..0000000000
Binary files a/sound/vox/tunnel.wav and /dev/null differ
diff --git a/sound/vox/turn.wav b/sound/vox/turn.wav
deleted file mode 100644
index 407d2cdbe8..0000000000
Binary files a/sound/vox/turn.wav and /dev/null differ
diff --git a/sound/vox/turret.wav b/sound/vox/turret.wav
deleted file mode 100644
index ec42293ebb..0000000000
Binary files a/sound/vox/turret.wav and /dev/null differ
diff --git a/sound/vox/twelve.wav b/sound/vox/twelve.wav
deleted file mode 100644
index d9fbcc2558..0000000000
Binary files a/sound/vox/twelve.wav and /dev/null differ
diff --git a/sound/vox/twenty.wav b/sound/vox/twenty.wav
deleted file mode 100644
index e6d7d8092d..0000000000
Binary files a/sound/vox/twenty.wav and /dev/null differ
diff --git a/sound/vox/two.wav b/sound/vox/two.wav
deleted file mode 100644
index 14f432fd5c..0000000000
Binary files a/sound/vox/two.wav and /dev/null differ
diff --git a/sound/vox/unauthorized.wav b/sound/vox/unauthorized.wav
deleted file mode 100644
index 7d3236f491..0000000000
Binary files a/sound/vox/unauthorized.wav and /dev/null differ
diff --git a/sound/vox/under.wav b/sound/vox/under.wav
deleted file mode 100644
index dc30e4711c..0000000000
Binary files a/sound/vox/under.wav and /dev/null differ
diff --git a/sound/vox/uniform.wav b/sound/vox/uniform.wav
deleted file mode 100644
index 899c7f029a..0000000000
Binary files a/sound/vox/uniform.wav and /dev/null differ
diff --git a/sound/vox/unlocked.wav b/sound/vox/unlocked.wav
deleted file mode 100644
index 0e48489db5..0000000000
Binary files a/sound/vox/unlocked.wav and /dev/null differ
diff --git a/sound/vox/until.wav b/sound/vox/until.wav
deleted file mode 100644
index 68f5ea47e4..0000000000
Binary files a/sound/vox/until.wav and /dev/null differ
diff --git a/sound/vox/up.wav b/sound/vox/up.wav
deleted file mode 100644
index 1816546702..0000000000
Binary files a/sound/vox/up.wav and /dev/null differ
diff --git a/sound/vox/upper.wav b/sound/vox/upper.wav
deleted file mode 100644
index 8b59156651..0000000000
Binary files a/sound/vox/upper.wav and /dev/null differ
diff --git a/sound/vox/uranium.wav b/sound/vox/uranium.wav
deleted file mode 100644
index 2ab47d6085..0000000000
Binary files a/sound/vox/uranium.wav and /dev/null differ
diff --git a/sound/vox/us.wav b/sound/vox/us.wav
deleted file mode 100644
index 23b56e9357..0000000000
Binary files a/sound/vox/us.wav and /dev/null differ
diff --git a/sound/vox/usa.wav b/sound/vox/usa.wav
deleted file mode 100644
index 591233e624..0000000000
Binary files a/sound/vox/usa.wav and /dev/null differ
diff --git a/sound/vox/use.wav b/sound/vox/use.wav
deleted file mode 100644
index 35be617775..0000000000
Binary files a/sound/vox/use.wav and /dev/null differ
diff --git a/sound/vox/used.wav b/sound/vox/used.wav
deleted file mode 100644
index 3385240fd9..0000000000
Binary files a/sound/vox/used.wav and /dev/null differ
diff --git a/sound/vox/user.wav b/sound/vox/user.wav
deleted file mode 100644
index 91ccb15af6..0000000000
Binary files a/sound/vox/user.wav and /dev/null differ
diff --git a/sound/vox/vacate.wav b/sound/vox/vacate.wav
deleted file mode 100644
index bed5d702e4..0000000000
Binary files a/sound/vox/vacate.wav and /dev/null differ
diff --git a/sound/vox/valid.wav b/sound/vox/valid.wav
deleted file mode 100644
index 40c3f1e4f6..0000000000
Binary files a/sound/vox/valid.wav and /dev/null differ
diff --git a/sound/vox/vapor.wav b/sound/vox/vapor.wav
deleted file mode 100644
index d067f69827..0000000000
Binary files a/sound/vox/vapor.wav and /dev/null differ
diff --git a/sound/vox/vent.wav b/sound/vox/vent.wav
deleted file mode 100644
index b4efa86991..0000000000
Binary files a/sound/vox/vent.wav and /dev/null differ
diff --git a/sound/vox/ventillation.wav b/sound/vox/ventillation.wav
deleted file mode 100644
index d56679dda1..0000000000
Binary files a/sound/vox/ventillation.wav and /dev/null differ
diff --git a/sound/vox/victor.wav b/sound/vox/victor.wav
deleted file mode 100644
index 8245a2abf4..0000000000
Binary files a/sound/vox/victor.wav and /dev/null differ
diff --git a/sound/vox/violated.wav b/sound/vox/violated.wav
deleted file mode 100644
index c597d1dfe2..0000000000
Binary files a/sound/vox/violated.wav and /dev/null differ
diff --git a/sound/vox/violation.wav b/sound/vox/violation.wav
deleted file mode 100644
index 98ed5dd0b9..0000000000
Binary files a/sound/vox/violation.wav and /dev/null differ
diff --git a/sound/vox/voltage.wav b/sound/vox/voltage.wav
deleted file mode 100644
index 140e1dd6a2..0000000000
Binary files a/sound/vox/voltage.wav and /dev/null differ
diff --git a/sound/vox/vox_login.wav b/sound/vox/vox_login.wav
deleted file mode 100644
index 5679acfce8..0000000000
Binary files a/sound/vox/vox_login.wav and /dev/null differ
diff --git a/sound/vox/walk.wav b/sound/vox/walk.wav
deleted file mode 100644
index fd8d85f84d..0000000000
Binary files a/sound/vox/walk.wav and /dev/null differ
diff --git a/sound/vox/wall.wav b/sound/vox/wall.wav
deleted file mode 100644
index e8e9a5fb4a..0000000000
Binary files a/sound/vox/wall.wav and /dev/null differ
diff --git a/sound/vox/want.wav b/sound/vox/want.wav
deleted file mode 100644
index 3d130ce8fe..0000000000
Binary files a/sound/vox/want.wav and /dev/null differ
diff --git a/sound/vox/wanted.wav b/sound/vox/wanted.wav
deleted file mode 100644
index a292d2d33b..0000000000
Binary files a/sound/vox/wanted.wav and /dev/null differ
diff --git a/sound/vox/warm.wav b/sound/vox/warm.wav
deleted file mode 100644
index 518f2905f4..0000000000
Binary files a/sound/vox/warm.wav and /dev/null differ
diff --git a/sound/vox/warn.wav b/sound/vox/warn.wav
deleted file mode 100644
index 7580146005..0000000000
Binary files a/sound/vox/warn.wav and /dev/null differ
diff --git a/sound/vox/warning.wav b/sound/vox/warning.wav
deleted file mode 100644
index 87db6c164b..0000000000
Binary files a/sound/vox/warning.wav and /dev/null differ
diff --git a/sound/vox/waste.wav b/sound/vox/waste.wav
deleted file mode 100644
index 245c44d682..0000000000
Binary files a/sound/vox/waste.wav and /dev/null differ
diff --git a/sound/vox/water.wav b/sound/vox/water.wav
deleted file mode 100644
index c29d7acf55..0000000000
Binary files a/sound/vox/water.wav and /dev/null differ
diff --git a/sound/vox/we.wav b/sound/vox/we.wav
deleted file mode 100644
index d7ba93484d..0000000000
Binary files a/sound/vox/we.wav and /dev/null differ
diff --git a/sound/vox/weapon.wav b/sound/vox/weapon.wav
deleted file mode 100644
index 3e95e9efc4..0000000000
Binary files a/sound/vox/weapon.wav and /dev/null differ
diff --git a/sound/vox/west.wav b/sound/vox/west.wav
deleted file mode 100644
index 09f58088c9..0000000000
Binary files a/sound/vox/west.wav and /dev/null differ
diff --git a/sound/vox/whiskey.wav b/sound/vox/whiskey.wav
deleted file mode 100644
index 11ef7b3aa0..0000000000
Binary files a/sound/vox/whiskey.wav and /dev/null differ
diff --git a/sound/vox/white.wav b/sound/vox/white.wav
deleted file mode 100644
index 6d4ec3e138..0000000000
Binary files a/sound/vox/white.wav and /dev/null differ
diff --git a/sound/vox/wilco.wav b/sound/vox/wilco.wav
deleted file mode 100644
index 862aa8d97d..0000000000
Binary files a/sound/vox/wilco.wav and /dev/null differ
diff --git a/sound/vox/will.wav b/sound/vox/will.wav
deleted file mode 100644
index 327d81c9d0..0000000000
Binary files a/sound/vox/will.wav and /dev/null differ
diff --git a/sound/vox/with.wav b/sound/vox/with.wav
deleted file mode 100644
index f1db548cd7..0000000000
Binary files a/sound/vox/with.wav and /dev/null differ
diff --git a/sound/vox/without.wav b/sound/vox/without.wav
deleted file mode 100644
index 7f3096df12..0000000000
Binary files a/sound/vox/without.wav and /dev/null differ
diff --git a/sound/vox/woop.wav b/sound/vox/woop.wav
deleted file mode 100644
index 62fa99cb3b..0000000000
Binary files a/sound/vox/woop.wav and /dev/null differ
diff --git a/sound/vox/xeno.wav b/sound/vox/xeno.wav
deleted file mode 100644
index 6b77a20b7a..0000000000
Binary files a/sound/vox/xeno.wav and /dev/null differ
diff --git a/sound/vox/yankee.wav b/sound/vox/yankee.wav
deleted file mode 100644
index 62bf15a40b..0000000000
Binary files a/sound/vox/yankee.wav and /dev/null differ
diff --git a/sound/vox/yards.wav b/sound/vox/yards.wav
deleted file mode 100644
index 33c3c4c3e3..0000000000
Binary files a/sound/vox/yards.wav and /dev/null differ
diff --git a/sound/vox/year.wav b/sound/vox/year.wav
deleted file mode 100644
index 12dca8e86b..0000000000
Binary files a/sound/vox/year.wav and /dev/null differ
diff --git a/sound/vox/yellow.wav b/sound/vox/yellow.wav
deleted file mode 100644
index bed92f5f9f..0000000000
Binary files a/sound/vox/yellow.wav and /dev/null differ
diff --git a/sound/vox/yes.wav b/sound/vox/yes.wav
deleted file mode 100644
index 799bb2b775..0000000000
Binary files a/sound/vox/yes.wav and /dev/null differ
diff --git a/sound/vox/you.wav b/sound/vox/you.wav
deleted file mode 100644
index 7ba9be75a8..0000000000
Binary files a/sound/vox/you.wav and /dev/null differ
diff --git a/sound/vox/your.wav b/sound/vox/your.wav
deleted file mode 100644
index 9e29c2418b..0000000000
Binary files a/sound/vox/your.wav and /dev/null differ
diff --git a/sound/vox/yourself.wav b/sound/vox/yourself.wav
deleted file mode 100644
index 582c3b7ed6..0000000000
Binary files a/sound/vox/yourself.wav and /dev/null differ
diff --git a/sound/vox/zero.wav b/sound/vox/zero.wav
deleted file mode 100644
index 9b6c39722d..0000000000
Binary files a/sound/vox/zero.wav and /dev/null differ
diff --git a/sound/vox/zone.wav b/sound/vox/zone.wav
deleted file mode 100644
index 68f9b8952c..0000000000
Binary files a/sound/vox/zone.wav and /dev/null differ
diff --git a/sound/vox/zulu.wav b/sound/vox/zulu.wav
deleted file mode 100644
index 32d6605218..0000000000
Binary files a/sound/vox/zulu.wav and /dev/null differ