-- MySQL dump 10.13 Distrib 5.1.41, for debian-linux-gnu (i486) -- -- Host: localhost Database: starfishpbx -- ------------------------------------------------------ -- Server version 5.1.41-3ubuntu12.6 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `CDR` -- DROP TABLE IF EXISTS `CDR`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `CDR` ( `calldate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `clid` varchar(80) NOT NULL DEFAULT '', `src` varchar(80) NOT NULL DEFAULT '', `dst` varchar(80) NOT NULL DEFAULT '', `dcontext` varchar(80) NOT NULL DEFAULT '', `channel` varchar(80) NOT NULL DEFAULT '', `dstchannel` varchar(80) NOT NULL DEFAULT '', `lastapp` varchar(80) NOT NULL DEFAULT '', `lastdata` varchar(80) NOT NULL DEFAULT '', `duration` int(11) NOT NULL DEFAULT '0', `billsec` int(11) NOT NULL DEFAULT '0', `disposition` varchar(45) NOT NULL DEFAULT '', `amaflags` int(11) NOT NULL DEFAULT '0', `accountcode` varchar(20) NOT NULL DEFAULT '', `userfield` varchar(255) NOT NULL DEFAULT '', `uniqueid` varchar(32) NOT NULL DEFAULT '', KEY `calldate` (`calldate`), KEY `dst` (`dst`), KEY `accountcode` (`accountcode`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `CDR` -- LOCK TABLES `CDR` WRITE; /*!40000 ALTER TABLE `CDR` DISABLE KEYS */; /*!40000 ALTER TABLE `CDR` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admins` -- DROP TABLE IF EXISTS `admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admins` ( `pk_admin` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` varchar(100) NOT NULL, `protected` tinyint(1) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_admin`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admins` -- LOCK TABLES `admins` WRITE; /*!40000 ALTER TABLE `admins` DISABLE KEYS */; INSERT INTO `admins` VALUES (1,'admin','fe01ce2a7fbac8fafaed7c982a04e229',1,'0000-00-00 00:00:00'); /*!40000 ALTER TABLE `admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `agents` -- DROP TABLE IF EXISTS `agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `agents` ( `fk_extension_queue` int(10) unsigned NOT NULL, `fk_extension_agent` int(10) unsigned NOT NULL, `location` varchar(30) NOT NULL, `logindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`fk_extension_queue`,`fk_extension_agent`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `agents` -- LOCK TABLES `agents` WRITE; /*!40000 ALTER TABLE `agents` DISABLE KEYS */; INSERT INTO `agents` VALUES (218,212,'1001','2010-09-27 15:50:34'); /*!40000 ALTER TABLE `agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backups` -- DROP TABLE IF EXISTS `backups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `backups` ( `pk_backup` int(3) unsigned NOT NULL AUTO_INCREMENT, `optionals` varchar(100) NOT NULL, `size` varchar(5) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_backup`) ) ENGINE=MyISAM AUTO_INCREMENT=42 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backups` -- LOCK TABLES `backups` WRITE; /*!40000 ALTER TABLE `backups` DISABLE KEYS */; /*!40000 ALTER TABLE `backups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `calllog` -- DROP TABLE IF EXISTS `calllog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calllog` ( `pk_calllog` varchar(50) NOT NULL, `fk_calllog_parent` varchar(50) NOT NULL, `calltype` enum('LOCAL','OUT','IN') NOT NULL, `startdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `callerid` int(11) NOT NULL, `callertype` varchar(50) NOT NULL, `callername` varchar(100) NOT NULL, `callernumber` varchar(100) NOT NULL, `calledid` int(10) unsigned NOT NULL, `calledtype` varchar(50) NOT NULL, `calledname` varchar(100) NOT NULL, `callednumber` varchar(100) NOT NULL, `billsec` int(10) unsigned NOT NULL, `duration` int(11) NOT NULL, PRIMARY KEY (`pk_calllog`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `calllog` -- LOCK TABLES `calllog` WRITE; /*!40000 ALTER TABLE `calllog` DISABLE KEYS */; /*!40000 ALTER TABLE `calllog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `calllog_details` -- DROP TABLE IF EXISTS `calllog_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calllog_details` ( `pk_details` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_calllog` varchar(50) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `event` varchar(15) NOT NULL, `data` varchar(255) NOT NULL, PRIMARY KEY (`pk_details`), KEY `FK_CallLog` (`fk_calllog`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `calllog_details` -- LOCK TABLES `calllog_details` WRITE; /*!40000 ALTER TABLE `calllog_details` DISABLE KEYS */; /*!40000 ALTER TABLE `calllog_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cidrules` -- DROP TABLE IF EXISTS `cidrules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cidrules` ( `pk_cidrule` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` enum('single','ranged') NOT NULL, `start_extension` mediumint(8) unsigned NOT NULL, `end_extension` mediumint(8) unsigned NOT NULL, `fk_outroute` int(10) unsigned NOT NULL, `number_add` int(10) unsigned NOT NULL, `number_prepend` varchar(10) NOT NULL, `cid_name` varchar(100) NOT NULL, `cid_number` varchar(100) NOT NULL, PRIMARY KEY (`pk_cidrule`) ) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cidrules` -- LOCK TABLES `cidrules` WRITE; /*!40000 ALTER TABLE `cidrules` DISABLE KEYS */; /*!40000 ALTER TABLE `cidrules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `codecs` -- DROP TABLE IF EXISTS `codecs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `codecs` ( `pk_codec` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(10) NOT NULL, `description` varchar(100) NOT NULL, `recomended` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`pk_codec`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `codecs` -- LOCK TABLES `codecs` WRITE; /*!40000 ALTER TABLE `codecs` DISABLE KEYS */; INSERT INTO `codecs` VALUES (1,'alaw','ALAW',1),(2,'ulaw','ULAW',1),(3,'zap','ZAP',0),(4,'adpcm','ADPCM',0),(5,'gsm','GSM',0),(6,'g726','G726',0),(7,'lpc10','LPC10',0),(8,'speex','SPEEX',0),(9,'a_mu','AMU',0); /*!40000 ALTER TABLE `codecs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dtmfmodes` -- DROP TABLE IF EXISTS `dtmfmodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dtmfmodes` ( `pk_dtmfmode` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `description` varchar(100) NOT NULL, PRIMARY KEY (`pk_dtmfmode`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dtmfmodes` -- LOCK TABLES `dtmfmodes` WRITE; /*!40000 ALTER TABLE `dtmfmodes` DISABLE KEYS */; INSERT INTO `dtmfmodes` VALUES (1,'rfc2833','RFC2833 (Default)'),(2,'info','Info'),(3,'inband','Inband'),(4,'auto','Auto'); /*!40000 ALTER TABLE `dtmfmodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_agentlogin` -- DROP TABLE IF EXISTS `ext_agentlogin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_agentlogin` ( `pk_extension` int(10) unsigned NOT NULL, `requirepassword` tinyint(1) NOT NULL DEFAULT '1', `logintoggle` tinyint(1) NOT NULL DEFAULT '0', `enterextension` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_agentlogin` -- LOCK TABLES `ext_agentlogin` WRITE; /*!40000 ALTER TABLE `ext_agentlogin` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_agentlogin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_confcenter` -- DROP TABLE IF EXISTS `ext_confcenter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_confcenter` ( `pk_extension` int(255) NOT NULL, `invalidtries` int(1) NOT NULL, `transferext` int(5) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_confcenter` -- LOCK TABLES `ext_confcenter` WRITE; /*!40000 ALTER TABLE `ext_confcenter` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_confcenter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_confcenter_admins` -- DROP TABLE IF EXISTS `ext_confcenter_admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_confcenter_admins` ( `fk_room` int(10) unsigned NOT NULL, `fk_extension` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_room`,`fk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_confcenter_admins` -- LOCK TABLES `ext_confcenter_admins` WRITE; /*!40000 ALTER TABLE `ext_confcenter_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_confcenter_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_confcenter_rooms` -- DROP TABLE IF EXISTS `ext_confcenter_rooms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_confcenter_rooms` ( `pk_room` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_extension_owner` int(10) unsigned NOT NULL, `number` char(5) NOT NULL, `playentersound` tinyint(1) NOT NULL, `playmoh` tinyint(1) NOT NULL, `operator` varchar(10) NOT NULL, `onlyadmintalk` tinyint(1) NOT NULL, `hangupifnoadmin` tinyint(1) NOT NULL, `notalktilladmin` tinyint(1) NOT NULL, PRIMARY KEY (`pk_room`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_confcenter_rooms` -- LOCK TABLES `ext_confcenter_rooms` WRITE; /*!40000 ALTER TABLE `ext_confcenter_rooms` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_confcenter_rooms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_dialtone` -- DROP TABLE IF EXISTS `ext_dialtone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_dialtone` ( `pk_extension` int(10) unsigned NOT NULL, `password` varchar(10) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_dialtone` -- LOCK TABLES `ext_dialtone` WRITE; /*!40000 ALTER TABLE `ext_dialtone` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_dialtone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_directory` -- DROP TABLE IF EXISTS `ext_directory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_directory` ( `pk_extension` int(10) unsigned NOT NULL, `use_members_byaccount` tinyint(1) NOT NULL, `which_name` enum('FirstName','LastName') NOT NULL DEFAULT 'FirstName', `callbackextension` varchar(10) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_directory` -- LOCK TABLES `ext_directory` WRITE; /*!40000 ALTER TABLE `ext_directory` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_directory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_directory_members` -- DROP TABLE IF EXISTS `ext_directory_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_directory_members` ( `fk_extension` int(255) NOT NULL, `fk_extension_member` int(255) NOT NULL, `fk_group_member` int(255) NOT NULL, PRIMARY KEY (`fk_extension`,`fk_extension_member`,`fk_group_member`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_directory_members` -- LOCK TABLES `ext_directory_members` WRITE; /*!40000 ALTER TABLE `ext_directory_members` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_directory_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_grouppickup` -- DROP TABLE IF EXISTS `ext_grouppickup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_grouppickup` ( `pk_extension` int(10) unsigned NOT NULL, `use_members_byaccount` tinyint(1) NOT NULL, `use_admins_byaccount` tinyint(1) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_grouppickup` -- LOCK TABLES `ext_grouppickup` WRITE; /*!40000 ALTER TABLE `ext_grouppickup` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_grouppickup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_grouppickup_admins` -- DROP TABLE IF EXISTS `ext_grouppickup_admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_grouppickup_admins` ( `fk_extension` int(255) NOT NULL, `fk_extension_admin` int(255) NOT NULL, `fk_extension_group` int(255) NOT NULL, PRIMARY KEY (`fk_extension`,`fk_extension_admin`,`fk_extension_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_grouppickup_admins` -- LOCK TABLES `ext_grouppickup_admins` WRITE; /*!40000 ALTER TABLE `ext_grouppickup_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_grouppickup_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_grouppickup_members` -- DROP TABLE IF EXISTS `ext_grouppickup_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_grouppickup_members` ( `fk_extension` int(255) NOT NULL, `fk_extension_member` int(255) NOT NULL, `fk_group_member` int(255) NOT NULL, PRIMARY KEY (`fk_extension`,`fk_extension_member`,`fk_group_member`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_grouppickup_members` -- LOCK TABLES `ext_grouppickup_members` WRITE; /*!40000 ALTER TABLE `ext_grouppickup_members` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_grouppickup_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_intercom` -- DROP TABLE IF EXISTS `ext_intercom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_intercom` ( `pk_extension` int(255) NOT NULL, `header` varchar(255) NOT NULL, `timeout` int(3) NOT NULL, `twoway` int(1) NOT NULL, `playsound` int(1) NOT NULL, `use_members_byaccount` int(1) NOT NULL, `use_admins_byaccount` int(1) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_intercom` -- LOCK TABLES `ext_intercom` WRITE; /*!40000 ALTER TABLE `ext_intercom` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_intercom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_intercom_admins` -- DROP TABLE IF EXISTS `ext_intercom_admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_intercom_admins` ( `fk_extension` int(255) NOT NULL, `fk_extension_admin` int(255) NOT NULL, `fk_group_admin` int(255) NOT NULL, PRIMARY KEY (`fk_extension`,`fk_extension_admin`,`fk_group_admin`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_intercom_admins` -- LOCK TABLES `ext_intercom_admins` WRITE; /*!40000 ALTER TABLE `ext_intercom_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_intercom_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_intercom_members` -- DROP TABLE IF EXISTS `ext_intercom_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_intercom_members` ( `fk_extension` int(255) NOT NULL, `fk_extension_member` int(255) NOT NULL, `fk_group_member` int(255) NOT NULL, PRIMARY KEY (`fk_extension`,`fk_extension_member`,`fk_group_member`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_intercom_members` -- LOCK TABLES `ext_intercom_members` WRITE; /*!40000 ALTER TABLE `ext_intercom_members` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_intercom_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_ivr` -- DROP TABLE IF EXISTS `ext_ivr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_ivr` ( `pk_extension` int(10) unsigned NOT NULL, `fk_menu` int(10) unsigned NOT NULL, `fk_action` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_ivr` -- LOCK TABLES `ext_ivr` WRITE; /*!40000 ALTER TABLE `ext_ivr` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_ivr` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_parkinglot` -- DROP TABLE IF EXISTS `ext_parkinglot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_parkinglot` ( `pk_extension` int(10) unsigned NOT NULL, `start` int(5) unsigned NOT NULL, `stop` int(5) unsigned NOT NULL, `timeout` smallint(5) unsigned NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_parkinglot` -- LOCK TABLES `ext_parkinglot` WRITE; /*!40000 ALTER TABLE `ext_parkinglot` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_parkinglot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_queue_members` -- DROP TABLE IF EXISTS `ext_queue_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_queue_members` ( `fk_extension` int(10) unsigned NOT NULL, `fk_extension_member` int(10) unsigned NOT NULL, `loginrequired` tinyint(1) NOT NULL, `queueorder` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`,`fk_extension_member`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_queue_members` -- LOCK TABLES `ext_queue_members` WRITE; /*!40000 ALTER TABLE `ext_queue_members` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_queue_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_queues` -- DROP TABLE IF EXISTS `ext_queues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_queues` ( `pk_extension` int(10) unsigned NOT NULL, `name` varchar(50) NOT NULL, `strategy` varchar(20) NOT NULL, `ringinuse` tinyint(1) NOT NULL DEFAULT '0', `moh_fk_group` int(10) unsigned NOT NULL, `playmoh` tinyint(1) NOT NULL DEFAULT '1', `nexttimeout` smallint(6) NOT NULL, `membertimeout` smallint(6) NOT NULL, `wrapuptime` smallint(6) NOT NULL, `announcementfrequency` int(11) NOT NULL DEFAULT '0', `announceposition` tinyint(1) NOT NULL DEFAULT '1', `announceholdtime` tinyint(1) NOT NULL DEFAULT '1', `timeout` int(11) NOT NULL DEFAULT '0', `timeout_extension` varchar(20) NOT NULL, `joinempty_extension` varchar(20) NOT NULL, `maxlen` int(11) NOT NULL DEFAULT '0', `maxlen_extension` varchar(20) NOT NULL, `cycles` int(10) unsigned NOT NULL DEFAULT '0', `cycles_extension` varchar(20) NOT NULL, `operator_extension` varchar(20) NOT NULL, `snd_language` varchar(2) NOT NULL, `snd_announce_filename` varchar(255) NOT NULL, `snd_announce_language` char(2) NOT NULL, `snd_youarenext_filename` varchar(255) NOT NULL, `snd_thereare_filename` varchar(255) NOT NULL, `snd_callswaiting_filename` varchar(255) NOT NULL, `snd_holdtime_filename` varchar(255) NOT NULL, `snd_minutes_filename` varchar(255) NOT NULL, `snd_thankyou_filename` varchar(255) NOT NULL, `ackcall` tinyint(4) NOT NULL, `missedcallsallowed` smallint(6) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_queues` -- LOCK TABLES `ext_queues` WRITE; /*!40000 ALTER TABLE `ext_queues` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_queues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_simpleconf` -- DROP TABLE IF EXISTS `ext_simpleconf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_simpleconf` ( `pk_extension` int(255) NOT NULL, `playsound` int(1) NOT NULL, `playmoh` int(1) NOT NULL, `transfer_extexnsion` varchar(5) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_simpleconf` -- LOCK TABLES `ext_simpleconf` WRITE; /*!40000 ALTER TABLE `ext_simpleconf` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_simpleconf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_sipphones` -- DROP TABLE IF EXISTS `ext_sipphones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_sipphones` ( `pk_extension` int(10) unsigned NOT NULL, `firstname` varchar(30) NOT NULL, `firstname_editable` tinyint(1) NOT NULL, `lastname` varchar(30) NOT NULL, `lastname_editable` tinyint(1) NOT NULL, `password` varchar(10) NOT NULL, `password_editable` tinyint(1) NOT NULL, `phonepassword` varchar(50) NOT NULL, `fk_nattype` int(10) unsigned NOT NULL, `fk_dtmfmode` int(10) unsigned NOT NULL, `email` varchar(50) NOT NULL, `email_editable` tinyint(1) NOT NULL, PRIMARY KEY (`pk_extension`), KEY `FK_NATType` (`fk_nattype`), KEY `FK_DTMFMode` (`fk_dtmfmode`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_sipphones` -- LOCK TABLES `ext_sipphones` WRITE; /*!40000 ALTER TABLE `ext_sipphones` DISABLE KEYS */; INSERT INTO `ext_sipphones` VALUES (212,'Extension',1,'1001',1,'1234',1,'1234',2,1,'',1),(213,'Extension',1,'1002',1,'1234',1,'1234',2,1,'',1),(214,'Extension',1,'1003',1,'1234',1,'',2,1,'',1),(215,'Extension',1,'1004',1,'1234',1,'',2,1,'',1),(216,'Extension',1,'1005',1,'1234',1,'',2,1,'',1); /*!40000 ALTER TABLE `ext_sipphones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_sipphones_codecs` -- DROP TABLE IF EXISTS `ext_sipphones_codecs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_sipphones_codecs` ( `fk_extension` int(10) unsigned NOT NULL, `fk_codec` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`,`fk_codec`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_sipphones_codecs` -- LOCK TABLES `ext_sipphones_codecs` WRITE; /*!40000 ALTER TABLE `ext_sipphones_codecs` DISABLE KEYS */; INSERT INTO `ext_sipphones_codecs` VALUES (212,1),(212,2),(212,9),(213,1),(213,2),(213,9),(214,1),(214,2),(214,9),(215,1),(215,2),(215,9),(216,1),(216,2),(216,9); /*!40000 ALTER TABLE `ext_sipphones_codecs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_sipphones_features` -- DROP TABLE IF EXISTS `ext_sipphones_features`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_sipphones_features` ( `fk_extension` int(10) unsigned NOT NULL, `fk_feature` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`,`fk_feature`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_sipphones_features` -- LOCK TABLES `ext_sipphones_features` WRITE; /*!40000 ALTER TABLE `ext_sipphones_features` DISABLE KEYS */; INSERT INTO `ext_sipphones_features` VALUES (212,1),(212,2),(212,3),(213,1),(213,2),(213,3),(213,4),(213,5),(213,6),(214,1),(214,2),(214,3),(214,4),(214,5),(214,6),(215,1),(215,2),(215,3),(215,4),(215,5),(215,6),(216,1),(216,2),(216,3),(216,4),(216,5),(216,6); /*!40000 ALTER TABLE `ext_sipphones_features` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_sipphones_status` -- DROP TABLE IF EXISTS `ext_sipphones_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_sipphones_status` ( `extension` varchar(10) NOT NULL, `useragent` varchar(255) NOT NULL, `ipaddress` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, PRIMARY KEY (`extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_sipphones_status` -- LOCK TABLES `ext_sipphones_status` WRITE; /*!40000 ALTER TABLE `ext_sipphones_status` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_sipphones_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_virtual` -- DROP TABLE IF EXISTS `ext_virtual`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_virtual` ( `pk_extension` int(10) unsigned NOT NULL, `firstname` varchar(30) NOT NULL, `firstname_editable` tinyint(1) NOT NULL, `lastname` varchar(30) NOT NULL, `lastname_editable` tinyint(1) NOT NULL, `password` varchar(10) NOT NULL, `password_editable` tinyint(1) NOT NULL, `phonepassword` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `email_editable` tinyint(1) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_virtual` -- LOCK TABLES `ext_virtual` WRITE; /*!40000 ALTER TABLE `ext_virtual` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_virtual` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_virtual_features` -- DROP TABLE IF EXISTS `ext_virtual_features`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_virtual_features` ( `fk_extension` int(10) unsigned NOT NULL, `fk_feature` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`,`fk_feature`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_virtual_features` -- LOCK TABLES `ext_virtual_features` WRITE; /*!40000 ALTER TABLE `ext_virtual_features` DISABLE KEYS */; /*!40000 ALTER TABLE `ext_virtual_features` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ext_voicemail` -- DROP TABLE IF EXISTS `ext_voicemail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ext_voicemail` ( `pk_extension` int(10) unsigned NOT NULL, `requirepassword` tinyint(1) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ext_voicemail` -- LOCK TABLES `ext_voicemail` WRITE; /*!40000 ALTER TABLE `ext_voicemail` DISABLE KEYS */; INSERT INTO `ext_voicemail` VALUES (217,0); /*!40000 ALTER TABLE `ext_voicemail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extension_groups` -- DROP TABLE IF EXISTS `extension_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `extension_groups` ( `fk_extension` int(10) unsigned NOT NULL, `fk_group` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`,`fk_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `extension_groups` -- LOCK TABLES `extension_groups` WRITE; /*!40000 ALTER TABLE `extension_groups` DISABLE KEYS */; INSERT INTO `extension_groups` VALUES (212,76),(213,76),(214,76),(215,76),(216,76); /*!40000 ALTER TABLE `extension_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extension_outroutes` -- DROP TABLE IF EXISTS `extension_outroutes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `extension_outroutes` ( `fk_extension` int(10) unsigned NOT NULL, `fk_outroute` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`,`fk_outroute`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `extension_outroutes` -- LOCK TABLES `extension_outroutes` WRITE; /*!40000 ALTER TABLE `extension_outroutes` DISABLE KEYS */; INSERT INTO `extension_outroutes` VALUES (210,1),(211,1),(212,1),(213,1),(214,1),(215,1),(216,1); /*!40000 ALTER TABLE `extension_outroutes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `extensions` -- DROP TABLE IF EXISTS `extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `extensions` ( `pk_extension` int(10) unsigned NOT NULL AUTO_INCREMENT, `extension` varchar(10) NOT NULL, `type` varchar(20) NOT NULL, `feature` tinyint(1) NOT NULL DEFAULT '0', `ivrdial` tinyint(1) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM AUTO_INCREMENT=220 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `extensions` -- LOCK TABLES `extensions` WRITE; /*!40000 ALTER TABLE `extensions` DISABLE KEYS */; INSERT INTO `extensions` VALUES (213,'1002','sipphone',0,1,'2010-03-26 22:39:23'),(212,'1001','sipphone',0,1,'2010-03-26 22:38:40'),(214,'1003','sipphone',0,1,'2010-09-27 14:50:57'),(215,'1004','sipphone',0,1,'2010-09-27 14:53:15'),(216,'1005','sipphone',0,1,'2010-09-27 14:53:37'),(217,'555','voicemail',0,0,'2010-09-27 14:53:50'); /*!40000 ALTER TABLE `extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_callmonitor` -- DROP TABLE IF EXISTS `fc_callmonitor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_callmonitor` ( `pk_extension` int(10) unsigned NOT NULL, `whisper` tinyint(1) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_callmonitor` -- LOCK TABLES `fc_callmonitor` WRITE; /*!40000 ALTER TABLE `fc_callmonitor` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_callmonitor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_callmonitor_admins` -- DROP TABLE IF EXISTS `fc_callmonitor_admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_callmonitor_admins` ( `fk_extension` int(255) NOT NULL, `connectionid` char(13) NOT NULL, `fk_ext_admin` int(255) NOT NULL, `fk_ext_group` int(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_callmonitor_admins` -- LOCK TABLES `fc_callmonitor_admins` WRITE; /*!40000 ALTER TABLE `fc_callmonitor_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_callmonitor_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_callmonitor_members` -- DROP TABLE IF EXISTS `fc_callmonitor_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_callmonitor_members` ( `fk_extension` int(255) NOT NULL, `connectionid` char(13) NOT NULL, `fk_extension_member` int(255) NOT NULL, `fk_group_member` int(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_callmonitor_members` -- LOCK TABLES `fc_callmonitor_members` WRITE; /*!40000 ALTER TABLE `fc_callmonitor_members` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_callmonitor_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_directedpickup` -- DROP TABLE IF EXISTS `fc_directedpickup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_directedpickup` ( `fk_extension` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_directedpickup` -- LOCK TABLES `fc_directedpickup` WRITE; /*!40000 ALTER TABLE `fc_directedpickup` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_directedpickup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_directedpickup_admins` -- DROP TABLE IF EXISTS `fc_directedpickup_admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_directedpickup_admins` ( `fk_extension` int(255) NOT NULL, `connectionid` char(13) NOT NULL, `fk_extension_admin` int(255) NOT NULL, `fk_group_admin` int(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_directedpickup_admins` -- LOCK TABLES `fc_directedpickup_admins` WRITE; /*!40000 ALTER TABLE `fc_directedpickup_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_directedpickup_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_directedpickup_members` -- DROP TABLE IF EXISTS `fc_directedpickup_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_directedpickup_members` ( `fk_extension` int(255) NOT NULL, `connectionid` char(13) NOT NULL, `fk_extension_member` int(255) NOT NULL, `fk_group_member` int(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_directedpickup_members` -- LOCK TABLES `fc_directedpickup_members` WRITE; /*!40000 ALTER TABLE `fc_directedpickup_members` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_directedpickup_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_intercom` -- DROP TABLE IF EXISTS `fc_intercom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_intercom` ( `pk_extension` int(255) NOT NULL, `header` varchar(255) NOT NULL, `timeout` int(3) NOT NULL, `twoway` int(1) NOT NULL, `playsound` int(1) NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_intercom` -- LOCK TABLES `fc_intercom` WRITE; /*!40000 ALTER TABLE `fc_intercom` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_intercom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_intercom_admins` -- DROP TABLE IF EXISTS `fc_intercom_admins`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_intercom_admins` ( `fk_extension` int(255) NOT NULL, `connectionid` char(13) NOT NULL, `fk_extension_admin` int(255) NOT NULL, `fk_group_admin` int(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_intercom_admins` -- LOCK TABLES `fc_intercom_admins` WRITE; /*!40000 ALTER TABLE `fc_intercom_admins` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_intercom_admins` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_intercom_members` -- DROP TABLE IF EXISTS `fc_intercom_members`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_intercom_members` ( `fk_extension` int(255) NOT NULL, `connectionid` char(13) NOT NULL, `fk_extension_member` int(255) NOT NULL, `fk_group_member` int(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_intercom_members` -- LOCK TABLES `fc_intercom_members` WRITE; /*!40000 ALTER TABLE `fc_intercom_members` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_intercom_members` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fc_voicemail` -- DROP TABLE IF EXISTS `fc_voicemail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fc_voicemail` ( `pk_extension` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fc_voicemail` -- LOCK TABLES `fc_voicemail` WRITE; /*!40000 ALTER TABLE `fc_voicemail` DISABLE KEYS */; /*!40000 ALTER TABLE `fc_voicemail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `features` -- DROP TABLE IF EXISTS `features`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `features` ( `pk_feature` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `shortname` varchar(50) NOT NULL, `recomended` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`pk_feature`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `features` -- LOCK TABLES `features` WRITE; /*!40000 ALTER TABLE `features` DISABLE KEYS */; INSERT INTO `features` VALUES (1,'Voicemail','voicemail',1),(2,'Block Calls','block_calls',1),(3,'Forward Calls','forward_calls',1),(4,'Voicemail Forwarding ','voicemail_forwarding',0),(5,'Web Tool Access','web_tool_access',1),(6,'Unpark Calls','unpark_calls',0); /*!40000 ALTER TABLE `features` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `groups` -- DROP TABLE IF EXISTS `groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `groups` ( `pk_group` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_group`) ) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `groups` -- LOCK TABLES `groups` WRITE; /*!40000 ALTER TABLE `groups` DISABLE KEYS */; INSERT INTO `groups` VALUES (76,'All Available Phones','2010-03-26 22:05:30'); /*!40000 ALTER TABLE `groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hwmonitor` -- DROP TABLE IF EXISTS `hwmonitor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hwmonitor` ( `memory_used` varchar(50) NOT NULL, `swap_used` varchar(50) NOT NULL, `swap_used_treshold` varchar(50) NOT NULL, `disk_total` varchar(50) NOT NULL, `disk_used` varchar(50) NOT NULL, `disk_free` varchar(50) NOT NULL, `disk_used_treshold` varchar(50) NOT NULL, `loadavg` float NOT NULL, `loadavg_treshold` float NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `disk_used_precent` varchar(50) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hwmonitor` -- LOCK TABLES `hwmonitor` WRITE; /*!40000 ALTER TABLE `hwmonitor` DISABLE KEYS */; INSERT INTO `hwmonitor` VALUES ('81','0','30','28G','4.6G','22G','90',0.23,5,'2009-11-16 13:56:59','18'),('91','0','30','19G','1.2G','17G','90',0.22,5,'2010-09-27 16:09:05','7'),('95','0','30','19G','1.2G','17G','90',0.39,5,'2010-09-27 16:10:01','7'),('94','0','30','19G','1.2G','17G','90',0.9,5,'2010-09-27 16:15:01','7'),('97','0','30','19G','1.2G','17G','90',1.17,5,'2010-09-27 16:20:02','7'); /*!40000 ALTER TABLE `hwmonitor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `iaxtrunk_codecs` -- DROP TABLE IF EXISTS `iaxtrunk_codecs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `iaxtrunk_codecs` ( `fk_iaxtrunk` int(10) unsigned NOT NULL, `fk_codec` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_iaxtrunk`,`fk_codec`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `iaxtrunk_codecs` -- LOCK TABLES `iaxtrunk_codecs` WRITE; /*!40000 ALTER TABLE `iaxtrunk_codecs` DISABLE KEYS */; /*!40000 ALTER TABLE `iaxtrunk_codecs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `iaxtrunk_outroutes` -- DROP TABLE IF EXISTS `iaxtrunk_outroutes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `iaxtrunk_outroutes` ( `fk_iaxtrunk` int(10) unsigned NOT NULL, `fk_outroute` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_iaxtrunk`,`fk_outroute`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `iaxtrunk_outroutes` -- LOCK TABLES `iaxtrunk_outroutes` WRITE; /*!40000 ALTER TABLE `iaxtrunk_outroutes` DISABLE KEYS */; /*!40000 ALTER TABLE `iaxtrunk_outroutes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `iaxtrunk_statuses` -- DROP TABLE IF EXISTS `iaxtrunk_statuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `iaxtrunk_statuses` ( `fk_iaxtrunk` int(10) unsigned NOT NULL, `latency` varchar(10) NOT NULL, `status` varchar(50) NOT NULL, PRIMARY KEY (`fk_iaxtrunk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `iaxtrunk_statuses` -- LOCK TABLES `iaxtrunk_statuses` WRITE; /*!40000 ALTER TABLE `iaxtrunk_statuses` DISABLE KEYS */; /*!40000 ALTER TABLE `iaxtrunk_statuses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `iaxtrunks` -- DROP TABLE IF EXISTS `iaxtrunks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `iaxtrunks` ( `pk_iaxtrunk` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL, `label` varchar(32) NOT NULL, `accountid` varchar(32) NOT NULL, `password` varchar(32) NOT NULL, `host` varchar(64) NOT NULL, `callback_extension` varchar(15) DEFAULT NULL, `authtype` varchar(20) NOT NULL, `rsa_key` varchar(255) NOT NULL, `need_register` varchar(10) NOT NULL DEFAULT 'Provider', `is_starfishpbx` tinyint(1) NOT NULL, `trustusers` tinyint(1) NOT NULL, `jabberhostname` varchar(50) NOT NULL, `cid_name` varchar(32) DEFAULT NULL, `cid_number` varchar(32) DEFAULT NULL, `use_inroutes` tinyint(1) NOT NULL DEFAULT '1', `outhost_one` varchar(50) NOT NULL, `outhost_two` varchar(50) NOT NULL, `outhost_three` varchar(50) NOT NULL, `incoming_password` varchar(100) NOT NULL, `qualify` tinyint(1) NOT NULL DEFAULT '0', `jitterbuffer` tinyint(1) NOT NULL, `trunking` tinyint(1) NOT NULL, `outgoing_use_rsa` tinyint(1) NOT NULL, PRIMARY KEY (`pk_iaxtrunk`) ) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `iaxtrunks` -- LOCK TABLES `iaxtrunks` WRITE; /*!40000 ALTER TABLE `iaxtrunks` DISABLE KEYS */; /*!40000 ALTER TABLE `iaxtrunks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `inroutes` -- DROP TABLE IF EXISTS `inroutes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inroutes` ( `pk_inroute` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` enum('single','multiple') NOT NULL DEFAULT 'single', `provider_type` varchar(10) NOT NULL DEFAULT 'ANY', `provider_pk` int(10) unsigned NOT NULL, `match_begin` varchar(20) NOT NULL, `match_end` varchar(20) DEFAULT NULL, `match_trimfront` smallint(6) DEFAULT '0', `match_add` int(11) DEFAULT '0', `transfer_extension` varchar(20) DEFAULT NULL, `priority` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_inroute`) ) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `inroutes` -- LOCK TABLES `inroutes` WRITE; /*!40000 ALTER TABLE `inroutes` DISABLE KEYS */; /*!40000 ALTER TABLE `inroutes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `inrules` -- DROP TABLE IF EXISTS `inrules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inrules` ( `pk_inrule` int(10) unsigned NOT NULL AUTO_INCREMENT, `priority` int(11) NOT NULL, `type` enum('transfer','block') NOT NULL, `match_type` enum('prefix','phone') NOT NULL, `match_number` varchar(20) NOT NULL, `transfer_extension` varchar(10) NOT NULL, `block_method` enum('busy','congestion','hangup') NOT NULL, `fk_timeframe` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_inrule`) ) ENGINE=MyISAM AUTO_INCREMENT=95 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `inrules` -- LOCK TABLES `inrules` WRITE; /*!40000 ALTER TABLE `inrules` DISABLE KEYS */; /*!40000 ALTER TABLE `inrules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ivr_action_params` -- DROP TABLE IF EXISTS `ivr_action_params`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ivr_action_params` ( `pk_param` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_action` int(10) unsigned NOT NULL, `name` varchar(30) NOT NULL, `value` varchar(255) NOT NULL, `variable` varchar(50) NOT NULL, PRIMARY KEY (`pk_param`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ivr_action_params` -- LOCK TABLES `ivr_action_params` WRITE; /*!40000 ALTER TABLE `ivr_action_params` DISABLE KEYS */; /*!40000 ALTER TABLE `ivr_action_params` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ivr_actions` -- DROP TABLE IF EXISTS `ivr_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ivr_actions` ( `pk_action` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_menu` int(10) unsigned NOT NULL, `order` int(10) unsigned NOT NULL, `type` varchar(100) NOT NULL, PRIMARY KEY (`pk_action`) ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ivr_actions` -- LOCK TABLES `ivr_actions` WRITE; /*!40000 ALTER TABLE `ivr_actions` DISABLE KEYS */; /*!40000 ALTER TABLE `ivr_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ivr_menus` -- DROP TABLE IF EXISTS `ivr_menus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ivr_menus` ( `pk_menu` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `extensiondialing` tinyint(1) NOT NULL DEFAULT '0', `fk_soundlanguage_invalid` int(10) unsigned NOT NULL, `fk_soundentry_invalid` int(10) unsigned NOT NULL, `fk_menu_invalid` int(10) unsigned NOT NULL, `fk_action_invalid` int(10) unsigned NOT NULL, `timeout` smallint(5) unsigned NOT NULL, `fk_soundlanguage_timeout` int(10) unsigned NOT NULL, `fk_soundentry_timeout` int(10) unsigned NOT NULL, `fk_menu_timeout` int(10) unsigned NOT NULL, `fk_action_timeout` int(10) unsigned NOT NULL, `retry` smallint(5) unsigned NOT NULL, `fk_soundlanguage_retry` int(10) unsigned NOT NULL, `fk_soundentry_retry` int(10) unsigned NOT NULL, `fk_menu_retry` int(10) unsigned NOT NULL, `fk_action_retry` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_menu`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ivr_menus` -- LOCK TABLES `ivr_menus` WRITE; /*!40000 ALTER TABLE `ivr_menus` DISABLE KEYS */; /*!40000 ALTER TABLE `ivr_menus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ivr_options` -- DROP TABLE IF EXISTS `ivr_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ivr_options` ( `pk_option` int(10) unsigned NOT NULL AUTO_INCREMENT, `key` smallint(5) unsigned NOT NULL, `fk_menu` int(10) unsigned NOT NULL, `fk_menu_entry` int(10) unsigned NOT NULL, `fk_action_entry` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_option`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ivr_options` -- LOCK TABLES `ivr_options` WRITE; /*!40000 ALTER TABLE `ivr_options` DISABLE KEYS */; /*!40000 ALTER TABLE `ivr_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `moh_files` -- DROP TABLE IF EXISTS `moh_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `moh_files` ( `pk_file` int(10) unsigned NOT NULL AUTO_INCREMENT, `filename` varchar(255) NOT NULL, `filetype` varchar(10) NOT NULL, `fk_group` int(10) unsigned NOT NULL, `playorder` int(10) unsigned NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_file`) ) ENGINE=MyISAM AUTO_INCREMENT=50 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `moh_files` -- LOCK TABLES `moh_files` WRITE; /*!40000 ALTER TABLE `moh_files` DISABLE KEYS */; /*!40000 ALTER TABLE `moh_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `moh_groups` -- DROP TABLE IF EXISTS `moh_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `moh_groups` ( `pk_group` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(15) NOT NULL, `description` text NOT NULL, `volume` int(10) unsigned NOT NULL DEFAULT '100', `is_ordered` tinyint(1) NOT NULL DEFAULT '0', `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `is_system` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`pk_group`) ) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `moh_groups` -- LOCK TABLES `moh_groups` WRITE; /*!40000 ALTER TABLE `moh_groups` DISABLE KEYS */; INSERT INTO `moh_groups` VALUES (1,'default','Default music files for use as music on hold. Add and remove files to customize your on hold playlist.',100,0,'2009-03-19 19:08:26',1); /*!40000 ALTER TABLE `moh_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nattypes` -- DROP TABLE IF EXISTS `nattypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `nattypes` ( `pk_nattype` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `description` varchar(100) NOT NULL, PRIMARY KEY (`pk_nattype`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nattypes` -- LOCK TABLES `nattypes` WRITE; /*!40000 ALTER TABLE `nattypes` DISABLE KEYS */; INSERT INTO `nattypes` VALUES (1,'yes','Always'),(2,'no','No'),(3,'never','Never'),(4,'router','Route'); /*!40000 ALTER TABLE `nattypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `outroutes` -- DROP TABLE IF EXISTS `outroutes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `outroutes` ( `pk_outroute` int(10) unsigned NOT NULL AUTO_INCREMENT, `priority` int(10) unsigned NOT NULL, `name` varchar(100) NOT NULL, `is_final` tinyint(1) NOT NULL, `match_begin` varchar(30) NOT NULL, `match_minlen` smallint(5) unsigned NOT NULL DEFAULT '0', `match_maxlen` smallint(5) unsigned NOT NULL DEFAULT '0', `match_trimfront` smallint(5) unsigned NOT NULL DEFAULT '0', `match_prepend` varchar(30) NOT NULL, `provider_type` varchar(50) NOT NULL, `provider_pk` int(10) unsigned NOT NULL, `protected` tinyint(1) NOT NULL, PRIMARY KEY (`pk_outroute`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `outroutes` -- LOCK TABLES `outroutes` WRITE; /*!40000 ALTER TABLE `outroutes` DISABLE KEYS */; INSERT INTO `outroutes` VALUES (1,1,'Internal',0,'',3,5,0,'','internal',0,1); /*!40000 ALTER TABLE `outroutes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phone_extras` -- DROP TABLE IF EXISTS `phone_extras`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `phone_extras` ( `fk_phone` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `phone_extras` -- LOCK TABLES `phone_extras` WRITE; /*!40000 ALTER TABLE `phone_extras` DISABLE KEYS */; INSERT INTO `phone_extras` VALUES (6,'VoicemailExtension','500'),(6,'Extension_8','none'),(6,'Extension_7','none'),(6,'Extension_5','none'),(7,'Ringer_7','Ringer3'),(7,'Extension_7','1003'),(7,'Ringer_6','Ringer1'),(7,'Extension_6','none'),(7,'Ringer_5','Ringer1'),(7,'Extension_5','manual'),(7,'Ringer_4','Ringer1'),(7,'Extension_4','manual'),(7,'Ringer_3','Ringer1'),(7,'Extension_3','manual'),(7,'Ringer_2','Ringer1'),(7,'Extension_2','manual'),(7,'ActiveLine','1'),(7,'Ringer_1','Ringer1'),(7,'Extension_1','manual'),(6,'Extension_6','none'),(6,'Extension_4','none'),(6,'Extension_1','1001'),(6,'Extension_2','none'),(6,'Extension_3','none'),(12,'Extension_4','none'),(12,'Extension_3','none'),(12,'Extension_2','none'),(12,'Extension_1','1002'); /*!40000 ALTER TABLE `phone_extras` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phone_models` -- DROP TABLE IF EXISTS `phone_models`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `phone_models` ( `pk_model` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_vendor` int(10) unsigned NOT NULL, `name` varchar(100) NOT NULL, `template` varchar(255) NOT NULL, PRIMARY KEY (`pk_model`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `phone_models` -- LOCK TABLES `phone_models` WRITE; /*!40000 ALTER TABLE `phone_models` DISABLE KEYS */; INSERT INTO `phone_models` VALUES (1,2,'Snom 200 (Firmware V3 / SIP)','Snom_Firmware_V3_SIP'),(2,2,'Snom 300 (Firmware V3 / SIP)','Snom_Firmware_V3_SIP'),(3,2,'Snom 320 (Firmware V3 / SIP)','Snom_Firmware_V3_SIP'),(4,2,'Snom 360 (Firmware V3 / SIP)','Snom_Firmware_V3_SIP'),(5,2,'Snom 370 (Firmware V3 / SIP)','Snom_Firmware_V3_SIP'),(6,1,'Cisco 7970 (SIP Firmware)','Cisco_7970_SIP'),(7,3,'Thomson ST2030 (SIP Firmware)','Thomson_ST2030_SIP'); /*!40000 ALTER TABLE `phone_models` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phone_vendors` -- DROP TABLE IF EXISTS `phone_vendors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `phone_vendors` ( `pk_vendor` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, PRIMARY KEY (`pk_vendor`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `phone_vendors` -- LOCK TABLES `phone_vendors` WRITE; /*!40000 ALTER TABLE `phone_vendors` DISABLE KEYS */; INSERT INTO `phone_vendors` VALUES (1,'Cisco'),(2,'Snom'),(3,'Thomson'); /*!40000 ALTER TABLE `phone_vendors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phones` -- DROP TABLE IF EXISTS `phones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `phones` ( `pk_phone` int(11) unsigned NOT NULL AUTO_INCREMENT, `fk_model` int(11) NOT NULL, `hardwareaddr` varchar(50) NOT NULL, `network` varchar(50) NOT NULL, `lastmodified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`pk_phone`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `phones` -- LOCK TABLES `phones` WRITE; /*!40000 ALTER TABLE `phones` DISABLE KEYS */; INSERT INTO `phones` VALUES (6,6,'00:12:00:14:4D:FB','eth0','2009-09-15 12:10:02'),(7,1,'00:04:13:10:0b:f0','eth0','2009-09-16 14:35:15'),(12,7,'00:1F:9F:84:28:54','eth0','2009-09-17 13:34:59'); /*!40000 ALTER TABLE `phones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordinglog` -- DROP TABLE IF EXISTS `recordinglog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `recordinglog` ( `pk_recordinglog` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_rule` int(10) unsigned NOT NULL, `fk_calllog` varchar(50) NOT NULL, `label` varchar(100) NOT NULL, `recordedid` int(10) unsigned NOT NULL, `recordedtype` varchar(50) NOT NULL, `recordedname` varchar(100) NOT NULL, `recordednumber` varchar(100) NOT NULL, `startdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `callerid` int(10) unsigned NOT NULL, `callertype` varchar(50) NOT NULL, `callername` varchar(100) NOT NULL, `callernumber` varchar(100) NOT NULL, `calledid` int(10) unsigned NOT NULL, `calledtype` varchar(50) NOT NULL, `calledname` varchar(100) NOT NULL, `callednumber` varchar(100) NOT NULL, `duration` int(10) unsigned NOT NULL, `size` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_recordinglog`), KEY `StartDate` (`startdate`), KEY `FK_Rule` (`fk_rule`), KEY `FK_CallLog` (`fk_calllog`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recordinglog` -- LOCK TABLES `recordinglog` WRITE; /*!40000 ALTER TABLE `recordinglog` DISABLE KEYS */; /*!40000 ALTER TABLE `recordinglog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordingrules` -- DROP TABLE IF EXISTS `recordingrules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `recordingrules` ( `pk_rule` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(25) NOT NULL, `call_incoming` tinyint(1) NOT NULL DEFAULT '0', `call_outgoing` tinyint(1) NOT NULL DEFAULT '0', `call_queue` tinyint(1) NOT NULL DEFAULT '0', `endcount` int(10) unsigned DEFAULT NULL, `enddate` timestamp NULL DEFAULT NULL, `keepcount` int(10) unsigned DEFAULT NULL, `keepsize` int(10) unsigned DEFAULT NULL, `backup` tinyint(1) NOT NULL, `minlength` int(11) DEFAULT NULL, `label` varchar(50) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_rule`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recordingrules` -- LOCK TABLES `recordingrules` WRITE; /*!40000 ALTER TABLE `recordingrules` DISABLE KEYS */; /*!40000 ALTER TABLE `recordingrules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordingrules_extensions` -- DROP TABLE IF EXISTS `recordingrules_extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `recordingrules_extensions` ( `fk_rule` int(10) unsigned NOT NULL, `fk_extension` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_rule`,`fk_extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recordingrules_extensions` -- LOCK TABLES `recordingrules_extensions` WRITE; /*!40000 ALTER TABLE `recordingrules_extensions` DISABLE KEYS */; /*!40000 ALTER TABLE `recordingrules_extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordingrules_groups` -- DROP TABLE IF EXISTS `recordingrules_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `recordingrules_groups` ( `fk_rule` int(10) unsigned NOT NULL, `fk_group` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_rule`,`fk_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recordingrules_groups` -- LOCK TABLES `recordingrules_groups` WRITE; /*!40000 ALTER TABLE `recordingrules_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `recordingrules_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `settings` ( `name` varchar(40) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES ('Agent_AckCall','0'),('Agent_MissedCalls','5'),('Voicemail_OperatorExtension',''),('Voicemail_From','voicemail@starfish-pbx'),('Voicemail_AllowLogin','1'),('Voicemail_SMTP_Server',''),('Voicemail_SMTP_User',''),('Voicemail_SMTP_Pass',''),('Voicemail_EmailTemplate_Original','Dear %VM_NAME%:\r\n\r\n Just wanted to let you know you just received a %VM_DUR% long message (number %VM_MSGNUM%)\r\nin mailbox %VM_MAILBOX% from %VM_CALLERID%, on %VM_DATE% so you might \r\nwant to check it when you get a chance.\r\n\r\nYou can check your message via the phone or use the links below to download your message:\r\n\r\nUse the link below to just download the voicemail.\r\n*Note* This does not mark it as read in the system.\r\n%DOWNLOAD_LINK%\r\n\r\nUse this link below to download the voicemail and mark it as read.\r\n*Note* This will move this voicemail message to your Old folder and this link will no longer work.\r\n%DOWNLOAD_LINK_AND_MARK_READ%\r\n\r\nUse this link below to download the voicemail and delete it.\r\n*Note* This will completely remove the voicemail from the system and this link will no longer work.\r\n%DOWNLOAD_LINK_AND_MARK_DELETED%\r\n\r\n\r\nThanks!'),('Voicemail_UseExternal','0'),('Voicemail_EmailTemplate','Dear %VM_NAME%:\r\n\r\n Just wanted to let you know you just received a %VM_DUR% long message (number %VM_MSGNUM%)\r\nin mailbox %VM_MAILBOX% from %VM_CALLERID%, on %VM_DATE% so you might \r\nwant to check it when you get a chance.\r\n\r\nYou can check your message via the phone or use the links below to download your message:\r\n\r\nUse the link below to just download the voicemail.\r\n*Note* This does not mark it as read in the system.\r\n%DOWNLOAD_LINK%\r\n\r\nUse this link below to download the voicemail and mark it as read.\r\n*Note* This will move this voicemail message to your Old folder and this link will no longer work.\r\n%DOWNLOAD_LINK_AND_MARK_READ%\r\n\r\nUse this link below to download the voicemail and delete it.\r\n*Note* This will completely remove the voicemail from the system and this link will no longer work.\r\n%DOWNLOAD_LINK_AND_MARK_DELETED%\r\n\r\n\r\nThanks!'),('Voicemail_PK_SipProvider','12'),('Network_ExternalAddress','89.120.4.153'),('Network_SSL_Certificate',''),('Network_RSA_Key',''),('Network_DNS','10.0.0.1;;'),('network_hostname',''),('Network_UseNAT','1'),('NTPServer','ntp.ubuntu.com'),('Current_TimeZone','Europe/Bucharest'),('DisableNTP',''),('Network_Additional_LAN','10.8.0.0/24;10.1.0.0/24'),('Network_Intermedial_Certificate',''),('network_tos_audio','cs0'),('network_tos_video','cs0'),('Network_Interfaces_LAN','10.0.0.10/255.255.255.0'),('RTP_PortStart','10000'),('RTP_PortEnd','20000'),('network_gateway','109.74.193.1'),('network_dns1','109.74.193.20'),('network_dns2','109.74.194.20'),('network_dns3','109.74.192.20'),('network_allownat','0'),('network_sslcert',''),('network_rsakey',''),('network_cacert',''),('network_extralan',''); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `siptrunk_codecs` -- DROP TABLE IF EXISTS `siptrunk_codecs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `siptrunk_codecs` ( `fk_siptrunk` int(10) unsigned NOT NULL, `fk_codec` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_siptrunk`,`fk_codec`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `siptrunk_codecs` -- LOCK TABLES `siptrunk_codecs` WRITE; /*!40000 ALTER TABLE `siptrunk_codecs` DISABLE KEYS */; /*!40000 ALTER TABLE `siptrunk_codecs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `siptrunk_hosts` -- DROP TABLE IF EXISTS `siptrunk_hosts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `siptrunk_hosts` ( `fk_siptrunk` int(10) unsigned NOT NULL, `host` varchar(64) NOT NULL, PRIMARY KEY (`fk_siptrunk`,`host`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `siptrunk_hosts` -- LOCK TABLES `siptrunk_hosts` WRITE; /*!40000 ALTER TABLE `siptrunk_hosts` DISABLE KEYS */; /*!40000 ALTER TABLE `siptrunk_hosts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `siptrunk_outroutes` -- DROP TABLE IF EXISTS `siptrunk_outroutes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `siptrunk_outroutes` ( `fk_siptrunk` int(10) unsigned NOT NULL, `fk_outroute` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_siptrunk`,`fk_outroute`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `siptrunk_outroutes` -- LOCK TABLES `siptrunk_outroutes` WRITE; /*!40000 ALTER TABLE `siptrunk_outroutes` DISABLE KEYS */; /*!40000 ALTER TABLE `siptrunk_outroutes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `siptrunk_statuses` -- DROP TABLE IF EXISTS `siptrunk_statuses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `siptrunk_statuses` ( `fk_siptrunk` int(10) unsigned NOT NULL, `latency` varchar(10) NOT NULL, `status` varchar(50) NOT NULL, PRIMARY KEY (`fk_siptrunk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `siptrunk_statuses` -- LOCK TABLES `siptrunk_statuses` WRITE; /*!40000 ALTER TABLE `siptrunk_statuses` DISABLE KEYS */; /*!40000 ALTER TABLE `siptrunk_statuses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `siptrunks` -- DROP TABLE IF EXISTS `siptrunks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `siptrunks` ( `pk_siptrunk` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL, `accountid` varchar(32) NOT NULL, `password` varchar(32) NOT NULL, `host` varchar(64) NOT NULL, `callback_extension` varchar(15) DEFAULT NULL, `fax_extension` varchar(15) NOT NULL, `fk_dtmfmode` int(10) unsigned NOT NULL, `need_register` tinyint(1) NOT NULL DEFAULT '1', `cid_changeable` tinyint(1) NOT NULL DEFAULT '0', `cid_name` varchar(32) DEFAULT NULL, `cid_number` varchar(32) DEFAULT NULL, `cid_method` varchar(4) NOT NULL DEFAULT 'from', `port` int(11) NOT NULL DEFAULT '5060', `sipexpiry` int(11) NOT NULL DEFAULT '120', `proxy` varchar(64) DEFAULT NULL, `authuser` varchar(32) DEFAULT NULL, `alwaystrust` tinyint(1) NOT NULL DEFAULT '1', `progressinband` tinyint(1) NOT NULL DEFAULT '0', `use_inroutes` tinyint(1) NOT NULL DEFAULT '1', `qualify` tinyint(1) NOT NULL DEFAULT '0', `usereqphone` tinyint(1) NOT NULL DEFAULT '0', `localaddrfrom` tinyint(1) NOT NULL DEFAULT '0', `dtmfdial` tinyint(1) NOT NULL DEFAULT '0', `is_starfishpbx` tinyint(1) NOT NULL, `trustusers` tinyint(1) NOT NULL, `jabberhostname` varchar(50) NOT NULL, `jitterbuffer` enum('never','yes','always','fixed','alwaysfixed') NOT NULL DEFAULT 'never', `canreinvite` enum('no','yes','nonat','update','nonat-update') NOT NULL DEFAULT 'no', PRIMARY KEY (`pk_siptrunk`) ) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `siptrunks` -- LOCK TABLES `siptrunks` WRITE; /*!40000 ALTER TABLE `siptrunks` DISABLE KEYS */; /*!40000 ALTER TABLE `siptrunks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `snd_files` -- DROP TABLE IF EXISTS `snd_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `snd_files` ( `filename` varchar(255) NOT NULL, `language` char(2) NOT NULL, `shortdesc` varchar(255) NOT NULL, `longdesc` text NOT NULL, `is_system` tinyint(1) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`filename`,`language`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `snd_files` -- LOCK TABLES `snd_files` WRITE; /*!40000 ALTER TABLE `snd_files` DISABLE KEYS */; INSERT INTO `snd_files` VALUES ('filename','la','shortdesc','longdesc',0,'0000-00-00 00:00:00'),('vm-nobodyavail','en','Nobody Available','Nobody is available to take your call at the moment.',1,'2009-10-22 00:01:29'),('vm-changeto','en','Change To','Change to which folder.',1,'2009-10-22 00:01:29'),('mississippi','en','mississippi','N',1,'2009-10-22 00:01:29'),('privacy-your-callerid-is','en','privacy-your-callerid-is','N',1,'2009-10-22 00:01:29'),('utah','en','utah','N',1,'2009-10-22 00:01:29'),('pls-hold-while-try','en','pls-hold-while-try','N',1,'2009-10-22 00:01:29'),('south-dakota','en','south-dakota','N',1,'2009-10-22 00:01:29'),('in-your-city','en','in-your-city','N',1,'2009-10-22 00:01:29'),('ext-or-zero','en','ext-or-zero','N',1,'2009-10-22 00:01:29'),('press-6','en','press-6','N',1,'2009-10-22 00:01:29'),('massachusetts','en','massachusetts','N',1,'2009-10-22 00:01:29'),('disabled','en','disabled','N',1,'2009-10-22 00:01:29'),('if-this-is-correct','en','if-this-is-correct','N',1,'2009-10-22 00:01:29'),('thirtieth','en','thirtieth','N',1,'2009-10-22 00:01:29'),('giggle1','en','giggle1','N',1,'2009-10-22 00:01:29'),('fifteenth','en','fifteenth','N',1,'2009-10-22 00:01:29'),('wakeup-for-daily','en','wakeup-for-daily','N',1,'2009-10-22 00:01:29'),('ms','en','ms','N',1,'2009-10-22 00:01:29'),('spy-agent','en','spy-agent','N',1,'2009-10-22 00:01:29'),('spy-mgcp','en','spy-mgcp','N',1,'2009-10-22 00:01:29'),('turn-off-recording','en','turn-off-recording','N',1,'2009-10-22 00:01:29'),('freeze','en','freeze','N',1,'2009-10-22 00:01:29'),('louisiana','en','louisiana','N',1,'2009-10-22 00:01:29'),('conf-hasjoin','en','conf-hasjoin','N',1,'2009-10-22 00:01:29'),('this-is-yr-wakeup-call','en','this-is-yr-wakeup-call','N',1,'2009-10-22 00:01:29'),('tulsa','en','tulsa','N',1,'2009-10-22 00:01:29'),('houston','en','houston','N',1,'2009-10-22 00:01:30'),('pipe','en','pipe','N',1,'2009-10-22 00:01:30'),('one-small-step','en','one-small-step','N',1,'2009-10-22 00:01:30'),('T-changed-to','en','T-changed-to','N',1,'2009-10-22 00:01:30'),('management','en','management','N',1,'2009-10-22 00:01:30'),('to-log-in-to-voice-mail','en','to-log-in-to-voice-mail','N',1,'2009-10-22 00:01:30'),('press-star-cancel','en','press-star-cancel','N',1,'2009-10-22 00:01:30'),('someone-you-trust2','en','someone-you-trust2','N',1,'2009-10-22 00:01:30'),('support','en','support','N',1,'2009-10-22 00:01:30'),('if-grtg-played-indefinately','en','if-grtg-played-indefinately','N',1,'2009-10-22 00:01:30'),('no-911-1','en','no-911-1','N',1,'2009-10-22 00:01:30'),('scattered','en','scattered','N',1,'2009-10-22 00:01:30'),('for-wakeup-call','en','for-wakeup-call','N',1,'2009-10-22 00:01:30'),('heading','en','heading','N',1,'2009-10-22 00:01:30'),('cyclone','en','cyclone','N',1,'2009-10-22 00:01:30'),('race','en','race','N',1,'2009-10-22 00:01:30'),('florida','en','florida','N',1,'2009-10-22 00:01:30'),('rhode-island','en','rhode-island','N',1,'2009-10-22 00:01:30'),('pin-invalid','en','pin-invalid','N',1,'2009-10-22 00:01:30'),('connecticut','en','connecticut','N',1,'2009-10-22 00:01:30'),('spam','en','spam','N',1,'2009-10-22 00:01:30'),('international-call','en','international-call','N',1,'2009-10-22 00:01:30'),('press-6-to-eject','en','press-6-to-eject','N',1,'2009-10-22 00:01:30'),('blue-eyed-polar-bear','en','blue-eyed-polar-bear','N',1,'2009-10-22 00:01:30'),('kilobytes','en','kilobytes','N',1,'2009-10-22 00:01:30'),('interstate','en','interstate','N',1,'2009-10-22 00:01:30'),('call-terminated','en','call-terminated','N',1,'2009-10-22 00:01:30'),('euro','en','euro','N',1,'2009-10-22 00:01:30'),('then-press-pound','en','then-press-pound','N',1,'2009-10-22 00:01:31'),('miami','en','miami','N',1,'2009-10-22 00:01:31'),('encode','en','encode','N',1,'2009-10-22 00:01:31'),('astcc-account-number-invalid','en','astcc-account-number-invalid','N',1,'2009-10-22 00:01:31'),('emergency','en','emergency','N',1,'2009-10-22 00:01:31'),('cancelled','en','cancelled','N',1,'2009-10-22 00:01:31'),('clli','en','clli','N',1,'2009-10-22 00:01:31'),('screen-callee-options','en','screen-callee-options','N',1,'2009-10-22 00:01:31'),('go-away2','en','go-away2','N',1,'2009-10-22 00:01:31'),('wtng-to-spk-w-rep','en','wtng-to-spk-w-rep','N',1,'2009-10-22 00:01:31'),('will-expire','en','will-expire','N',1,'2009-10-22 00:01:31'),('connection-failed','en','connection-failed','N',1,'2009-10-22 00:01:31'),('thank-you-cooperation','en','thank-you-cooperation','N',1,'2009-10-22 00:01:31'),('your','en','your','N',1,'2009-10-22 00:01:31'),('pressure','en','pressure','N',1,'2009-10-22 00:01:31'),('to-call-prson-w-sent-msg','en','to-call-prson-w-sent-msg','N',1,'2009-10-22 00:01:31'),('kansas-city','en','kansas-city','N',1,'2009-10-22 00:01:31'),('welcome','en','welcome','N',1,'2009-10-22 00:01:31'),('janitorial','en','janitorial','N',1,'2009-10-22 00:01:31'),('fiftieth','en','fiftieth','N',1,'2009-10-22 00:01:31'),('demo-nomatch','en','demo-nomatch','N',1,'2009-10-22 00:01:31'),('minneapolis','en','minneapolis','N',1,'2009-10-22 00:01:31'),('conf-onlypersonleft','en','conf-onlypersonleft','N',1,'2009-10-22 00:01:31'),('privacy-stop-calling-not-welcome','en','privacy-stop-calling-not-welcome','N',1,'2009-10-22 00:01:31'),('sorry','en','sorry','N',1,'2009-10-22 00:01:31'),('http','en','http','N',1,'2009-10-22 00:01:31'),('pls-lv-msg-will-contact','en','pls-lv-msg-will-contact','N',1,'2009-10-22 00:01:31'),('quote','en','quote','N',1,'2009-10-22 00:01:31'),('quarter','en','quarter','N',1,'2009-10-22 00:01:31'),('thank-you-for-calling','en','thank-you-for-calling','N',1,'2009-10-22 00:01:32'),('academic-support','en','academic-support','N',1,'2009-10-22 00:01:32'),('vm-opts-full','en','vm-opts-full','N',1,'2009-10-22 00:01:32'),('miles','en','miles','N',1,'2009-10-22 00:01:32'),('call-quality-menu','en','call-quality-menu','N',1,'2009-10-22 00:01:32'),('to-join-a-meeting','en','to-join-a-meeting','N',1,'2009-10-22 00:01:32'),('registrar','en','registrar','N',1,'2009-10-22 00:01:32'),('we-apologize','en','we-apologize','N',1,'2009-10-22 00:01:32'),('digit','en','digit','N',1,'2009-10-22 00:01:32'),('cleveland','en','cleveland','N',1,'2009-10-22 00:01:32'),('just-kidding-not-upset','en','just-kidding-not-upset','N',1,'2009-10-22 00:01:32'),('to-extension','en','to-extension','N',1,'2009-10-22 00:01:32'),('dallas','en','dallas','N',1,'2009-10-22 00:01:32'),('to-enter-a-number','en','to-enter-a-number','N',1,'2009-10-22 00:01:32'),('astcc-followed-by-the-pound-key','en','astcc-followed-by-the-pound-key','N',1,'2009-10-22 00:01:32'),('digits','en','digits','N',1,'2009-10-22 00:01:32'),('dir-instr','en','Instructions','If this is the person you are looking for press one now. Otherwise please press star now.',1,'2009-10-22 00:01:29'),('vm-reachoper','en','Zero for Operator','Press zero to reach an operator.',1,'2009-10-22 00:01:29'),('transfer','en','Hold Transfer','Please hold while I try that extension.',1,'2009-10-22 00:01:29'),('agent-pass','en','Password','Please enter your password followed by the pound key.',1,'2009-10-22 00:01:30'),('seconds','en','Seconds','Seconds.',1,'2009-10-22 00:01:30'),('vm-msgsaved','en','Message Saved','Your message has been saved.',1,'2009-10-22 00:01:31'),('vm-toforward','en','8 To Forward','Press eight to forward the message to another user.',1,'2009-10-22 00:01:32'),('queue-seconds','en','Seconds','Seconds.',1,'2009-10-22 00:01:31'),('vm-tocancel','en','Pound Cancel','Or pound to cancel.',1,'2009-10-22 00:01:32'),('pls-try-again','en','pls-try-again','N',1,'2009-10-22 00:01:32'),('second','en','second','N',1,'2009-10-22 00:01:32'),('lea-may-request-info','en','lea-may-request-info','N',1,'2009-10-22 00:01:32'),('kilometers-per-hour','en','kilometers-per-hour','N',1,'2009-10-22 00:01:32'),('no-empty-conferences','en','no-empty-conferences','N',1,'2009-10-22 00:01:32'),('disk','en','disk','N',1,'2009-10-22 00:01:32'),('development','en','development','N',1,'2009-10-22 00:01:32'),('vm-rec-temp','en','vm-rec-temp','N',1,'2009-10-22 00:01:32'),('female','en','female','N',1,'2009-10-22 00:01:32'),('added-to','en','added-to','N',1,'2009-10-22 00:01:32'),('collections','en','collections','N',1,'2009-10-22 00:01:32'),('to-confirm-wakeup','en','to-confirm-wakeup','N',1,'2009-10-22 00:01:32'),('colorado-springs','en','colorado-springs','N',1,'2009-10-22 00:01:33'),('low','en','low','N',1,'2009-10-22 00:01:33'),('astcc-login12pound','en','astcc-login12pound','N',1,'2009-10-22 00:01:33'),('home','en','home','N',1,'2009-10-22 00:01:33'),('privacy-this-number-is','en','privacy-this-number-is','N',1,'2009-10-22 00:01:33'),('dir-multi2','en','dir-multi2','N',1,'2009-10-22 00:01:33'),('telephone-in-your-pocket2','en','telephone-in-your-pocket2','N',1,'2009-10-22 00:01:33'),('just-kidding-not-upset2','en','just-kidding-not-upset2','N',1,'2009-10-22 00:01:33'),('mountain','en','mountain','N',1,'2009-10-22 00:01:33'),('port','en','port','N',1,'2009-10-22 00:01:33'),('spy-skinny','en','spy-skinny','N',1,'2009-10-22 00:01:33'),('gigabytes','en','gigabytes','N',1,'2009-10-22 00:01:33'),('demo-instruct','en','demo-instruct','N',1,'2009-10-22 00:01:33'),('for-english-press','en','for-english-press','N',1,'2009-10-22 00:01:33'),('jason','en','jason','N',1,'2009-10-22 00:01:33'),('conf-peopleinconf','en','conf-peopleinconf','N',1,'2009-10-22 00:01:33'),('honolulu','en','honolulu','N',1,'2009-10-22 00:01:33'),('mailroom','en','mailroom','N',1,'2009-10-22 00:01:33'),('demo-echotest','en','demo-echotest','N',1,'2009-10-22 00:01:33'),('touchtone1','en','touchtone1','N',1,'2009-10-22 00:01:33'),('demo-abouttotry','en','demo-abouttotry','N',1,'2009-10-22 00:01:33'),('to-leave-message-for','en','to-leave-message-for','N',1,'2009-10-22 00:01:33'),('if-rotary-phone','en','if-rotary-phone','N',1,'2009-10-22 00:01:33'),('privacy-please-dial','en','privacy-please-dial','N',1,'2009-10-22 00:01:33'),('privacy-to-hear-our-contact-details','en','privacy-to-hear-our-contact-details','N',1,'2009-10-22 00:01:34'),('philadelphia','en','philadelphia','N',1,'2009-10-22 00:01:34'),('nevada','en','nevada','N',1,'2009-10-22 00:01:34'),('thirteenth','en','thirteenth','N',1,'2009-10-22 00:01:34'),('partly','en','partly','N',1,'2009-10-22 00:01:34'),('hold-or-dial-0','en','hold-or-dial-0','N',1,'2009-10-22 00:01:34'),('that-is-not-rec-phn-num','en','that-is-not-rec-phn-num','N',1,'2009-10-22 00:01:34'),('tenth','en','tenth','N',1,'2009-10-22 00:01:34'),('for-billing','en','for-billing','N',1,'2009-10-22 00:01:34'),('i-dont-understand','en','i-dont-understand','N',1,'2009-10-22 00:01:34'),('open-parenthesis','en','open-parenthesis','N',1,'2009-10-22 00:01:34'),('perhaps-we-are2','en','perhaps-we-are2','N',1,'2009-10-22 00:01:34'),('to-rerecord-announce','en','to-rerecord-announce','N',1,'2009-10-22 00:01:34'),('you-must-first-dial','en','you-must-first-dial','N',1,'2009-10-22 00:01:34'),('card-is-invalid','en','card-is-invalid','N',1,'2009-10-22 00:01:34'),('software','en','software','N',1,'2009-10-22 00:01:34'),('hang-on-a-second','en','hang-on-a-second','N',1,'2009-10-22 00:01:34'),('pls-enter-vm-password','en','pls-enter-vm-password','N',1,'2009-10-22 00:01:34'),('hail','en','hail','N',1,'2009-10-22 00:01:34'),('abandon-all-hope','en','abandon-all-hope','N',1,'2009-10-22 00:01:34'),('astcc-followed-by-pound','en','astcc-followed-by-pound','N',1,'2009-10-22 00:01:34'),('doing-enum-lookup','en','doing-enum-lookup','N',1,'2009-10-22 00:01:34'),('weeks','en','weeks','N',1,'2009-10-22 00:01:34'),('go-away1','en','go-away1','N',1,'2009-10-22 00:01:34'),('repair','en','repair','N',1,'2009-10-22 00:01:34'),('copy-center','en','copy-center','N',1,'2009-10-22 00:01:34'),('walks-into-bar-mail','en','walks-into-bar-mail','N',1,'2009-10-22 00:01:34'),('press-pound-to-login-star-to-hangup','en','press-pound-to-login-star-to-hangup','N',1,'2009-10-22 00:01:34'),('press-1','en','press-1','N',1,'2009-10-22 00:01:34'),('it-services','en','it-services','N',1,'2009-10-22 00:01:34'),('currently','en','currently','N',1,'2009-10-22 00:01:34'),('beaufort','en','beaufort','N',1,'2009-10-22 00:01:34'),('conf-thereare','en','conf-thereare','N',1,'2009-10-22 00:01:35'),('outside-transfer','en','outside-transfer','N',1,'2009-10-22 00:01:35'),('penny','en','penny','N',1,'2009-10-22 00:01:35'),('privacy-last-caller-was','en','privacy-last-caller-was','N',1,'2009-10-22 00:01:35'),('avg-speed-answer','en','avg-speed-answer','N',1,'2009-10-22 00:01:35'),('there-are','en','there-are','N',1,'2009-10-22 00:01:35'),('system-crashed','en','system-crashed','N',1,'2009-10-22 00:01:35'),('privacy-to-blacklist-last-caller','en','privacy-to-blacklist-last-caller','N',1,'2009-10-22 00:01:35'),('tennessee','en','tennessee','N',1,'2009-10-22 00:01:35'),('from-unknown-caller','en','from-unknown-caller','N',1,'2009-10-22 00:01:35'),('conf-enteringno','en','Enter Intro','You are entering conference number.',1,'2009-10-22 00:01:33'),('conf-locked','en','Locked','This conference is locked.',1,'2009-10-22 00:01:33'),('minutes','en','Minutes','minutes',1,'2009-10-22 00:01:33'),('conf-muted','en','Muted','You are now muted.',1,'2009-10-22 00:01:34'),('vm-savedto','en','Saved To','Saved To',1,'2009-10-22 00:01:35'),('agent-newlocation','en','New Extension','Please enter a new extension followed by pound.',1,'2009-10-22 00:01:34'),('colorado','en','colorado','N',1,'2009-10-22 00:01:42'),('the-new-number-is','en','the-new-number-is','N',1,'2009-10-22 00:01:42'),('press-escape','en','press-escape','N',1,'2009-10-22 00:01:42'),('im-sorry','en','im-sorry','N',1,'2009-10-22 00:01:42'),('the-weather-at','en','the-weather-at','N',1,'2009-10-22 00:01:42'),('seventeenth','en','seventeenth','N',1,'2009-10-22 00:01:42'),('gmt','en','gmt','N',1,'2009-10-22 00:01:42'),('finals','en','finals','N',1,'2009-10-22 00:01:42'),('conference','en','conference','N',1,'2009-10-22 00:01:42'),('if-unsuccessful-speak-to','en','if-unsuccessful-speak-to','N',1,'2009-10-22 00:01:42'),('no-112-1','en','no-112-1','N',1,'2009-10-22 00:01:42'),('production','en','production','N',1,'2009-10-22 00:01:42'),('cents','en','cents','N',1,'2009-10-22 00:01:42'),('administration','en','administration','N',1,'2009-10-22 00:01:42'),('starting-with-either','en','starting-with-either','N',1,'2009-10-22 00:01:42'),('atlanta','en','atlanta','N',1,'2009-10-22 00:01:42'),('standard','en','standard','N',1,'2009-10-22 00:01:42'),('target-attendant','en','target-attendant','N',1,'2009-10-22 00:01:42'),('spy-h323','en','spy-h323','N',1,'2009-10-22 00:01:42'),('san-jose','en','san-jose','N',1,'2009-10-22 00:01:42'),('european','en','european','N',1,'2009-10-22 00:01:42'),('uk','en','uk','N',1,'2009-10-22 00:01:42'),('third','en','third','N',1,'2009-10-22 00:01:42'),('deposit','en','deposit','N',1,'2009-10-22 00:01:42'),('has-issued-a','en','has-issued-a','N',1,'2009-10-22 00:01:42'),('press-3','en','press-3','N',1,'2009-10-22 00:01:42'),('privacy-not','en','privacy-not','N',1,'2009-10-22 00:01:42'),('no-longer-in-service','en','no-longer-in-service','N',1,'2009-10-22 00:01:42'),('units','en','units','N',1,'2009-10-22 00:01:42'),('bits','en','bits','N',1,'2009-10-22 00:01:43'),('speak-louder','en','speak-louder','N',1,'2009-10-22 00:01:43'),('added','en','added','N',1,'2009-10-22 00:01:43'),('removed','en','removed','N',1,'2009-10-22 00:01:43'),('fort-worth','en','fort-worth','N',1,'2009-10-22 00:01:43'),('this-call-may-be','en','this-call-may-be','N',1,'2009-10-22 00:01:43'),('restarting','en','restarting','N',1,'2009-10-22 00:01:43'),('current-time-is','en','current-time-is','N',1,'2009-10-22 00:01:43'),('ha/fan','en','ha/fan','N',1,'2009-10-22 00:01:43'),('ha/bedroom','en','ha/bedroom','N',1,'2009-10-22 00:01:43'),('ha/kelvin','en','ha/kelvin','N',1,'2009-10-22 00:01:43'),('ha/amps','en','ha/amps','N',1,'2009-10-22 00:01:43'),('ha/off','en','ha/off','N',1,'2009-10-22 00:01:43'),('ha/sun-room','en','ha/sun-room','N',1,'2009-10-22 00:01:43'),('ha/cool','en','ha/cool','N',1,'2009-10-22 00:01:43'),('ha/pressure','en','ha/pressure','N',1,'2009-10-22 00:01:43'),('ha/patio','en','ha/patio','N',1,'2009-10-22 00:01:43'),('ha/xmas-lights','en','ha/xmas-lights','N',1,'2009-10-22 00:01:43'),('ha/front','en','ha/front','N',1,'2009-10-22 00:01:43'),('ha/phone','en','ha/phone','N',1,'2009-10-22 00:01:43'),('ha/foyer','en','ha/foyer','N',1,'2009-10-22 00:01:43'),('ha/security-system','en','ha/security-system','N',1,'2009-10-22 00:01:43'),('ha/heat-pump','en','ha/heat-pump','N',1,'2009-10-22 00:01:43'),('ha/side','en','ha/side','N',1,'2009-10-22 00:01:43'),('ha/decibels','en','ha/decibels','N',1,'2009-10-22 00:01:43'),('ha/porch','en','ha/porch','N',1,'2009-10-22 00:01:43'),('ha/attic','en','ha/attic','N',1,'2009-10-22 00:01:43'),('ha/den','en','ha/den','N',1,'2009-10-22 00:01:43'),('ha/ac','en','ha/ac','N',1,'2009-10-22 00:01:43'),('ha/stove','en','ha/stove','N',1,'2009-10-22 00:01:43'),('ha/reset','en','ha/reset','N',1,'2009-10-22 00:01:43'),('ha/sprinklers','en','ha/sprinklers','N',1,'2009-10-22 00:01:43'),('ha/door','en','ha/door','N',1,'2009-10-22 00:01:44'),('ha/thermostat','en','ha/thermostat','N',1,'2009-10-22 00:01:44'),('ha/heating','en','ha/heating','N',1,'2009-10-22 00:01:44'),('ha/mailbox','en','ha/mailbox','N',1,'2009-10-22 00:01:44'),('ha/quiet-mode','en','ha/quiet-mode','N',1,'2009-10-22 00:01:44'),('ha/dining-room','en','ha/dining-room','N',1,'2009-10-22 00:01:44'),('ha/secure','en','ha/secure','N',1,'2009-10-22 00:01:44'),('ha/room','en','ha/room','N',1,'2009-10-22 00:01:44'),('ha/for-extended-status-report','en','ha/for-extended-status-report','N',1,'2009-10-22 00:01:44'),('ha/watt','en','ha/watt','N',1,'2009-10-22 00:01:44'),('ha/power-failure','en','ha/power-failure','N',1,'2009-10-22 00:01:44'),('ha/decibel','en','ha/decibel','N',1,'2009-10-22 00:01:44'),('ha/well-pump','en','ha/well-pump','N',1,'2009-10-22 00:01:44'),('ha/game-room','en','ha/game-room','N',1,'2009-10-22 00:01:44'),('ha/heat','en','ha/heat','N',1,'2009-10-22 00:01:44'),('ha/hot-tub','en','ha/hot-tub','N',1,'2009-10-22 00:01:44'),('ha/house','en','ha/house','N',1,'2009-10-22 00:01:44'),('ha/lamps','en','ha/lamps','N',1,'2009-10-22 00:01:44'),('ha/yard','en','ha/yard','N',1,'2009-10-22 00:01:44'),('ha/basement','en','ha/basement','N',1,'2009-10-22 00:01:44'),('ha/locking','en','ha/locking','N',1,'2009-10-22 00:01:44'),('ha/furnace','en','ha/furnace','N',1,'2009-10-22 00:01:44'),('ha/floors','en','ha/floors','N',1,'2009-10-22 00:01:44'),('ha/callerid','en','ha/callerid','N',1,'2009-10-22 00:01:44'),('ha/system','en','ha/system','N',1,'2009-10-22 00:01:44'),('ha/set','en','ha/set','N',1,'2009-10-22 00:01:44'),('ha/volts','en','ha/volts','N',1,'2009-10-22 00:01:44'),('ha/deck','en','ha/deck','N',1,'2009-10-22 00:01:44'),('ha/up','en','ha/up','N',1,'2009-10-22 00:01:44'),('ha/pool','en','ha/pool','N',1,'2009-10-22 00:01:44'),('ha/to-control-lights-appl','en','ha/to-control-lights-appl','N',1,'2009-10-22 00:01:44'),('ha/window','en','ha/window','N',1,'2009-10-22 00:01:45'),('ha/down','en','ha/down','N',1,'2009-10-22 00:01:45'),('ha/still','en','ha/still','N',1,'2009-10-22 00:01:45'),('ha/cooling','en','ha/cooling','N',1,'2009-10-22 00:01:45'),('ha/degree','en','ha/degree','N',1,'2009-10-22 00:01:45'),('ha/closet','en','ha/closet','N',1,'2009-10-22 00:01:45'),('ha/washing-machine','en','ha/washing-machine','N',1,'2009-10-22 00:01:45'),('dir-intro-fn','en','Introduction (Firstname)','Welcome to the directory. Please enter the first three letters of your party\'s first name. Use the 7 key for Q and the 9 key for Z.',1,'2009-10-22 00:01:41'),('vm-toreply','en','1 To Reply','Press one to send a reply.',1,'2009-10-22 00:01:42'),('ha/dc','en','ha/dc','N',1,'2009-10-22 00:01:45'),('ha/on','en','ha/on','N',1,'2009-10-22 00:01:45'),('ha/ohm','en','ha/ohm','N',1,'2009-10-22 00:01:45'),('ha/fountain','en','ha/fountain','N',1,'2009-10-22 00:01:45'),('ha/alarm','en','ha/alarm','N',1,'2009-10-22 00:01:45'),('ha/is','en','ha/is','N',1,'2009-10-22 00:01:45'),('ha/watts','en','ha/watts','N',1,'2009-10-22 00:01:45'),('ha/office','en','ha/office','N',1,'2009-10-22 00:01:45'),('ha/psi','en','ha/psi','N',1,'2009-10-22 00:01:45'),('ha/floor','en','ha/floor','N',1,'2009-10-22 00:01:45'),('ha/lamp','en','ha/lamp','N',1,'2009-10-22 00:01:45'),('ha/light','en','ha/light','N',1,'2009-10-22 00:01:45'),('ha/xmas-tree','en','ha/xmas-tree','N',1,'2009-10-22 00:01:45'),('ha/coffee-pot','en','ha/coffee-pot','N',1,'2009-10-22 00:01:45'),('ha/hall','en','ha/hall','N',1,'2009-10-22 00:01:45'),('ha/back','en','ha/back','N',1,'2009-10-22 00:01:45'),('ha/lights','en','ha/lights','N',1,'2009-10-22 00:01:45'),('ha/amp','en','ha/amp','N',1,'2009-10-22 00:01:45'),('ha/baby-sleeping-mode','en','ha/baby-sleeping-mode','N',1,'2009-10-22 00:01:45'),('ha/windows','en','ha/windows','N',1,'2009-10-22 00:01:45'),('ha/bright','en','ha/bright','N',1,'2009-10-22 00:01:45'),('ha/volt','en','ha/volt','N',1,'2009-10-22 00:01:45'),('ha/play','en','ha/play','N',1,'2009-10-22 00:01:45'),('ha/farad','en','ha/farad','N',1,'2009-10-22 00:01:45'),('ha/garage','en','ha/garage','N',1,'2009-10-22 00:01:45'),('ha/living-room','en','ha/living-room','N',1,'2009-10-22 00:01:45'),('ha/water-heater','en','ha/water-heater','N',1,'2009-10-22 00:01:46'),('ha/carport','en','ha/carport','N',1,'2009-10-22 00:01:46'),('ha/doors','en','ha/doors','N',1,'2009-10-22 00:01:46'),('ha/locked','en','ha/locked','N',1,'2009-10-22 00:01:46'),('ha/farads','en','ha/farads','N',1,'2009-10-22 00:01:46'),('ha/second-floor','en','ha/second-floor','N',1,'2009-10-22 00:01:46'),('ha/landscape','en','ha/landscape','N',1,'2009-10-22 00:01:46'),('ha/great-room','en','ha/great-room','N',1,'2009-10-22 00:01:46'),('ha/rooms','en','ha/rooms','N',1,'2009-10-22 00:01:46'),('ha/sump-pump','en','ha/sump-pump','N',1,'2009-10-22 00:01:46'),('ha/first-floor','en','ha/first-floor','N',1,'2009-10-22 00:01:46'),('ha/open','en','ha/open','N',1,'2009-10-22 00:01:46'),('ha/dryer','en','ha/dryer','N',1,'2009-10-22 00:01:46'),('ha/dim','en','ha/dim','N',1,'2009-10-22 00:01:46'),('ha/library','en','ha/library','N',1,'2009-10-22 00:01:46'),('ha/ohms','en','ha/ohms','N',1,'2009-10-22 00:01:46'),('ha/unlocked','en','ha/unlocked','N',1,'2009-10-22 00:01:46'),('ha/tower','en','ha/tower','N',1,'2009-10-22 00:01:46'),('ha/guest-room','en','ha/guest-room','N',1,'2009-10-22 00:01:46'),('ha/has-been-left','en','ha/has-been-left','N',1,'2009-10-22 00:01:46'),('ha/air-conditioner','en','ha/air-conditioner','N',1,'2009-10-22 00:01:46'),('ha/for-wx-report','en','ha/for-wx-report','N',1,'2009-10-22 00:01:46'),('ha/play-room','en','ha/play-room','N',1,'2009-10-22 00:01:46'),('ha/laundry','en','ha/laundry','N',1,'2009-10-22 00:01:46'),('ha/kitchen','en','ha/kitchen','N',1,'2009-10-22 00:01:46'),('ha/bathroom','en','ha/bathroom','N',1,'2009-10-22 00:01:46'),('ha/unlocking','en','ha/unlocking','N',1,'2009-10-22 00:01:46'),('ha/degrees','en','ha/degrees','N',1,'2009-10-22 00:01:46'),('ha/master','en','ha/master','N',1,'2009-10-22 00:01:46'),('ha/systems','en','ha/systems','N',1,'2009-10-22 00:01:46'),('long-beach','en','long-beach','N',1,'2009-10-22 00:01:50'),('ha/to-control-environ-sys','en','ha/to-control-environ-sys','N',1,'2009-10-22 00:01:46'),('ha/intruder','en','ha/intruder','N',1,'2009-10-22 00:01:46'),('ha/solar','en','ha/solar','N',1,'2009-10-22 00:01:47'),('ha/roof','en','ha/roof','N',1,'2009-10-22 00:01:47'),('ha/for-quick-status-report','en','ha/for-quick-status-report','N',1,'2009-10-22 00:01:47'),('ha/driveway','en','ha/driveway','N',1,'2009-10-22 00:01:47'),('security','en','security','N',1,'2009-10-22 00:01:47'),('megabytes','en','megabytes','N',1,'2009-10-22 00:01:47'),('astcc-please-enter-your','en','astcc-please-enter-your','N',1,'2009-10-22 00:01:47'),('enum-lookup-successful','en','enum-lookup-successful','N',1,'2009-10-22 00:01:47'),('technical-support','en','technical-support','N',1,'2009-10-22 00:01:47'),('chance-of','en','chance-of','N',1,'2009-10-22 00:01:47'),('route-sip','en','route-sip','N',1,'2009-10-22 00:01:47'),('enter-num-blacklist','en','enter-num-blacklist','N',1,'2009-10-22 00:01:47'),('information','en','information','N',1,'2009-10-22 00:01:47'),('in-service','en','in-service','N',1,'2009-10-22 00:01:47'),('reassigned-new-areacode','en','reassigned-new-areacode','N',1,'2009-10-22 00:01:47'),('network-operations-center','en','network-operations-center','N',1,'2009-10-22 00:01:47'),('sighted','en','sighted','N',1,'2009-10-22 00:01:47'),('shop','en','shop','N',1,'2009-10-22 00:01:47'),('date','en','date','N',1,'2009-10-22 00:01:47'),('misty','en','misty','N',1,'2009-10-22 00:01:47'),('a-collect-charge-of','en','a-collect-charge-of','N',1,'2009-10-22 00:01:47'),('conf-userswilljoin','en','conf-userswilljoin','N',1,'2009-10-22 00:01:47'),('arizona','en','arizona','N',1,'2009-10-22 00:01:47'),('sacramento','en','sacramento','N',1,'2009-10-22 00:01:47'),('please-wait-connect-oncall-eng','en','please-wait-connect-oncall-eng','N',1,'2009-10-22 00:01:47'),('milwaukee','en','milwaukee','N',1,'2009-10-22 00:01:47'),('euros','en','euros','N',1,'2009-10-22 00:01:47'),('slow','en','slow','N',1,'2009-10-22 00:01:47'),('oklahoma','en','oklahoma','N',1,'2009-10-22 00:01:47'),('michigan','en','michigan','N',1,'2009-10-22 00:01:48'),('campground-office','en','campground-office','N',1,'2009-10-22 00:01:48'),('approaching','en','approaching','N',1,'2009-10-22 00:01:48'),('a-connect-charge-of','en','a-connect-charge-of','N',1,'2009-10-22 00:01:48'),('accessible-through-system','en','accessible-through-system','N',1,'2009-10-22 00:01:48'),('pls-wait-connect-call','en','pls-wait-connect-call','N',1,'2009-10-22 00:01:48'),('call','en','call','N',1,'2009-10-22 00:01:48'),('loss-prevention','en','loss-prevention','N',1,'2009-10-22 00:01:48'),('channel-secure','en','channel-secure','N',1,'2009-10-22 00:01:48'),('slowly','en','slowly','N',1,'2009-10-22 00:01:48'),('is-at','en','is-at','N',1,'2009-10-22 00:01:48'),('language','en','language','N',1,'2009-10-22 00:01:48'),('temperature','en','temperature','N',1,'2009-10-22 00:01:48'),('pls-rcrd-name-at-tone','en','pls-rcrd-name-at-tone','N',1,'2009-10-22 00:01:48'),('purposes','en','purposes','N',1,'2009-10-22 00:01:48'),('is-set-to','en','is-set-to','N',1,'2009-10-22 00:01:48'),('twisty-maze','en','twisty-maze','N',1,'2009-10-22 00:01:48'),('i-dont-understand5','en','i-dont-understand5','N',1,'2009-10-22 00:01:48'),('roaming','en','roaming','N',1,'2009-10-22 00:01:48'),('demo-congrats','en','demo-congrats','N',1,'2009-10-22 00:01:48'),('is-currently','en','is-currently','N',1,'2009-10-22 00:01:48'),('variable','en','variable','N',1,'2009-10-22 00:01:48'),('show-office','en','show-office','N',1,'2009-10-22 00:01:48'),('ftp','en','ftp','N',1,'2009-10-22 00:01:48'),('icy','en','icy','N',1,'2009-10-22 00:01:48'),('ping','en','ping','N',1,'2009-10-22 00:01:48'),('wrong-try-again-smarty','en','wrong-try-again-smarty','N',1,'2009-10-22 00:01:48'),('wakeup-daily','en','wakeup-daily','N',1,'2009-10-22 00:01:48'),('billing','en','billing','N',1,'2009-10-22 00:01:48'),('you-are-caller-num','en','you-are-caller-num','N',1,'2009-10-22 00:01:48'),('yeah','en','yeah','N',1,'2009-10-22 00:01:49'),('chris','en','chris','N',1,'2009-10-22 00:01:49'),('message-number','en','message-number','N',1,'2009-10-22 00:01:49'),('say-temp-msg-prs-pound','en','say-temp-msg-prs-pound','N',1,'2009-10-22 00:01:49'),('terabits','en','terabits','N',1,'2009-10-22 00:01:49'),('hit','en','hit','N',1,'2009-10-22 00:01:49'),('dir-multi3','en','dir-multi3','N',1,'2009-10-22 00:01:49'),('male','en','male','N',1,'2009-10-22 00:01:49'),('presales-support','en','presales-support','N',1,'2009-10-22 00:01:49'),('fourteenth','en','fourteenth','N',1,'2009-10-22 00:01:49'),('twelveth','en','twelveth','N',1,'2009-10-22 00:01:49'),('conference-reservations','en','conference-reservations','N',1,'2009-10-22 00:01:49'),('right-bracket','en','right-bracket','N',1,'2009-10-22 00:01:49'),('legal','en','legal','N',1,'2009-10-22 00:01:49'),('delaware','en','delaware','N',1,'2009-10-22 00:01:49'),('q-dot-931','en','q-dot-931','N',1,'2009-10-22 00:01:49'),('humidity','en','humidity','N',1,'2009-10-22 00:01:49'),('store-accounting','en','store-accounting','N',1,'2009-10-22 00:01:49'),('on-no-answer','en','on-no-answer','N',1,'2009-10-22 00:01:49'),('conf-leaderhasleft','en','conf-leaderhasleft','N',1,'2009-10-22 00:01:49'),('please-enter-the','en','please-enter-the','N',1,'2009-10-22 00:01:49'),('idaho','en','idaho','N',1,'2009-10-22 00:01:49'),('that-number','en','that-number','N',1,'2009-10-22 00:01:49'),('unconditional','en','unconditional','N',1,'2009-10-22 00:01:49'),('there-is-no-customer-support','en','there-is-no-customer-support','N',1,'2009-10-22 00:01:49'),('len','en','len','N',1,'2009-10-22 00:01:49'),('snowing','en','snowing','N',1,'2009-10-22 00:01:49'),('time','en','time','N',1,'2009-10-22 00:01:49'),('to-compose-a-message','en','to-compose-a-message','N',1,'2009-10-22 00:01:49'),('albuquerque','en','albuquerque','N',1,'2009-10-22 00:01:50'),('snowy','en','snowy','N',1,'2009-10-22 00:01:50'),('arlington','en','arlington','N',1,'2009-10-22 00:01:50'),('to-reach-first-rep','en','to-reach-first-rep','N',1,'2009-10-22 00:01:50'),('customer-accounts','en','customer-accounts','N',1,'2009-10-22 00:01:50'),('you-wish-to-join','en','you-wish-to-join','N',1,'2009-10-22 00:01:50'),('in-the','en','in-the','N',1,'2009-10-22 00:01:50'),('could-lose-a-few-pounds','en','could-lose-a-few-pounds','N',1,'2009-10-22 00:01:50'),('sciences','en','sciences','N',1,'2009-10-22 00:01:50'),('wind','en','wind','N',1,'2009-10-22 00:01:50'),('el-paso','en','el-paso','N',1,'2009-10-22 00:01:50'),('remote-base','en','remote-base','N',1,'2009-10-22 00:01:50'),('crash','en','crash','N',1,'2009-10-22 00:01:50'),('ent-target-attendant','en','ent-target-attendant','N',1,'2009-10-22 00:01:50'),('maintenance','en','maintenance','N',1,'2009-10-22 00:01:50'),('sixtieth','en','sixtieth','N',1,'2009-10-22 00:01:50'),('john','en','john','N',1,'2009-10-22 00:01:50'),('the-next','en','the-next','N',1,'2009-10-22 00:01:50'),('has-expired','en','has-expired','N',1,'2009-10-22 00:01:50'),('says-thats-stupid','en','says-thats-stupid','N',1,'2009-10-22 00:01:50'),('tomorrow-night','en','tomorrow-night','N',1,'2009-10-22 00:01:50'),('if-this-is-correct-press','en','if-this-is-correct-press','N',1,'2009-10-22 00:01:50'),('lots-o-monkeys','en','lots-o-monkeys','N',1,'2009-10-22 00:01:50'),('beeperr','en','beeperr','N',1,'2009-10-22 00:01:50'),('north','en','north','N',1,'2009-10-22 00:01:50'),('perhaps-we-are','en','perhaps-we-are','N',1,'2009-10-22 00:01:50'),('please-enter-your','en','please-enter-your','N',1,'2009-10-22 00:01:50'),('north-carolina','en','north-carolina','N',1,'2009-10-22 00:01:50'),('fog','en','fog','N',1,'2009-10-22 00:01:51'),('early','en','early','N',1,'2009-10-22 00:01:51'),('made-it-up','en','made-it-up','N',1,'2009-10-22 00:01:51'),('linux','en','linux','N',1,'2009-10-22 00:01:51'),('users','en','users','N',1,'2009-10-22 00:01:51'),('hectopascal','en','hectopascal','N',1,'2009-10-22 00:01:51'),('access-code','en','access-code','N',1,'2009-10-22 00:01:51'),('barometric','en','barometric','N',1,'2009-10-22 00:01:51'),('charlotte','en','charlotte','N',1,'2009-10-22 00:01:51'),('missed','en','missed','N',1,'2009-10-22 00:01:51'),('i-dont-understand3','en','i-dont-understand3','N',1,'2009-10-22 00:01:51'),('attention-required','en','attention-required','N',1,'2009-10-22 00:01:51'),('pascal2','en','pascal2','N',1,'2009-10-22 00:01:51'),('why-no-answer-mystery','en','why-no-answer-mystery','N',1,'2009-10-22 00:01:51'),('for-qc-and-training-purposes','en','for-qc-and-training-purposes','N',1,'2009-10-22 00:01:51'),('months','en','months','N',1,'2009-10-22 00:01:51'),('conf-placeintoconf','en','conf-placeintoconf','N',1,'2009-10-22 00:01:51'),('press-pound-save-changes','en','press-pound-save-changes','N',1,'2009-10-22 00:01:51'),('for-yes-press','en','for-yes-press','N',1,'2009-10-22 00:01:51'),('bad','en','bad','N',1,'2009-10-22 00:01:51'),('projects','en','projects','N',1,'2009-10-22 00:01:51'),('astcc-skipping-any-punctuation','en','astcc-skipping-any-punctuation','N',1,'2009-10-22 00:01:51'),('extension','en','extension','N',1,'2009-10-22 00:01:51'),('persons-in-path-of','en','persons-in-path-of','N',1,'2009-10-22 00:01:51'),('is-not-set','en','is-not-set','N',1,'2009-10-22 00:01:51'),('clear','en','clear','N',1,'2009-10-22 00:01:51'),('knots','en','knots','N',1,'2009-10-22 00:01:51'),('not-necessary-ac','en','not-necessary-ac','N',1,'2009-10-22 00:01:52'),('south','en','south','N',1,'2009-10-22 00:01:52'),('please-enter-first-three-letters','en','please-enter-first-three-letters','N',1,'2009-10-22 00:01:52'),('to-hear-msg-envelope','en','to-hear-msg-envelope','N',1,'2009-10-22 00:01:52'),('conf-full','en','conf-full','N',1,'2009-10-22 00:01:52'),('abandons','en','abandons','N',1,'2009-10-22 00:01:52'),('spy-unistim','en','spy-unistim','N',1,'2009-10-22 00:01:52'),('spy-local','en','spy-local','N',1,'2009-10-22 00:01:52'),('no-911-2','en','no-911-2','N',1,'2009-10-22 00:01:52'),('within','en','within','N',1,'2009-10-22 00:01:52'),('seventh','en','seventh','N',1,'2009-10-22 00:01:52'),('one-moment-please','en','one-moment-please','N',1,'2009-10-22 00:01:52'),('busy-pls-hold','en','busy-pls-hold','N',1,'2009-10-22 00:01:52'),('virginia','en','virginia','N',1,'2009-10-22 00:01:52'),('sorry-cant-let-you-do-that3','en','sorry-cant-let-you-do-that3','N',1,'2009-10-22 00:01:52'),('hundredth','en','hundredth','N',1,'2009-10-22 00:01:52'),('boston','en','boston','N',1,'2009-10-22 00:01:52'),('queue-quantity2','en','queue-quantity2','N',1,'2009-10-22 00:01:52'),('ed','en','ed','N',1,'2009-10-22 00:01:52'),('vm-Work','en','Work','Work.',1,'2009-10-22 00:01:49'),('vm-num-i-have','en','Number I Have','The number I have is.',1,'2009-10-22 00:01:49'),('vm-enter-num-to-call','en','Enter Number','Please enter the number you wish to call.',1,'2009-10-22 00:01:50'),('vm-isonphone','en','Is on phone','Is on the phone.',1,'2009-10-22 00:01:50'),('agent-loggedoff','en','Logged Off','Agent logged off.',1,'2009-10-22 00:01:51'),('beep','en','Beep','',1,'2009-10-22 00:01:51'),('privacy-thankyou','en','Thank you.','Thank you.',1,'2009-10-22 00:01:51'),('vm-goodbye','en','Goodbye','Goodbye',1,'2009-10-22 00:01:51'),('conf-unmuted','en','Unmuted','You are now unmuted.',1,'2009-10-22 00:01:52'),('vm-INBOX','en','New','New.',1,'2009-10-22 00:01:49'),('vm-whichbox','en','Which box','To leave a message please enter a mailbox number.',1,'2009-10-22 00:01:51'),('vm-deleted','en','Message Deleted','Message deleted.',1,'2009-10-22 00:01:52'),('login-fail','en','login-fail','N',1,'2009-10-22 00:01:52'),('asterisk-friend','en','asterisk-friend','N',1,'2009-10-22 00:01:52'),('telesales','en','telesales','N',1,'2009-10-22 00:01:52'),('vermont','en','vermont','N',1,'2009-10-22 00:01:52'),('someone-you-trust1','en','someone-you-trust1','N',1,'2009-10-22 00:01:52'),('falling','en','falling','N',1,'2009-10-22 00:01:52'),('cannot-complete-temp-error','en','cannot-complete-temp-error','N',1,'2009-10-22 00:01:52'),('pm-prompt-number','en','pm-prompt-number','N',1,'2009-10-22 00:01:52'),('nautical-miles','en','nautical-miles','N',1,'2009-10-22 00:01:52'),('warning','en','warning','N',1,'2009-10-22 00:01:52'),('all-reps-busy','en','all-reps-busy','N',1,'2009-10-22 00:01:53'),('to-hang-up','en','to-hang-up','N',1,'2009-10-22 00:01:53'),('not-necessary-dial-1-or-ac','en','not-necessary-dial-1-or-ac','N',1,'2009-10-22 00:01:53'),('you-sound-cute','en','you-sound-cute','N',1,'2009-10-22 00:01:53'),('demo-moreinfo','en','demo-moreinfo','N',1,'2009-10-22 00:01:53'),('easterly','en','easterly','N',1,'2009-10-22 00:01:53'),('greater-than','en','greater-than','N',1,'2009-10-22 00:01:53'),('entr-num-rmv-blklist','en','entr-num-rmv-blklist','N',1,'2009-10-22 00:01:53'),('spy-misdn','en','spy-misdn','N',1,'2009-10-22 00:01:53'),('national-weather-service','en','national-weather-service','N',1,'2009-10-22 00:01:53'),('ssh','en','ssh','N',1,'2009-10-22 00:01:53'),('mostly','en','mostly','N',1,'2009-10-22 00:01:53'),('enter-password','en','enter-password','N',1,'2009-10-22 00:01:53'),('enter-ext-of-person','en','enter-ext-of-person','N',1,'2009-10-22 00:01:53'),('internal-audit','en','internal-audit','N',1,'2009-10-22 00:01:53'),('plugh','en','plugh','N',1,'2009-10-22 00:01:53'),('quickly','en','quickly','N',1,'2009-10-22 00:01:53'),('save-announce-press','en','save-announce-press','N',1,'2009-10-22 00:01:53'),('iowa','en','iowa','N',1,'2009-10-22 00:01:53'),('sleeting','en','sleeting','N',1,'2009-10-22 00:01:53'),('pin-number-accepted','en','pin-number-accepted','N',1,'2009-10-22 00:01:53'),('sterling','en','sterling','N',1,'2009-10-22 00:01:53'),('lunch','en','lunch','N',1,'2009-10-22 00:01:53'),('available','en','available','N',1,'2009-10-22 00:01:53'),('department','en','department','N',1,'2009-10-22 00:01:53'),('eighteenth','en','eighteenth','N',1,'2009-10-22 00:01:54'),('remote-already-in-this-mode-2','en','remote-already-in-this-mode-2','N',1,'2009-10-22 00:01:54'),('oops2','en','oops2','N',1,'2009-10-22 00:01:54'),('swap','en','swap','N',1,'2009-10-22 00:01:54'),('at-following-number','en','at-following-number','N',1,'2009-10-22 00:01:54'),('we-dont-have-tech-support','en','we-dont-have-tech-support','N',1,'2009-10-22 00:01:54'),('ampersand','en','ampersand','N',1,'2009-10-22 00:01:54'),('continue-english-press','en','continue-english-press','N',1,'2009-10-22 00:01:54'),('no-112-2','en','no-112-2','N',1,'2009-10-22 00:01:54'),('privacy-to-whitelist-last-caller','en','privacy-to-whitelist-last-caller','N',1,'2009-10-22 00:01:54'),('protocol','en','protocol','N',1,'2009-10-22 00:01:54'),('T-to-disable-ancmnt','en','T-to-disable-ancmnt','N',1,'2009-10-22 00:01:54'),('you-seem-impatient','en','you-seem-impatient','N',1,'2009-10-22 00:01:54'),('status','en','status','N',1,'2009-10-22 00:01:54'),('press-enter','en','press-enter','N',1,'2009-10-22 00:01:54'),('directory-assistance','en','directory-assistance','N',1,'2009-10-22 00:01:54'),('dial-here-often','en','dial-here-often','N',1,'2009-10-22 00:01:54'),('press','en','press','N',1,'2009-10-22 00:01:54'),('your-temp-greeting','en','your-temp-greeting','N',1,'2009-10-22 00:01:54'),('negative','en','negative','N',1,'2009-10-22 00:01:54'),('compliance','en','compliance','N',1,'2009-10-22 00:01:54'),('not-necessary-1','en','not-necessary-1','N',1,'2009-10-22 00:01:54'),('duplex','en','duplex','N',1,'2009-10-22 00:01:54'),('pls-try-call-later','en','pls-try-call-later','N',1,'2009-10-22 00:01:54'),('meters','en','meters','N',1,'2009-10-22 00:01:54'),('a-connect-charge','en','a-connect-charge','N',1,'2009-10-22 00:01:54'),('complaint','en','complaint','N',1,'2009-10-22 00:01:54'),('number','en','number','N',1,'2009-10-22 00:01:54'),('to-report-emergency','en','to-report-emergency','N',1,'2009-10-22 00:01:54'),('to-hang-up-2','en','to-hang-up-2','N',1,'2009-10-22 00:01:54'),('counseling-services','en','counseling-services','N',1,'2009-10-22 00:01:55'),('columbus','en','columbus','N',1,'2009-10-22 00:01:55'),('spy-iax2','en','spy-iax2','N',1,'2009-10-22 00:01:55'),('station','en','station','N',1,'2009-10-22 00:01:55'),('sorry-cant-let-you-do-that2','en','sorry-cant-let-you-do-that2','N',1,'2009-10-22 00:01:55'),('facilities','en','facilities','N',1,'2009-10-22 00:01:55'),('hawaii','en','hawaii','N',1,'2009-10-22 00:01:55'),('receiving','en','receiving','N',1,'2009-10-22 00:01:55'),('to-dial-by-name','en','to-dial-by-name','N',1,'2009-10-22 00:01:55'),('if-correct-press','en','if-correct-press','N',1,'2009-10-22 00:01:55'),('icmp','en','icmp','N',1,'2009-10-22 00:01:55'),('first-in-line','en','first-in-line','N',1,'2009-10-22 00:01:55'),('changing','en','changing','N',1,'2009-10-22 00:01:55'),('auditing','en','auditing','N',1,'2009-10-22 00:01:55'),('followed-by','en','followed-by','N',1,'2009-10-22 00:01:55'),('our-business-hours-are','en','our-business-hours-are','N',1,'2009-10-22 00:01:55'),('and-prs-pound-whn-finished','en','and-prs-pound-whn-finished','N',1,'2009-10-22 00:01:55'),('physics','en','physics','N',1,'2009-10-22 00:01:55'),('rebates','en','rebates','N',1,'2009-10-22 00:01:55'),('highway','en','highway','N',1,'2009-10-22 00:01:55'),('to-report-system-network-down','en','to-report-system-network-down','N',1,'2009-10-22 00:01:55'),('speed-dial-empty','en','speed-dial-empty','N',1,'2009-10-22 00:01:55'),('conf-sysopreqcancelled','en','conf-sysopreqcancelled','N',1,'2009-10-22 00:01:55'),('pence','en','pence','N',1,'2009-10-22 00:01:55'),('memphis','en','memphis','N',1,'2009-10-22 00:01:55'),('times','en','times','N',1,'2009-10-22 00:01:55'),('communications','en','communications','N',1,'2009-10-22 00:01:56'),('post-entry-pound','en','post-entry-pound','N',1,'2009-10-22 00:01:56'),('away-naughty-boy','en','away-naughty-boy','N',1,'2009-10-22 00:01:56'),('knock-knock','en','knock-knock','N',1,'2009-10-22 00:01:56'),('to-hear-weather-status','en','to-hear-weather-status','N',1,'2009-10-22 00:01:56'),('california','en','california','N',1,'2009-10-22 00:01:56'),('conference-call','en','conference-call','N',1,'2009-10-22 00:01:56'),('initiated','en','initiated','N',1,'2009-10-22 00:01:56'),('food-service','en','food-service','N',1,'2009-10-22 00:01:56'),('to-hear-menu-again','en','to-hear-menu-again','N',1,'2009-10-22 00:01:56'),('vm-undeleted','en','Undeleted','Message undeleted.',1,'2009-10-22 00:01:53'),('star-for-menu-again','en','Star for Menu','Press the star key to hear this menu again.',1,'2009-10-22 00:01:53'),('vm-last','en','Last','Last.',1,'2009-10-22 00:01:55'),('tt-weasels','en','Weasles','Weasels have eaten our phone system.',1,'2009-10-22 00:01:55'),('vm-Old','en','Old','Old',1,'2009-10-22 00:01:55'),('conf-getpin','en','Enter PIN','Please enter the conference PIN number.',1,'2009-10-22 00:01:55'),('vm-tocancelmsg','en','Star Cancel','Press star to cancel this message',1,'2009-10-22 00:01:55'),('vm-no','en','No','No.',1,'2009-10-22 00:01:53'),('vm-Cust5','en','Folder 9','Folder 9.',1,'2009-10-22 00:01:54'),('hours','en','Hours','Hours.',1,'2009-10-22 00:01:55'),('T-to-hear-cur-ancmnt','en','T-to-hear-cur-ancmnt','N',1,'2009-10-22 00:01:56'),('food-services','en','food-services','N',1,'2009-10-22 00:01:56'),('sales','en','sales','N',1,'2009-10-22 00:01:56'),('gigahertz','en','gigahertz','N',1,'2009-10-22 00:01:56'),('directory','en','directory','N',1,'2009-10-22 00:01:56'),('printing','en','printing','N',1,'2009-10-22 00:01:56'),('number-not-answering','en','number-not-answering','N',1,'2009-10-22 00:01:56'),('investor-relations','en','investor-relations','N',1,'2009-10-22 00:01:56'),('ceo-office','en','ceo-office','N',1,'2009-10-22 00:01:56'),('travel','en','travel','N',1,'2009-10-22 00:01:56'),('system','en','system','N',1,'2009-10-22 00:01:56'),('new-york','en','new-york','N',1,'2009-10-22 00:01:56'),('spy-zap','en','spy-zap','N',1,'2009-10-22 00:01:56'),('typhoon','en','typhoon','N',1,'2009-10-22 00:01:56'),('dir-multi1','en','dir-multi1','N',1,'2009-10-22 00:01:56'),('privacy-if-sales-call-contact-in-writing','en','privacy-if-sales-call-contact-in-writing','N',1,'2009-10-22 00:01:56'),('megabits','en','megabits','N',1,'2009-10-22 00:01:56'),('good','en','good','N',1,'2009-10-22 00:01:56'),('through','en','through','N',1,'2009-10-22 00:01:57'),('yes-dear','en','yes-dear','N',1,'2009-10-22 00:01:57'),('treasury','en','treasury','N',1,'2009-10-22 00:01:57'),('are-you-still-there','en','are-you-still-there','N',1,'2009-10-22 00:01:57'),('for-service','en','for-service','N',1,'2009-10-22 00:01:57'),('up','en','up','N',1,'2009-10-22 00:01:57'),('hertz','en','hertz','N',1,'2009-10-22 00:01:57'),('near','en','near','N',1,'2009-10-22 00:01:57'),('self-destruct-in','en','self-destruct-in','N',1,'2009-10-22 00:01:57'),('west','en','west','N',1,'2009-10-22 00:01:58'),('detroit','en','detroit','N',1,'2009-10-22 00:01:58'),('has-been-set-to','en','has-been-set-to','N',1,'2009-10-22 00:01:58'),('snow','en','snow','N',1,'2009-10-22 00:01:58'),('barn','en','barn','N',1,'2009-10-22 00:01:58'),('queue-quantity1','en','queue-quantity1','N',1,'2009-10-22 00:01:58'),('texas','en','texas','N',1,'2009-10-22 00:01:58'),('ohio','en','ohio','N',1,'2009-10-22 00:01:58'),('alaska','en','alaska','N',1,'2009-10-22 00:01:58'),('new-orleans','en','new-orleans','N',1,'2009-10-22 00:01:58'),('all-your-base','en','all-your-base','N',1,'2009-10-22 00:01:58'),('astcc-account-balance-is','en','astcc-account-balance-is','N',1,'2009-10-22 00:01:58'),('late','en','late','N',1,'2009-10-22 00:01:58'),('sixth','en','sixth','N',1,'2009-10-22 00:01:58'),('the-monkeys-twice','en','the-monkeys-twice','N',1,'2009-10-22 00:01:58'),('has-been','en','has-been','N',1,'2009-10-22 00:01:58'),('accounts-receivable','en','accounts-receivable','N',1,'2009-10-22 00:01:58'),('conf-onlyone','en','conf-onlyone','N',1,'2009-10-22 00:01:58'),('de-activated','en','de-activated','N',1,'2009-10-22 00:01:58'),('wyoming','en','wyoming','N',1,'2009-10-22 00:01:58'),('believe-its-free','en','believe-its-free','N',1,'2009-10-22 00:01:58'),('to-collect-voicemail','en','to-collect-voicemail','N',1,'2009-10-22 00:01:58'),('to-call-this-number','en','to-call-this-number','N',1,'2009-10-22 00:01:58'),('chicago','en','chicago','N',1,'2009-10-22 00:01:58'),('spam2','en','spam2','N',1,'2009-10-22 00:01:58'),('personnel','en','personnel','N',1,'2009-10-22 00:01:58'),('priv-introsaved','en','priv-introsaved','N',1,'2009-10-22 00:01:58'),('phoenix','en','phoenix','N',1,'2009-10-22 00:01:58'),('list','en','list','N',1,'2009-10-22 00:01:59'),('panic','en','panic','N',1,'2009-10-22 00:01:59'),('est-hold-time-is','en','est-hold-time-is','N',1,'2009-10-22 00:01:59'),('conf-hasentered','en','conf-hasentered','N',1,'2009-10-22 00:01:59'),('will-apply','en','will-apply','N',1,'2009-10-22 00:01:59'),('was','en','was','N',1,'2009-10-22 00:01:59'),('for-accounting','en','for-accounting','N',1,'2009-10-22 00:01:59'),('down','en','down','N',1,'2009-10-22 00:01:59'),('evening','en','evening','N',1,'2009-10-22 00:01:59'),('for-a-daily-wakeup-call','en','for-a-daily-wakeup-call','N',1,'2009-10-22 00:01:59'),('has-been-disconnected','en','has-been-disconnected','N',1,'2009-10-22 00:01:59'),('message-from','en','message-from','N',1,'2009-10-22 00:01:59'),('sales-floor','en','sales-floor','N',1,'2009-10-22 00:01:59'),('please-answer-the-following','en','please-answer-the-following','N',1,'2009-10-22 00:01:59'),('shipping','en','shipping','N',1,'2009-10-22 00:01:59'),('pm-invalid-option','en','pm-invalid-option','N',1,'2009-10-22 00:01:59'),('cannot-complete-otherend-error','en','cannot-complete-otherend-error','N',1,'2009-10-22 00:01:59'),('doppler-radar','en','doppler-radar','N',1,'2009-10-22 00:01:59'),('seattle','en','seattle','N',1,'2009-10-22 00:01:59'),('at-tone-time-exactly','en','at-tone-time-exactly','N',1,'2009-10-22 00:01:59'),('press-9','en','press-9','N',1,'2009-10-22 00:02:00'),('press-button-again','en','press-button-again','N',1,'2009-10-22 00:02:00'),('loss','en','loss','N',1,'2009-10-22 00:02:00'),('terminating','en','terminating','N',1,'2009-10-22 00:02:00'),('phonetic/c_p','en','Charlie','Charlie.',1,'2009-10-22 00:01:57'),('vm-helpexit','en','Help And Exit','Pres star for help or pound to exit.',1,'2009-10-22 00:01:59'),('queue-holdtime','en','Hold Time','The estimated hold time is currently.',1,'2009-10-22 00:01:59'),('vm-message','en','Message','Message.',1,'2009-10-22 00:01:59'),('vm-torerecord','en','3 Rerecord','Press three to rerecord your message.',1,'2009-10-22 00:02:00'),('vm-Friends','en','Friends','Friends.',1,'2009-10-22 00:01:56'),('phonetic/b_p','en','Bravo','Bravo',1,'2009-10-22 00:01:57'),('phonetic/z_p','en','Zulu','Zulu.',1,'2009-10-22 00:01:57'),('phonetic/d_p','en','Delta','Detla.',1,'2009-10-22 00:01:57'),('phonetic/h_p','en','Hotel','Hotel.',1,'2009-10-22 00:01:57'),('phonetic/m_p','en','Mike','Mike.',1,'2009-10-22 00:01:57'),('phonetic/v_p','en','Victor','Victor',1,'2009-10-22 00:01:57'),('phonetic/r_p','en','Romeo','Romeo.',1,'2009-10-22 00:01:57'),('phonetic/u_p','en','Uniform','Uniform.',1,'2009-10-22 00:01:57'),('phonetic/x_p','en','Xray','Xray.',1,'2009-10-22 00:01:57'),('phonetic/f_p','en','Foxtrot','Foxtrot.',1,'2009-10-22 00:01:57'),('phonetic/i_p','en','India','India.',1,'2009-10-22 00:01:57'),('phonetic/9_p','en','Niner','Niner.',1,'2009-10-22 00:01:57'),('phonetic/y_p','en','Yankee','Yankee.',1,'2009-10-22 00:01:57'),('phonetic/e_p','en','Echo','Echo.',1,'2009-10-22 00:01:57'),('phonetic/w_p','en','Whiskey','Whiskey.',1,'2009-10-22 00:01:57'),('phonetic/p_p','en','Papa','Papa.',1,'2009-10-22 00:01:57'),('phonetic/n_p','en','November','November.',1,'2009-10-22 00:01:57'),('phonetic/j_p','en','Juliet','Juliet.',1,'2009-10-22 00:01:57'),('phonetic/g_p','en','Golf','Golf.',1,'2009-10-22 00:01:57'),('phonetic/o_p','en','Oscar','Oscar.',1,'2009-10-22 00:01:57'),('phonetic/k_p','en','Kilo','Kilo.',1,'2009-10-22 00:01:57'),('phonetic/l_p','en','Lima','Lima.',1,'2009-10-22 00:01:58'),('phonetic/a_p','en','Alpha','Alpha.',1,'2009-10-22 00:01:58'),('phonetic/t_p','en','Tango','Tango.',1,'2009-10-22 00:01:58'),('phonetic/q_p','en','Quebec','Quebec.',1,'2009-10-22 00:01:58'),('agent-loginok','en','Logged In','Agent logged in.',1,'2009-10-22 00:01:59'),('vm-received','en','Received','Received.',1,'2009-10-22 00:01:59'),('privacy-to-whitelist-this-number','en','privacy-to-whitelist-this-number','N',1,'2009-10-22 00:02:00'),('to-accept-recording','en','to-accept-recording','N',1,'2009-10-22 00:02:00'),('i-dont-understand4','en','i-dont-understand4','N',1,'2009-10-22 00:02:00'),('please-contact-tech-supt','en','please-contact-tech-supt','N',1,'2009-10-22 00:02:00'),('lines-complaining-customers','en','lines-complaining-customers','N',1,'2009-10-22 00:02:00'),('missouri','en','missouri','N',1,'2009-10-22 00:02:00'),('num-was-successfully','en','num-was-successfully','N',1,'2009-10-22 00:02:00'),('simplex','en','simplex','N',1,'2009-10-22 00:02:00'),('megahertz','en','megahertz','N',1,'2009-10-22 00:02:00'),('ninetieth','en','ninetieth','N',1,'2009-10-22 00:02:00'),('planning','en','planning','N',1,'2009-10-22 00:02:00'),('fast','en','fast','N',1,'2009-10-22 00:02:00'),('brian','en','brian','N',1,'2009-10-22 00:02:00'),('turning-to','en','turning-to','N',1,'2009-10-22 00:02:00'),('machine','en','machine','N',1,'2009-10-22 00:02:00'),('available-options','en','available-options','N',1,'2009-10-22 00:02:00'),('shall-i-try-again','en','shall-i-try-again','N',1,'2009-10-22 00:02:00'),('pls-hold-silent30','en','pls-hold-silent30','N',1,'2009-10-22 00:02:00'),('hangup-try-again','en','hangup-try-again','N',1,'2009-10-22 00:02:00'),('watch','en','watch','N',1,'2009-10-22 00:02:00'),('tucson','en','tucson','N',1,'2009-10-22 00:02:00'),('has','en','has','N',1,'2009-10-22 00:02:00'),('node','en','node','N',1,'2009-10-22 00:02:00'),('washington-dc','en','washington-dc','N',1,'2009-10-22 00:02:00'),('this-call-will-cost','en','this-call-will-cost','N',1,'2009-10-22 00:02:01'),('udp','en','udp','N',1,'2009-10-22 00:02:01'),('calls-taken-by','en','calls-taken-by','N',1,'2009-10-22 00:02:01'),('press-4','en','press-4','N',1,'2009-10-22 00:02:01'),('in-your-zip-code','en','in-your-zip-code','N',1,'2009-10-22 00:02:01'),('driving-directions','en','driving-directions','N',1,'2009-10-22 00:02:01'),('option-is-invalid','en','option-is-invalid','N',1,'2009-10-22 00:02:01'),('meter','en','meter','N',1,'2009-10-22 00:02:01'),('please-try-again','en','please-try-again','N',1,'2009-10-22 00:02:01'),('confirm-number-is','en','confirm-number-is','N',1,'2009-10-22 00:02:01'),('business-development','en','business-development','N',1,'2009-10-22 00:02:01'),('pls-try-manually','en','pls-try-manually','N',1,'2009-10-22 00:02:01'),('operations','en','operations','N',1,'2009-10-22 00:02:01'),('bearing','en','bearing','N',1,'2009-10-22 00:02:01'),('demo-enterkeywords','en','demo-enterkeywords','N',1,'2009-10-22 00:02:01'),('human-resources','en','human-resources','N',1,'2009-10-22 00:02:01'),('thanks-for-using','en','thanks-for-using','N',1,'2009-10-22 00:02:01'),('tones-that-follow-are-for-the-deaf','en','tones-that-follow-are-for-the-deaf','N',1,'2009-10-22 00:02:01'),('option-not-implemented','en','option-not-implemented','N',1,'2009-10-22 00:02:01'),('queue-less-than','en','queue-less-than','N',1,'2009-10-22 00:02:01'),('fifth','en','fifth','N',1,'2009-10-22 00:02:01'),('privacy-whitelisted','en','privacy-whitelisted','N',1,'2009-10-22 00:02:01'),('staffing','en','staffing','N',1,'2009-10-22 00:02:01'),('oregon','en','oregon','N',1,'2009-10-22 00:02:01'),('followme/pls-hold-while-try','en','followme/pls-hold-while-try','N',1,'2009-10-22 00:02:01'),('followme/sorry','en','followme/sorry','N',1,'2009-10-22 00:02:01'),('followme/status','en','followme/status','N',1,'2009-10-22 00:02:01'),('followme/call-from','en','followme/call-from','N',1,'2009-10-22 00:02:01'),('followme/options','en','followme/options','N',1,'2009-10-22 00:02:01'),('followme/no-recording','en','followme/no-recording','N',1,'2009-10-22 00:02:01'),('cannot-complete-as-dialed','en','cannot-complete-as-dialed','N',1,'2009-10-22 00:02:02'),('for-the-weather','en','for-the-weather','N',1,'2009-10-22 00:02:02'),('packet','en','packet','N',1,'2009-10-22 00:02:02'),('enter-phone-number10','en','enter-phone-number10','N',1,'2009-10-22 00:02:02'),('to-redial-the-last-number-you-called','en','to-redial-the-last-number-you-called','N',1,'2009-10-22 00:02:02'),('omaha','en','omaha','N',1,'2009-10-22 00:02:02'),('dictate/paused','en','dictate/paused','N',1,'2009-10-22 00:02:02'),('dictate/record_help','en','dictate/record_help','N',1,'2009-10-22 00:02:02'),('dictate/playback_mode','en','dictate/playback_mode','N',1,'2009-10-22 00:02:02'),('dictate/play_help','en','dictate/play_help','N',1,'2009-10-22 00:02:02'),('dictate/enter_filename','en','dictate/enter_filename','N',1,'2009-10-22 00:02:02'),('dictate/pause','en','dictate/pause','N',1,'2009-10-22 00:02:02'),('dictate/truncating_audio','en','dictate/truncating_audio','N',1,'2009-10-22 00:02:02'),('dictate/record_mode','en','dictate/record_mode','N',1,'2009-10-22 00:02:02'),('dictate/playback','en','dictate/playback','N',1,'2009-10-22 00:02:02'),('dictate/forhelp','en','dictate/forhelp','N',1,'2009-10-22 00:02:02'),('dictate/both_help','en','dictate/both_help','N',1,'2009-10-22 00:02:02'),('dictate/record','en','dictate/record','N',1,'2009-10-22 00:02:02'),('and-area-code','en','and-area-code','N',1,'2009-10-22 00:02:02'),('outside-sales','en','outside-sales','N',1,'2009-10-22 00:02:02'),('if-you-need-help','en','if-you-need-help','N',1,'2009-10-22 00:02:02'),('wx/gust','en','wx/gust','N',1,'2009-10-22 00:02:02'),('wx/foot','en','wx/foot','N',1,'2009-10-22 00:02:02'),('wx/large','en','wx/large','N',1,'2009-10-22 00:02:02'),('wx/ceiling','en','wx/ceiling','N',1,'2009-10-22 00:02:02'),('wx/inch','en','wx/inch','N',1,'2009-10-22 00:02:02'),('wx/gusts','en','wx/gusts','N',1,'2009-10-22 00:02:02'),('wx/temperature','en','wx/temperature','N',1,'2009-10-22 00:02:02'),('wx/humidity','en','wx/humidity','N',1,'2009-10-22 00:02:02'),('wx/heat-index','en','wx/heat-index','N',1,'2009-10-22 00:02:02'),('wx/northeast','en','wx/northeast','N',1,'2009-10-22 00:02:03'),('wx/falling','en','wx/falling','N',1,'2009-10-22 00:02:03'),('wx/winds','en','wx/winds','N',1,'2009-10-22 00:02:03'),('wx/meter','en','wx/meter','N',1,'2009-10-22 00:02:03'),('wx/steady','en','wx/steady','N',1,'2009-10-22 00:02:03'),('wx/rising','en','wx/rising','N',1,'2009-10-22 00:02:03'),('wx/gusty','en','wx/gusty','N',1,'2009-10-22 00:02:03'),('wx/southwest','en','wx/southwest','N',1,'2009-10-22 00:02:03'),('wx/percent','en','wx/percent','N',1,'2009-10-22 00:02:03'),('wx/gusting-to','en','wx/gusting-to','N',1,'2009-10-22 00:02:03'),('wx/northwest','en','wx/northwest','N',1,'2009-10-22 00:02:03'),('wx/point','en','wx/point','N',1,'2009-10-22 00:02:03'),('wx/wind-chill','en','wx/wind-chill','N',1,'2009-10-22 00:02:03'),('wx/kilometer','en','wx/kilometer','N',1,'2009-10-22 00:02:03'),('wx/inches','en','wx/inches','N',1,'2009-10-22 00:02:03'),('wx/mist','en','wx/mist','N',1,'2009-10-22 00:02:03'),('wx/feet','en','wx/feet','N',1,'2009-10-22 00:02:03'),('wx/around','en','wx/around','N',1,'2009-10-22 00:02:03'),('wx/southeast','en','wx/southeast','N',1,'2009-10-22 00:02:03'),('wx/barometer','en','wx/barometer','N',1,'2009-10-22 00:02:03'),('wx/dew-point','en','wx/dew-point','N',1,'2009-10-22 00:02:03'),('arkansas','en','arkansas','N',1,'2009-10-22 00:02:03'),('nothing-recorded','en','nothing-recorded','N',1,'2009-10-22 00:02:03'),('reception','en','reception','N',1,'2009-10-22 00:02:03'),('you-have-reached-a-test-number','en','you-have-reached-a-test-number','N',1,'2009-10-22 00:02:03'),('load-average','en','load-average','N',1,'2009-10-22 00:02:03'),('queue-callswaiting','en','Calls Waiting','Waiting to speak to a representative.',1,'2009-10-22 00:02:01'),('were-sorry','en','were-sorry','N',1,'2009-10-22 00:02:03'),('billing-and-collections','en','billing-and-collections','N',1,'2009-10-22 00:02:03'),('for-sales','en','for-sales','N',1,'2009-10-22 00:02:03'),('T-to-leave-msg','en','T-to-leave-msg','N',1,'2009-10-22 00:02:03'),('otherwise','en','otherwise','N',1,'2009-10-22 00:02:03'),('billionth','en','billionth','N',1,'2009-10-22 00:02:03'),('test-tones-follow','en','test-tones-follow','N',1,'2009-10-22 00:02:04'),('privacy-stop-calling-not-welcome2','en','privacy-stop-calling-not-welcome2','N',1,'2009-10-22 00:02:04'),('trading-desk','en','trading-desk','N',1,'2009-10-22 00:02:04'),('if-youd-like-to-make-a-call','en','if-youd-like-to-make-a-call','N',1,'2009-10-22 00:02:04'),('on','en','on','N',1,'2009-10-22 00:02:04'),('speed','en','speed','N',1,'2009-10-22 00:02:04'),('health-center','en','health-center','N',1,'2009-10-22 00:02:04'),('southerly','en','southerly','N',1,'2009-10-22 00:02:04'),('tide','en','tide','N',1,'2009-10-22 00:02:04'),('moo1','en','moo1','N',1,'2009-10-22 00:02:04'),('gale','en','gale','N',1,'2009-10-22 00:02:04'),('is-curntly-busy','en','is-curntly-busy','N',1,'2009-10-22 00:02:04'),('pm-phrase-management','en','pm-phrase-management','N',1,'2009-10-22 00:02:04'),('hear-odd-noise','en','hear-odd-noise','N',1,'2009-10-22 00:02:04'),('silence/10','en','silence/10','N',1,'2009-10-22 00:02:04'),('silence/9','en','silence/9','N',1,'2009-10-22 00:02:04'),('silence/4','en','silence/4','N',1,'2009-10-22 00:02:04'),('silence/3','en','silence/3','N',1,'2009-10-22 00:02:04'),('silence/8','en','silence/8','N',1,'2009-10-22 00:02:04'),('silence/5','en','silence/5','N',1,'2009-10-22 00:02:04'),('silence/6','en','silence/6','N',1,'2009-10-22 00:02:04'),('silence/7','en','silence/7','N',1,'2009-10-22 00:02:04'),('silence/2','en','silence/2','N',1,'2009-10-22 00:02:04'),('new-hampshire','en','new-hampshire','N',1,'2009-10-22 00:02:04'),('is','en','is','N',1,'2009-10-22 00:02:04'),('shiny-brass-lamp','en','shiny-brass-lamp','N',1,'2009-10-22 00:02:04'),('pop','en','pop','N',1,'2009-10-22 00:02:04'),('information-technology','en','information-technology','N',1,'2009-10-22 00:02:05'),('you-entered','en','you-entered','N',1,'2009-10-22 00:02:05'),('baltimore','en','baltimore','N',1,'2009-10-22 00:02:05'),('spy-mobile','en','spy-mobile','N',1,'2009-10-22 00:02:05'),('celsius','en','celsius','N',1,'2009-10-22 00:02:05'),('hz','en','hz','N',1,'2009-10-22 00:02:05'),('sorry-cant-let-you-do-that','en','sorry-cant-let-you-do-that','N',1,'2009-10-22 00:02:05'),('inbound','en','inbound','N',1,'2009-10-22 00:02:05'),('office','en','office','N',1,'2009-10-22 00:02:05'),('telephone-in-your-pocket','en','telephone-in-your-pocket','N',1,'2009-10-22 00:02:05'),('queue-periodic-announce','en','queue-periodic-announce','N',1,'2009-10-22 00:02:05'),('received','en','received','N',1,'2009-10-22 00:02:05'),('telnet','en','telnet','N',1,'2009-10-22 00:02:05'),('to-change-exp-date','en','to-change-exp-date','N',1,'2009-10-22 00:02:05'),('do-not-disturb','en','do-not-disturb','N',1,'2009-10-22 00:02:05'),('rising','en','rising','N',1,'2009-10-22 00:02:05'),('call-fwd-unconditional','en','call-fwd-unconditional','N',1,'2009-10-22 00:02:05'),('talking-to-myself','en','talking-to-myself','N',1,'2009-10-22 00:02:05'),('reservations','en','reservations','N',1,'2009-10-22 00:02:05'),('uh-oh1','en','uh-oh1','N',1,'2009-10-22 00:02:05'),('privacy-blacklisted','en','privacy-blacklisted','N',1,'2009-10-22 00:02:05'),('first','en','first','N',1,'2009-10-22 00:02:05'),('tornado','en','tornado','N',1,'2009-10-22 00:02:05'),('presidents-office','en','presidents-office','N',1,'2009-10-22 00:02:05'),('oops1','en','oops1','N',1,'2009-10-22 00:02:05'),('nineteenth','en','nineteenth','N',1,'2009-10-22 00:02:05'),('visit-asterisk-website','en','visit-asterisk-website','N',1,'2009-10-22 00:02:05'),('manufacturing','en','manufacturing','N',1,'2009-10-22 00:02:05'),('pls-enter-num-message-after-tone','en','pls-enter-num-message-after-tone','N',1,'2009-10-22 00:02:05'),('helpdesk','en','helpdesk','N',1,'2009-10-22 00:02:05'),('altitude','en','altitude','N',1,'2009-10-22 00:02:06'),('research-and-development','en','research-and-development','N',1,'2009-10-22 00:02:06'),('freezing','en','freezing','N',1,'2009-10-22 00:02:06'),('and-or','en','and-or','N',1,'2009-10-22 00:02:06'),('groovy','en','groovy','N',1,'2009-10-22 00:02:06'),('that-you-require','en','that-you-require','N',1,'2009-10-22 00:02:06'),('ninth','en','ninth','N',1,'2009-10-22 00:02:06'),('privacy-you-are-blacklisted','en','privacy-you-are-blacklisted','N',1,'2009-10-22 00:02:06'),('www-switchboard-com','en','www-switchboard-com','N',1,'2009-10-22 00:02:06'),('san-antonio','en','san-antonio','N',1,'2009-10-22 00:02:06'),('for-louie-louie','en','for-louie-louie','N',1,'2009-10-22 00:02:06'),('deadbeat','en','deadbeat','N',1,'2009-10-22 00:02:06'),('spy-console','en','spy-console','N',1,'2009-10-22 00:02:06'),('carried-away-by-monkeys','en','carried-away-by-monkeys','N',1,'2009-10-22 00:02:06'),('press-the-space-bar','en','press-the-space-bar','N',1,'2009-10-22 00:02:06'),('press-star','en','press-star','N',1,'2009-10-22 00:02:06'),('pounds','en','pounds','N',1,'2009-10-22 00:02:06'),('cafeteria','en','cafeteria','N',1,'2009-10-22 00:02:06'),('conf-sysop','en','conf-sysop','N',1,'2009-10-22 00:02:06'),('office-iguanas','en','office-iguanas','N',1,'2009-10-22 00:02:06'),('austin','en','austin','N',1,'2009-10-22 00:02:06'),('call-fwd-on-busy','en','call-fwd-on-busy','N',1,'2009-10-22 00:02:06'),('midnight-tonight','en','midnight-tonight','N',1,'2009-10-22 00:02:06'),('vm-tempremoved','en','vm-tempremoved','N',1,'2009-10-22 00:02:06'),('extensions','en','extensions','N',1,'2009-10-22 00:02:06'),('to-snooze-for','en','to-snooze-for','N',1,'2009-10-22 00:02:06'),('approximately','en','approximately','N',1,'2009-10-22 00:02:07'),('in-the-line','en','in-the-line','N',1,'2009-10-22 00:02:07'),('alabama','en','alabama','N',1,'2009-10-22 00:02:07'),('too-low','en','too-low','N',1,'2009-10-22 00:02:07'),('is-curntly-unavail','en','is-curntly-unavail','N',1,'2009-10-22 00:02:07'),('close-parenthesis','en','close-parenthesis','N',1,'2009-10-22 00:02:07'),('to-record-call','en','to-record-call','N',1,'2009-10-22 00:02:07'),('discon-or-out-of-service','en','discon-or-out-of-service','N',1,'2009-10-22 00:02:07'),('you-have-these-options','en','you-have-these-options','N',1,'2009-10-22 00:02:07'),('T-is-not-available','en','T-is-not-available','N',1,'2009-10-22 00:02:07'),('is-not-in-the','en','is-not-in-the','N',1,'2009-10-22 00:02:07'),('customer-service','en','customer-service','N',1,'2009-10-22 00:02:07'),('vm-and','en','And','And.',1,'2009-10-22 00:02:05'),('conf-getconfno','en','Enter Number','Please enter your conference number followed by the pound key.',1,'2009-10-22 00:02:05'),('vm-from-extension','en','From Extension','Message from extension.',1,'2009-10-22 00:02:06'),('vm-toenternumber','en','1 Enter Number','Press one to enter a number.',1,'2009-10-22 00:02:06'),('vm-Cust1','en','Folder 5','Folder 5.',1,'2009-10-22 00:02:07'),('vm-forwardoptions','en','1 Prepend','Press one to prepend a message.',1,'2009-10-22 00:02:07'),('vm-unknown-caller','en','Unknown Caller','From an unknown caller',1,'2009-10-22 00:02:07'),('silence/1','en','Silence','silence',1,'2009-10-22 00:02:04'),('vm-for','en','For','For.',1,'2009-10-22 00:02:05'),('dir-nomatch','en','No Match','No directory entries match your search.',1,'2009-10-22 00:02:06'),('denial-of-service','en','denial-of-service','N',1,'2009-10-22 00:02:07'),('another-time','en','another-time','N',1,'2009-10-22 00:02:07'),('kilohertz','en','kilohertz','N',1,'2009-10-22 00:02:07'),('barns','en','barns','N',1,'2009-10-22 00:02:07'),('foggy','en','foggy','N',1,'2009-10-22 00:02:07'),('marketing','en','marketing','N',1,'2009-10-22 00:02:07'),('rainfall','en','rainfall','N',1,'2009-10-22 00:02:07'),('no-route-exists-to-dest','en','no-route-exists-to-dest','N',1,'2009-10-22 00:02:07'),('last-num-to-call','en','last-num-to-call','N',1,'2009-10-22 00:02:07'),('terminated','en','terminated','N',1,'2009-10-22 00:02:07'),('letters/ascii38','en','letters/ascii38','N',1,'2009-10-22 00:02:07'),('letters/ascii94','en','letters/ascii94','N',1,'2009-10-22 00:02:07'),('letters/ascii40','en','letters/ascii40','N',1,'2009-10-22 00:02:07'),('letters/ascii39','en','letters/ascii39','N',1,'2009-10-22 00:02:08'),('letters/ascii60','en','letters/ascii60','N',1,'2009-10-22 00:02:08'),('letters/ascii95','en','letters/ascii95','N',1,'2009-10-22 00:02:08'),('letters/ascii93','en','letters/ascii93','N',1,'2009-10-22 00:02:08'),('letters/ascii91','en','letters/ascii91','N',1,'2009-10-22 00:02:08'),('letters/ascii126','en','letters/ascii126','N',1,'2009-10-22 00:02:08'),('letters/ascii37','en','letters/ascii37','N',1,'2009-10-22 00:02:08'),('letters/ascii36','en','letters/ascii36','N',1,'2009-10-22 00:02:08'),('letters/ascii44','en','letters/ascii44','N',1,'2009-10-22 00:02:08'),('letters/ascii96','en','letters/ascii96','N',1,'2009-10-22 00:02:08'),('letters/ascii63','en','letters/ascii63','N',1,'2009-10-22 00:02:09'),('letters/ascii92','en','letters/ascii92','N',1,'2009-10-22 00:02:09'),('letters/ascii58','en','letters/ascii58','N',1,'2009-10-22 00:02:09'),('letters/ascii62','en','letters/ascii62','N',1,'2009-10-22 00:02:09'),('letters/asterisk','en','letters/asterisk','N',1,'2009-10-22 00:02:09'),('letters/ascii124','en','letters/ascii124','N',1,'2009-10-22 00:02:09'),('letters/ascii59','en','letters/ascii59','N',1,'2009-10-22 00:02:09'),('letters/ascii41','en','letters/ascii41','N',1,'2009-10-22 00:02:09'),('letters/ascii123','en','letters/ascii123','N',1,'2009-10-22 00:02:09'),('letters/ascii125','en','letters/ascii125','N',1,'2009-10-22 00:02:09'),('letters/ascii34','en','letters/ascii34','N',1,'2009-10-22 00:02:09'),('letters/ascii42','en','letters/ascii42','N',1,'2009-10-22 00:02:09'),('rain','en','rain','N',1,'2009-10-22 00:02:09'),('visibility','en','visibility','N',1,'2009-10-22 00:02:10'),('risk-management','en','risk-management','N',1,'2009-10-22 00:02:10'),('zip-code','en','zip-code','N',1,'2009-10-22 00:02:10'),('press-7','en','press-7','N',1,'2009-10-22 00:02:10'),('north-dakota','en','north-dakota','N',1,'2009-10-22 00:02:10'),('vm-tmpexists','en','vm-tmpexists','N',1,'2009-10-22 00:02:10'),('service','en','service','N',1,'2009-10-22 00:02:10'),('press-0','en','press-0','N',1,'2009-10-22 00:02:10'),('i-dont-understand2','en','i-dont-understand2','N',1,'2009-10-22 00:02:10'),('not-enough-credit','en','not-enough-credit','N',1,'2009-10-22 00:02:10'),('accounts-payable','en','accounts-payable','N',1,'2009-10-22 00:02:10'),('virginia-beach','en','virginia-beach','N',1,'2009-10-22 00:02:10'),('athletics','en','athletics','N',1,'2009-10-22 00:02:10'),('speak-louder-into-phone','en','speak-louder-into-phone','N',1,'2009-10-22 00:02:10'),('from','en','from','N',1,'2009-10-22 00:02:10'),('seventieth','en','seventieth','N',1,'2009-10-22 00:02:10'),('westerly','en','westerly','N',1,'2009-10-22 00:02:10'),('quality-control','en','quality-control','N',1,'2009-10-22 00:02:10'),('a-collect-charge','en','a-collect-charge','N',1,'2009-10-22 00:02:10'),('to-blklist-last-num','en','to-blklist-last-num','N',1,'2009-10-22 00:02:10'),('to-cancel-this-msg','en','to-cancel-this-msg','N',1,'2009-10-22 00:02:10'),('kentucky','en','kentucky','N',1,'2009-10-22 00:02:10'),('wait-moment','en','wait-moment','N',1,'2009-10-22 00:02:10'),('housekeeping','en','housekeeping','N',1,'2009-10-22 00:02:10'),('speed-dial','en','speed-dial','N',1,'2009-10-22 00:02:10'),('enum-lookup-failed','en','enum-lookup-failed','N',1,'2009-10-22 00:02:10'),('off-duty','en','off-duty','N',1,'2009-10-22 00:02:10'),('uh-oh2','en','uh-oh2','N',1,'2009-10-22 00:02:10'),('wait-offensive-sounds','en','wait-offensive-sounds','N',1,'2009-10-22 00:02:10'),('echo-test','en','echo-test','N',1,'2009-10-22 00:02:10'),('to-cancel-wakeup','en','to-cancel-wakeup','N',1,'2009-10-22 00:02:10'),('when-dialing-this-number','en','when-dialing-this-number','N',1,'2009-10-22 00:02:10'),('octothorpe','en','octothorpe','N',1,'2009-10-22 00:02:11'),('your-msg-is-too-short','en','your-msg-is-too-short','N',1,'2009-10-22 00:02:11'),('company-dir-411','en','company-dir-411','N',1,'2009-10-22 00:02:11'),('web','en','web','N',1,'2009-10-22 00:02:11'),('research','en','research','N',1,'2009-10-22 00:02:11'),('enabled','en','enabled','N',1,'2009-10-22 00:02:11'),('thunderstorm','en','thunderstorm','N',1,'2009-10-22 00:02:11'),('spy-usbradio','en','spy-usbradio','N',1,'2009-10-22 00:02:11'),('simul-call-limit-reached','en','simul-call-limit-reached','N',1,'2009-10-22 00:02:11'),('repeater','en','repeater','N',1,'2009-10-22 00:02:11'),('letters/l','en','l','l.',1,'2009-10-22 00:02:07'),('letters/x','en','x','x.',1,'2009-10-22 00:02:08'),('letters/i','en','i','i.',1,'2009-10-22 00:02:08'),('letters/k','en','k','k.',1,'2009-10-22 00:02:08'),('letters/dot','en','dot','dot.',1,'2009-10-22 00:02:08'),('letters/y','en','y','y.',1,'2009-10-22 00:02:08'),('letters/h','en','h','h.',1,'2009-10-22 00:02:08'),('letters/j','en','j','j.',1,'2009-10-22 00:02:08'),('letters/c','en','c','c.',1,'2009-10-22 00:02:08'),('letters/s','en','s','s.',1,'2009-10-22 00:02:08'),('letters/f','en','f','f.',1,'2009-10-22 00:02:08'),('letters/w','en','w','w.',1,'2009-10-22 00:02:08'),('letters/a','en','a','a.',1,'2009-10-22 00:02:08'),('letters/at','en','at','at.',1,'2009-10-22 00:02:08'),('letters/dash','en','dash','dash.',1,'2009-10-22 00:02:08'),('letters/plus','en','plus','plus.',1,'2009-10-22 00:02:08'),('letters/m','en','m','m.',1,'2009-10-22 00:02:08'),('letters/space','en','space','space.',1,'2009-10-22 00:02:08'),('letters/equals','en','equals','equals.',1,'2009-10-22 00:02:08'),('letters/slash','en','slash','slash.',1,'2009-10-22 00:02:08'),('letters/t','en','t','t.',1,'2009-10-22 00:02:08'),('letters/b','en','b','b.',1,'2009-10-22 00:02:09'),('letters/n','en','n','n.',1,'2009-10-22 00:02:09'),('letters/z','en','z','z.',1,'2009-10-22 00:02:09'),('letters/p','en','p','p.',1,'2009-10-22 00:02:09'),('letters/r','en','r','r.',1,'2009-10-22 00:02:09'),('letters/e','en','e','e.',1,'2009-10-22 00:02:09'),('letters/q','en','q','q.',1,'2009-10-22 00:02:09'),('letters/g','en','g','g.',1,'2009-10-22 00:02:09'),('letters/zed','en','zed','zed.',1,'2009-10-22 00:02:09'),('letters/d','en','d','d.',1,'2009-10-22 00:02:09'),('letters/o','en','o','o.',1,'2009-10-22 00:02:09'),('letters/u','en','u','u.',1,'2009-10-22 00:02:09'),('letters/v','en','v','v.',1,'2009-10-22 00:02:09'),('letters/dollar','en','dollar','dollar.',1,'2009-10-22 00:02:09'),('letters/exclaimation-point','en','exclaimation-point','exclaimation-point.',1,'2009-10-22 00:02:09'),('queue-thankyou','en','Thank You','Thank you for your patience.',1,'2009-10-22 00:02:10'),('flooding','en','flooding','N',1,'2009-10-22 00:02:11'),('splat','en','splat','N',1,'2009-10-22 00:02:11'),('rqsted-wakeup-for','en','rqsted-wakeup-for','N',1,'2009-10-22 00:02:11'),('please-try','en','please-try','N',1,'2009-10-22 00:02:11'),('nobody-but-chickens','en','nobody-but-chickens','N',1,'2009-10-22 00:02:11'),('but','en','but','N',1,'2009-10-22 00:02:11'),('you-are-curr-call-num','en','you-are-curr-call-num','N',1,'2009-10-22 00:02:11'),('location','en','location','N',1,'2009-10-22 00:02:11'),('to-hear-callerid','en','to-hear-callerid','N',1,'2009-10-22 00:02:11'),('severe','en','severe','N',1,'2009-10-22 00:02:11'),('to-call-num-press','en','to-call-num-press','N',1,'2009-10-22 00:02:11'),('demo-echodone','en','demo-echodone','N',1,'2009-10-22 00:02:11'),('work','en','work','N',1,'2009-10-22 00:02:11'),('infuriate-tech-staff','en','infuriate-tech-staff','N',1,'2009-10-22 00:02:11'),('for-the-first','en','for-the-first','N',1,'2009-10-22 00:02:11'),('half','en','half','N',1,'2009-10-22 00:02:11'),('otherwise-press','en','otherwise-press','N',1,'2009-10-22 00:02:11'),('to-listen-to-it','en','to-listen-to-it','N',1,'2009-10-22 00:02:11'),('nashville','en','nashville','N',1,'2009-10-22 00:02:11'),('weather-station','en','weather-station','N',1,'2009-10-22 00:02:11'),('vm-onefor-full','en','vm-onefor-full','N',1,'2009-10-22 00:02:11'),('saint-louis','en','saint-louis','N',1,'2009-10-22 00:02:12'),('what-are-you-wearing','en','what-are-you-wearing','N',1,'2009-10-22 00:02:12'),('card-number','en','card-number','N',1,'2009-10-22 00:02:12'),('self-destruct','en','self-destruct','N',1,'2009-10-22 00:02:12'),('oops3','en','oops3','N',1,'2009-10-22 00:02:12'),('uptime','en','uptime','N',1,'2009-10-22 00:02:12'),('priv-callpending','en','priv-callpending','N',1,'2009-10-22 00:02:12'),('midnight-tomorrow-night','en','midnight-tomorrow-night','N',1,'2009-10-22 00:02:12'),('pacific','en','pacific','N',1,'2009-10-22 00:02:12'),('high','en','high','N',1,'2009-10-22 00:02:12'),('clearing','en','clearing','N',1,'2009-10-22 00:02:12'),('cause-code','en','cause-code','N',1,'2009-10-22 00:02:12'),('unix','en','unix','N',1,'2009-10-22 00:02:12'),('jacksonville','en','jacksonville','N',1,'2009-10-22 00:02:12'),('queue-reporthold','en','queue-reporthold','N',1,'2009-10-22 00:02:12'),('orders','en','orders','N',1,'2009-10-22 00:02:12'),('has-been-changed-to','en','has-been-changed-to','N',1,'2009-10-22 00:02:12'),('astcc-digit-account-number','en','astcc-digit-account-number','N',1,'2009-10-22 00:02:12'),('you-have-dialed','en','you-have-dialed','N',1,'2009-10-22 00:02:12'),('privacy-if-error','en','privacy-if-error','N',1,'2009-10-22 00:02:12'),('department-administrator','en','department-administrator','N',1,'2009-10-22 00:02:12'),('telephone-number','en','telephone-number','N',1,'2009-10-22 00:02:12'),('windy','en','windy','N',1,'2009-10-22 00:02:12'),('gigabits','en','gigabits','N',1,'2009-10-22 00:02:12'),('initiating','en','initiating','N',1,'2009-10-22 00:02:12'),('monitored','en','monitored','N',1,'2009-10-22 00:02:12'),('repeat-only','en','repeat-only','N',1,'2009-10-22 00:02:12'),('frequency','en','frequency','N',1,'2009-10-22 00:02:12'),('no-reply-no-mailbox','en','no-reply-no-mailbox','N',1,'2009-10-22 00:02:13'),('moron','en','moron','N',1,'2009-10-22 00:02:13'),('has-not-been-seen-for','en','has-not-been-seen-for','N',1,'2009-10-22 00:02:13'),('product','en','product','N',1,'2009-10-22 00:02:13'),('thnk-u-for-patience','en','thnk-u-for-patience','N',1,'2009-10-22 00:02:13'),('memory','en','memory','N',1,'2009-10-22 00:02:13'),('imap','en','imap','N',1,'2009-10-22 00:02:13'),('patchy','en','patchy','N',1,'2009-10-22 00:02:13'),('connected','en','connected','N',1,'2009-10-22 00:02:13'),('pm-to-record-phrase','en','pm-to-record-phrase','N',1,'2009-10-22 00:02:13'),('to-rqst-wakeup-call','en','to-rqst-wakeup-call','N',1,'2009-10-22 00:02:13'),('enter-conf-pin-number','en','enter-conf-pin-number','N',1,'2009-10-22 00:02:13'),('press-5','en','press-5','N',1,'2009-10-22 00:02:13'),('1-yes-2-no','en','1-yes-2-no','N',1,'2009-10-22 00:02:13'),('T-to-reach-main-office','en','T-to-reach-main-office','N',1,'2009-10-22 00:02:13'),('wakeup-onetime','en','wakeup-onetime','N',1,'2009-10-22 00:02:13'),('sorry-youre-having-problems','en','sorry-youre-having-problems','N',1,'2009-10-22 00:02:13'),('pls-stay-on-line','en','pls-stay-on-line','N',1,'2009-10-22 00:02:13'),('privacy-please-stay-on-line-to-be-connected','en','privacy-please-stay-on-line-to-be-connected','N',1,'2009-10-22 00:02:13'),('demo-thanks','en','demo-thanks','N',1,'2009-10-22 00:02:13'),('oklahoma-city','en','oklahoma-city','N',1,'2009-10-22 00:02:13'),('mike','en','mike','N',1,'2009-10-22 00:02:13'),('demo-nogo','en','demo-nogo','N',1,'2009-10-22 00:02:13'),('nebraska','en','nebraska','N',1,'2009-10-22 00:02:13'),('call-fwd-cancelled','en','call-fwd-cancelled','N',1,'2009-10-22 00:02:13'),('left-bracket','en','left-bracket','N',1,'2009-10-22 00:02:13'),('windows','en','windows','N',1,'2009-10-22 00:02:14'),('order-desk','en','order-desk','N',1,'2009-10-22 00:02:14'),('what-time-it-is','en','what-time-it-is','N',1,'2009-10-22 00:02:14'),('i-grow-bored','en','i-grow-bored','N',1,'2009-10-22 00:02:14'),('to-be-called-back','en','to-be-called-back','N',1,'2009-10-22 00:02:14'),('accounting','en','accounting','N',1,'2009-10-22 00:02:14'),('office-code','en','office-code','N',1,'2009-10-22 00:02:14'),('san-francisco','en','san-francisco','N',1,'2009-10-22 00:02:14'),('at-customers-request','en','at-customers-request','N',1,'2009-10-22 00:02:14'),('system-status-msg','en','system-status-msg','N',1,'2009-10-22 00:02:14'),('im-sorry-unable-to-connect-to-eng','en','im-sorry-unable-to-connect-to-eng','N',1,'2009-10-22 00:02:14'),('priv-recordintro','en','priv-recordintro','N',1,'2009-10-22 00:02:14'),('midnight','en','midnight','N',1,'2009-10-22 00:02:14'),('tonight','en','tonight','N',1,'2009-10-22 00:02:14'),('all-outgoing-lines-unavailable','en','all-outgoing-lines-unavailable','N',1,'2009-10-22 00:02:14'),('T-to-enable-ancmnt','en','T-to-enable-ancmnt','N',1,'2009-10-22 00:02:14'),('network-operations','en','network-operations','N',1,'2009-10-22 00:02:14'),('afternoon','en','afternoon','N',1,'2009-10-22 00:02:14'),('spy-sip','en','spy-sip','N',1,'2009-10-22 00:02:14'),('maximum','en','maximum','N',1,'2009-10-22 00:02:14'),('if-this-is-not-correct','en','if-this-is-not-correct','N',1,'2009-10-22 00:02:14'),('atlantic','en','atlantic','N',1,'2009-10-22 00:02:14'),('call-forward','en','call-forward','N',1,'2009-10-22 00:02:14'),('channel','en','channel','N',1,'2009-10-22 00:02:14'),('please-hang-up-and-dial-operator','en','please-hang-up-and-dial-operator','N',1,'2009-10-22 00:02:14'),('menu','en','menu','N',1,'2009-10-22 00:02:14'),('this-call-may-be-monitored-or-recorded','en','this-call-may-be-monitored-or-recorded','N',1,'2009-10-22 00:02:14'),('vm-intro','en','Introduction','Please leave your message after the tone. When done hang up or press the pound key.',1,'2009-10-22 00:02:12'),('vm-from','en','From','From.',1,'2009-10-22 00:02:12'),('conf-errormenu','en','Invalid Choice','Invalid choice.',1,'2009-10-22 00:02:13'),('vm-first','en','First','First.',1,'2009-10-22 00:02:12'),('conf-invalidpin','en','Invalid PIN','That PIN is invalid for this conference.',1,'2009-10-22 00:02:13'),('conf-usermenu','en','User Menu','Please press one to mute or unmute your staff.',1,'2009-10-22 00:02:14'),('vm-login','en','Mailbox','Mailbox.',1,'2009-10-22 00:02:14'),('press-8','en','press-8','N',1,'2009-10-22 00:02:15'),('pls-enter-conf-password','en','pls-enter-conf-password','N',1,'2009-10-22 00:02:15'),('dir-firstlast','en','dir-firstlast','N',1,'2009-10-22 00:02:15'),('dns','en','dns','N',1,'2009-10-22 00:02:15'),('q-dot-9thirty1','en','q-dot-9thirty1','N',1,'2009-10-22 00:02:15'),('account-balance-is','en','account-balance-is','N',1,'2009-10-22 00:02:15'),('wish-to-continue','en','wish-to-continue','N',1,'2009-10-22 00:02:15'),('press-2','en','press-2','N',1,'2009-10-22 00:02:15'),('local-authorities','en','local-authorities','N',1,'2009-10-22 00:02:15'),('hear-toilet-flush','en','hear-toilet-flush','N',1,'2009-10-22 00:02:15'),('1-for-am-2-for-pm','en','1-for-am-2-for-pm','N',1,'2009-10-22 00:02:15'),('comma','en','comma','N',1,'2009-10-22 00:02:15'),('percent','en','percent','N',1,'2009-10-22 00:02:15'),('privacy-blocked','en','privacy-blocked','N',1,'2009-10-22 00:02:15'),('if-you-know-the','en','if-you-know-the','N',1,'2009-10-22 00:02:15'),('georgia','en','georgia','N',1,'2009-10-22 00:02:15'),('default-attendant','en','default-attendant','N',1,'2009-10-22 00:02:15'),('staff','en','staff','N',1,'2009-10-22 00:02:15'),('maine','en','maine','N',1,'2009-10-22 00:02:15'),('someone-you-trust3','en','someone-you-trust3','N',1,'2009-10-22 00:02:15'),('design','en','design','N',1,'2009-10-22 00:02:16'),('the-party-you-are-calling','en','the-party-you-are-calling','N',1,'2009-10-22 00:02:16'),('away-naughty-girl','en','away-naughty-girl','N',1,'2009-10-22 00:02:16'),('digits/0','en','digits/0','N',1,'2009-10-22 00:02:17'),('vm-duration','en','vm-duration','N',1,'2009-10-22 00:02:19'),('las-vegas','en','las-vegas','N',1,'2009-10-22 00:02:19'),('airport','en','airport','N',1,'2009-10-22 00:02:19'),('engineering','en','engineering','N',1,'2009-10-22 00:02:19'),('day','en','day','N',1,'2009-10-22 00:02:19'),('please-hang-up-and-try-again','en','please-hang-up-and-try-again','N',1,'2009-10-22 00:02:19'),('who-would-you-like-to-call','en','who-would-you-like-to-call','N',1,'2009-10-22 00:02:19'),('a-charge-for-this-svc','en','a-charge-for-this-svc','N',1,'2009-10-22 00:02:19'),('customer-relations','en','customer-relations','N',1,'2009-10-22 00:02:19'),('to-hear-msg-again','en','to-hear-msg-again','N',1,'2009-10-22 00:02:19'),('count','en','count','N',1,'2009-10-22 00:02:19'),('digits/star','en','star','star.',1,'2009-10-22 00:02:18'),('digits/14','en','14','12345.',1,'2009-10-22 00:02:18'),('digits/19','en','19','19.',1,'2009-10-22 00:02:18'),('digits/2','en','2','2.',1,'2009-10-22 00:02:18'),('digits/h-16','en','16th','16th.',1,'2009-10-22 00:02:18'),('digits/yesterday','en','yesterday','yesterday.',1,'2009-10-22 00:02:18'),('digits/day-6','en','Saturday','Saturday.',1,'2009-10-22 00:02:18'),('digits/15','en','15','15.',1,'2009-10-22 00:02:18'),('digits/6','en','6','6.',1,'2009-10-22 00:02:18'),('digits/hundred','en','hundred','hundred.',1,'2009-10-22 00:02:18'),('digits/7','en','7','7.',1,'2009-10-22 00:02:18'),('digits/mon-10','en','November','November.',1,'2009-10-22 00:02:18'),('digits/16','en','16','16.',1,'2009-10-22 00:02:18'),('digits/h-3','en','3rd','3rd.',1,'2009-10-22 00:02:18'),('conf-onlyperson','en','Only Person','You are currently the only person in this conference.',1,'2009-10-22 00:02:15'),('digits/h-6','en','6th','6th.',1,'2009-10-22 00:02:16'),('digits/10','en','10','10.',1,'2009-10-22 00:02:16'),('digits/h-9','en','9th','9th.',1,'2009-10-22 00:02:16'),('digits/h-1','en','1th','1th.',1,'2009-10-22 00:02:16'),('digits/18','en','18','18.',1,'2009-10-22 00:02:16'),('digits/12','en','12','12.',1,'2009-10-22 00:02:16'),('digits/a-m','en','AM','AM.',1,'2009-10-22 00:02:16'),('digits/90','en','90','90.',1,'2009-10-22 00:02:16'),('digits/dollars','en','dollars','dollars.',1,'2009-10-22 00:02:16'),('digits/mon-3','en','April','April.',1,'2009-10-22 00:02:16'),('digits/day-5','en','Friday','Friday.',1,'2009-10-22 00:02:16'),('digits/20','en','20','20.',1,'2009-10-22 00:02:16'),('digits/17','en','17','17.',1,'2009-10-22 00:02:16'),('digits/mon-2','en','March','March.',1,'2009-10-22 00:02:16'),('digits/h-30','en','30th','30th.',1,'2009-10-22 00:02:16'),('digits/9','en','9','9.',1,'2009-10-22 00:02:16'),('digits/h-17','en','17th','17th.',1,'2009-10-22 00:02:16'),('digits/mon-7','en','August','August.',1,'2009-10-22 00:02:16'),('digits/h-12','en','12th','12th.',1,'2009-10-22 00:02:16'),('digits/mon-4','en','May','May.',1,'2009-10-22 00:02:16'),('digits/70','en','70','70.',1,'2009-10-22 00:02:16'),('digits/oclock','en','oclock','oclock.',1,'2009-10-22 00:02:16'),('digits/tomorrow','en','tomorrow','tomorrow.',1,'2009-10-22 00:02:16'),('digits/mon-11','en','December','December.',1,'2009-10-22 00:02:16'),('digits/4','en','4','4.',1,'2009-10-22 00:02:17'),('digits/13','en','13','13.',1,'2009-10-22 00:02:17'),('digits/h-2','en','2nd','2nd.',1,'2009-10-22 00:02:17'),('digits/h-19','en','19th','19th.',1,'2009-10-22 00:02:17'),('digits/day-0','en','Sunday','Sunday.',1,'2009-10-22 00:02:17'),('digits/h-4','en','4th','4th.',1,'2009-10-22 00:02:17'),('digits/day-3','en','Wednesday','Wednesday.',1,'2009-10-22 00:02:17'),('digits/at','en','at','at',1,'2009-10-22 00:02:17'),('digits/mon-5','en','June','June.',1,'2009-10-22 00:02:17'),('digits/h-20','en','20th','20th.',1,'2009-10-22 00:02:17'),('digits/50','en','50','50.',1,'2009-10-22 00:02:17'),('digits/mon-9','en','October','October.',1,'2009-10-22 00:02:17'),('digits/oh','en','oh','oh.',1,'2009-10-22 00:02:17'),('digits/h-18','en','18th','18th.',1,'2009-10-22 00:02:17'),('digits/40','en','40','40.',1,'2009-10-22 00:02:17'),('digits/minus','en','minus','Minus',1,'2009-10-22 00:02:17'),('digits/pound','en','pound','pound.',1,'2009-10-22 00:02:17'),('digits/h-7','en','7th','7th.',1,'2009-10-22 00:02:17'),('digits/3','en','3','3.',1,'2009-10-22 00:02:17'),('digits/8','en','8','8.',1,'2009-10-22 00:02:17'),('digits/h-11','en','11th','11th.',1,'2009-10-22 00:02:17'),('digits/day-2','en','Tuesday','Tuesday.',1,'2009-10-22 00:02:17'),('digits/h-13','en','13th','13th.',1,'2009-10-22 00:02:17'),('digits/h-5','en','5th','5th.',1,'2009-10-22 00:02:17'),('digits/h-10','en','10th','10th.',1,'2009-10-22 00:02:18'),('digits/day-1','en','Monday','Monday.',1,'2009-10-22 00:02:18'),('digits/h-8','en','8th','8th.',1,'2009-10-22 00:02:18'),('digits/5','en','5','5.',1,'2009-10-22 00:02:18'),('digits/day-4','en','Thursday','Thursday.',1,'2009-10-22 00:02:18'),('digits/1','en','1','1.',1,'2009-10-22 00:02:18'),('digits/80','en','80','80.',1,'2009-10-22 00:02:18'),('digits/60','en','60','60.',1,'2009-10-22 00:02:18'),('digits/p-m','en','PM','PM.',1,'2009-10-22 00:02:18'),('digits/h-15','en','15th','15th.',1,'2009-10-22 00:02:18'),('digits/30','en','30','30.',1,'2009-10-22 00:02:18'),('digits/h-14','en','14th','14th.',1,'2009-10-22 00:02:18'),('vm-star-cancel','en','Star to Cancel','Press star to cancel',1,'2009-10-22 00:02:15'),('digits/mon-0','en','January','January.',1,'2009-10-22 00:02:17'),('digits/mon-6','en','July','July.',1,'2009-10-22 00:02:17'),('digits/11','en','11','11.',1,'2009-10-22 00:02:18'),('is-now-being-recorded','en','is-now-being-recorded','N',1,'2009-10-22 00:02:19'),('pennies','en','pennies','N',1,'2009-10-22 00:02:19'),('central','en','central','N',1,'2009-10-22 00:02:19'),('cloudy','en','cloudy','N',1,'2009-10-22 00:02:19'),('twentieth','en','twentieth','N',1,'2009-10-22 00:02:19'),('will-not-expire','en','will-not-expire','N',1,'2009-10-22 00:02:19'),('ice','en','ice','N',1,'2009-10-22 00:02:19'),('to-hear-your-account-balance','en','to-hear-your-account-balance','N',1,'2009-10-22 00:02:19'),('pm-to-review-phrase','en','pm-to-review-phrase','N',1,'2009-10-22 00:02:19'),('astcc-balance-of-account-is','en','astcc-balance-of-account-is','N',1,'2009-10-22 00:02:19'),('for-a-list-of','en','for-a-list-of','N',1,'2009-10-22 00:02:19'),('with','en','with','N',1,'2009-10-22 00:02:19'),('email','en','email','N',1,'2009-10-22 00:02:19'),('was-last-seen','en','was-last-seen','N',1,'2009-10-22 00:02:19'),('cent','en','cent','N',1,'2009-10-22 00:02:19'),('maryland','en','maryland','N',1,'2009-10-22 00:02:19'),('on-monthly-tel-stment','en','on-monthly-tel-stment','N',1,'2009-10-22 00:02:19'),('point','en','point','N',1,'2009-10-22 00:02:19'),('indicated','en','indicated','N',1,'2009-10-22 00:02:20'),('conf-otherinparty','en','conf-otherinparty','N',1,'2009-10-22 00:02:20'),('press-hash','en','press-hash','N',1,'2009-10-22 00:02:20'),('to-dial-by-name-press','en','to-dial-by-name-press','N',1,'2009-10-22 00:02:20'),('for-quality-purposes','en','for-quality-purposes','N',1,'2009-10-22 00:02:20'),('dir-last','en','dir-last','N',1,'2009-10-22 00:02:20'),('room-service','en','room-service','N',1,'2009-10-22 00:02:20'),('an-error-has-occured','en','an-error-has-occured','N',1,'2009-10-22 00:02:20'),('position','en','position','N',1,'2009-10-22 00:02:20'),('num-outside-area','en','num-outside-area','N',1,'2009-10-22 00:02:20'),('kilobits','en','kilobits','N',1,'2009-10-22 00:02:20'),('sun','en','sun','N',1,'2009-10-22 00:02:20'),('vm-tempgreeting','en','vm-tempgreeting','N',1,'2009-10-22 00:02:20'),('main-menu','en','main-menu','N',1,'2009-10-22 00:02:20'),('divided-by','en','divided-by','N',1,'2009-10-22 00:02:20'),('one-small-step2','en','one-small-step2','N',1,'2009-10-22 00:02:20'),('thousandth','en','thousandth','N',1,'2009-10-22 00:02:20'),('temp-disconnected','en','temp-disconnected','N',1,'2009-10-22 00:02:20'),('years','en','years','N',1,'2009-10-22 00:02:20'),('outbound','en','outbound','N',1,'2009-10-22 00:02:20'),('these-are-currently','en','these-are-currently','N',1,'2009-10-22 00:02:20'),('call-waiting','en','call-waiting','N',1,'2009-10-22 00:02:20'),('sixteenth','en','sixteenth','N',1,'2009-10-22 00:02:20'),('illinois','en','illinois','N',1,'2009-10-22 00:02:20'),('eleventh','en','eleventh','N',1,'2009-10-22 00:02:20'),('your-msg-has-been-saved','en','your-msg-has-been-saved','N',1,'2009-10-22 00:02:20'),('privacy-screening-unidentified-calls','en','privacy-screening-unidentified-calls','N',1,'2009-10-22 00:02:21'),('conf-banned','en','conf-banned','N',1,'2009-10-22 00:02:21'),('month','en','month','N',1,'2009-10-22 00:02:21'),('secretary','en','secretary','N',1,'2009-10-22 00:02:21'),('if-grtg-should-expire-at','en','if-grtg-should-expire-at','N',1,'2009-10-22 00:02:21'),('inside-sales','en','inside-sales','N',1,'2009-10-22 00:02:21'),('moo2','en','moo2','N',1,'2009-10-22 00:02:21'),('wakeup-call-cancelled','en','wakeup-call-cancelled','N',1,'2009-10-22 00:02:21'),('vm-tempgreeting2','en','vm-tempgreeting2','N',1,'2009-10-22 00:02:21'),('library','en','library','N',1,'2009-10-22 00:02:21'),('kilometer','en','kilometer','N',1,'2009-10-22 00:02:21'),('chemistry','en','chemistry','N',1,'2009-10-22 00:02:21'),('backslash','en','backslash','N',1,'2009-10-22 00:02:21'),('at-any-time','en','at-any-time','N',1,'2009-10-22 00:02:21'),('to-hear-net-status','en','to-hear-net-status','N',1,'2009-10-22 00:02:21'),('terabytes','en','terabytes','N',1,'2009-10-22 00:02:21'),('to-rec-yr-temp-grtg','en','to-rec-yr-temp-grtg','N',1,'2009-10-22 00:02:21'),('morning','en','morning','N',1,'2009-10-22 00:02:21'),('millionth','en','millionth','N',1,'2009-10-22 00:02:21'),('connecting','en','connecting','N',1,'2009-10-22 00:02:21'),('will-reflect-charge-of','en','will-reflect-charge-of','N',1,'2009-10-22 00:02:21'),('pls-try-area-code','en','pls-try-area-code','N',1,'2009-10-22 00:02:21'),('public-relations','en','public-relations','N',1,'2009-10-22 00:02:21'),('fresno','en','fresno','N',1,'2009-10-22 00:02:21'),('to-place-outgoing-call','en','to-place-outgoing-call','N',1,'2009-10-22 00:02:21'),('motor-pool','en','motor-pool','N',1,'2009-10-22 00:02:21'),('thanks-for-calling-today','en','thanks-for-calling-today','N',1,'2009-10-22 00:02:21'),('privacy-to-blacklist-this-number','en','privacy-to-blacklist-this-number','N',1,'2009-10-22 00:02:21'),('montana','en','montana','N',1,'2009-10-22 00:02:21'),('enter-conf-call-number','en','enter-conf-call-number','N',1,'2009-10-22 00:02:22'),('to-erase-yr-temp-grtg','en','to-erase-yr-temp-grtg','N',1,'2009-10-22 00:02:22'),('fortieth','en','fortieth','N',1,'2009-10-22 00:02:22'),('dir-multi9','en','dir-multi9','N',1,'2009-10-22 00:02:22'),('you-can-press','en','you-can-press','N',1,'2009-10-22 00:02:22'),('days','en','days','N',1,'2009-10-22 00:02:22'),('los-angeles','en','los-angeles','N',1,'2009-10-22 00:02:22'),('card-balance-is','en','card-balance-is','N',1,'2009-10-22 00:02:22'),('the-number-u-dialed','en','the-number-u-dialed','N',1,'2009-10-22 00:02:22'),('mathematics','en','mathematics','N',1,'2009-10-22 00:02:22'),('to-send-a-reply','en','to-send-a-reply','N',1,'2009-10-22 00:02:22'),('call-requres','en','call-requres','N',1,'2009-10-22 00:02:22'),('error-number','en','error-number','N',1,'2009-10-22 00:02:22'),('range','en','range','N',1,'2009-10-22 00:02:22'),('if-u-know-ext-dial','en','if-u-know-ext-dial','N',1,'2009-10-22 00:02:22'),('pls-entr-num-uwish2-call','en','pls-entr-num-uwish2-call','N',1,'2009-10-22 00:02:22'),('period','en','period','N',1,'2009-10-22 00:02:22'),('new-accounts','en','new-accounts','N',1,'2009-10-22 00:02:22'),('less-than','en','less-than','N',1,'2009-10-22 00:02:22'),('privacy-if-error-leave-message-or-hangup','en','privacy-if-error-leave-message-or-hangup','N',1,'2009-10-22 00:02:22'),('connection-timed-out','en','connection-timed-out','N',1,'2009-10-22 00:02:22'),('for-tech-support','en','for-tech-support','N',1,'2009-10-22 00:02:22'),('vm-newuser','en','vm-newuser','N',1,'2009-10-22 00:02:22'),('is-in-use','en','is-in-use','N',1,'2009-10-22 00:02:22'),('wakeup-call','en','wakeup-call','N',1,'2009-10-22 00:02:22'),('mail','en','mail','N',1,'2009-10-22 00:02:22'),('press-tilde','en','press-tilde','N',1,'2009-10-22 00:02:23'),('washington','en','washington','N',1,'2009-10-22 00:02:23'),('vm-savefolder','en','Save Folder','Which folder should I save the message too.',1,'2009-10-22 00:02:20'),('auth-incorrect','en','Incorrect','Password incorrect. Please enter your password followed by the pound key.',1,'2009-10-22 00:02:21'),('vm-undelete','en','7 Undelete','Press seven to undelete this message.',1,'2009-10-22 00:02:21'),('vm-theperson','en','Person At','The person at extension.',1,'2009-10-22 00:02:22'),('pbx-invalid','en','Invalid Extension','I am sorry. That\'s not a valid extension. Please try again.',1,'2009-10-22 00:02:22'),('vm-review','en','Review Menu','Press one to accept this recording. Press two to listen to it. Press three to rerecord your message.',1,'2009-10-22 00:02:22'),('west-virginia','en','west-virginia','N',1,'2009-10-22 00:02:23'),('sleet','en','sleet','N',1,'2009-10-22 00:02:23'),('call-fwd-parallel','en','call-fwd-parallel','N',1,'2009-10-22 00:02:23'),('hash','en','hash','N',1,'2009-10-22 00:02:23'),('priv-callee-options','en','priv-callee-options','N',1,'2009-10-22 00:02:23'),('nbdy-avail-to-take-call','en','nbdy-avail-to-take-call','N',1,'2009-10-22 00:02:23'),('weather','en','weather','N',1,'2009-10-22 00:02:23'),('computer-friend1','en','computer-friend1','N',1,'2009-10-22 00:02:23'),('northerly','en','northerly','N',1,'2009-10-22 00:02:23'),('to-reach-operator','en','to-reach-operator','N',1,'2009-10-22 00:02:23'),('conf-sysopreq','en','conf-sysopreq','N',1,'2009-10-22 00:02:23'),('oakland','en','oakland','N',1,'2009-10-22 00:02:23'),('auth-thankyou','en','auth-thankyou','N',1,'2009-10-22 00:02:23'),('in-the-queue','en','in-the-queue','N',1,'2009-10-22 00:02:23'),('calls-waiting-for-rep','en','calls-waiting-for-rep','N',1,'2009-10-22 00:02:23'),('hurricane','en','hurricane','N',1,'2009-10-22 00:02:23'),('call-preempted','en','call-preempted','N',1,'2009-10-22 00:02:23'),('duplication','en','duplication','N',1,'2009-10-22 00:02:23'),('for-investor-relations','en','for-investor-relations','N',1,'2009-10-22 00:02:23'),('to-change-your-pin-number','en','to-change-your-pin-number','N',1,'2009-10-22 00:02:23'),('wakeup-for-one-time','en','wakeup-for-one-time','N',1,'2009-10-22 00:02:23'),('you-dialed-wrong-number','en','you-dialed-wrong-number','N',1,'2009-10-22 00:02:23'),('that-tickles','en','that-tickles','N',1,'2009-10-22 00:02:23'),('at-sign','en','at-sign','N',1,'2009-10-22 00:02:23'),('this-is-the-voice-mail-system','en','this-is-the-voice-mail-system','N',1,'2009-10-22 00:02:23'),('later','en','later','N',1,'2009-10-22 00:02:24'),('pascal','en','pascal','N',1,'2009-10-22 00:02:24'),('T-to-rec-ancmnt','en','T-to-rec-ancmnt','N',1,'2009-10-22 00:02:24'),('limit-simul-calls','en','limit-simul-calls','N',1,'2009-10-22 00:02:24'),('not-yet-assigned','en','not-yet-assigned','N',1,'2009-10-22 00:02:24'),('indianapolis','en','indianapolis','N',1,'2009-10-22 00:02:24'),('calls','en','calls','N',1,'2009-10-22 00:02:24'),('something-terribly-wrong','en','something-terribly-wrong','N',1,'2009-10-22 00:02:24'),('now','en','now','N',1,'2009-10-22 00:02:24'),('teletubbie-murder','en','teletubbie-murder','N',1,'2009-10-22 00:02:24'),('minimum','en','minimum','N',1,'2009-10-22 00:02:24'),('bookstore','en','bookstore','N',1,'2009-10-22 00:02:24'),('year','en','year','N',1,'2009-10-22 00:02:24'),('distribution','en','distribution','N',1,'2009-10-22 00:02:24'),('to-rmv-num-blklist','en','to-rmv-num-blklist','N',1,'2009-10-22 00:02:24'),('moving','en','moving','N',1,'2009-10-22 00:02:24'),('feature-not-avail-line','en','feature-not-avail-line','N',1,'2009-10-22 00:02:24'),('conf-youareinconfnum','en','conf-youareinconfnum','N',1,'2009-10-22 00:02:24'),('unavailable','en','unavailable','N',1,'2009-10-22 00:02:24'),('press-pound','en','press-pound','N',1,'2009-10-22 00:02:24'),('has-been-cleared','en','has-been-cleared','N',1,'2009-10-22 00:02:24'),('advised-to-seek-shelter','en','advised-to-seek-shelter','N',1,'2009-10-22 00:02:24'),('server','en','server','N',1,'2009-10-22 00:02:25'),('for','en','for','N',1,'2009-10-22 00:02:25'),('partially','en','partially','N',1,'2009-10-22 00:02:25'),('step-in-stream','en','step-in-stream','N',1,'2009-10-22 00:02:25'),('not-yet-connected','en','not-yet-connected','N',1,'2009-10-22 00:02:25'),('call-fwd-no-ans','en','call-fwd-no-ans','N',1,'2009-10-22 00:02:25'),('sorry2','en','sorry2','N',1,'2009-10-22 00:02:25'),('headed-towards','en','headed-towards','N',1,'2009-10-22 00:02:25'),('invalid-date','en','invalid-date','N',1,'2009-10-22 00:02:25'),('your-account','en','your-account','N',1,'2009-10-22 00:02:25'),('astcc-followed-by-the-hash-key','en','astcc-followed-by-the-hash-key','N',1,'2009-10-22 00:02:25'),('on-busy','en','on-busy','N',1,'2009-10-22 00:02:25'),('new-jersey','en','new-jersey','N',1,'2009-10-22 00:02:25'),('minnesota','en','minnesota','N',1,'2009-10-22 00:02:25'),('feet','en','feet','N',1,'2009-10-22 00:02:25'),('minute','en','minute','N',1,'2009-10-22 00:02:25'),('user','en','user','N',1,'2009-10-22 00:02:25'),('vm-tempgreetactive','en','vm-tempgreetactive','N',1,'2009-10-22 00:02:25'),('cents-per-minute','en','cents-per-minute','N',1,'2009-10-22 00:02:25'),('this-call-will-end-in','en','this-call-will-end-in','N',1,'2009-10-22 00:02:25'),('to-rerecord-it','en','to-rerecord-it','N',1,'2009-10-22 00:02:25'),('no-info-about-number','en','no-info-about-number','N',1,'2009-10-22 00:02:25'),('rainy','en','rainy','N',1,'2009-10-22 00:02:25'),('sorry-mailbox-full','en','sorry-mailbox-full','N',1,'2009-10-22 00:02:25'),('wisconsin','en','wisconsin','N',1,'2009-10-22 00:02:25'),('marryme','en','marryme','N',1,'2009-10-22 00:02:25'),('jedi-extension-trick','en','jedi-extension-trick','N',1,'2009-10-22 00:02:26'),('purchasing','en','purchasing','N',1,'2009-10-22 00:02:26'),('fahrenheit','en','fahrenheit','N',1,'2009-10-22 00:02:26'),('clouds','en','clouds','N',1,'2009-10-22 00:02:26'),('enter-a-time','en','enter-a-time','N',1,'2009-10-22 00:02:26'),('last-error-was','en','last-error-was','N',1,'2009-10-22 00:02:26'),('towards','en','towards','N',1,'2009-10-22 00:02:26'),('has-arrived-at','en','has-arrived-at','N',1,'2009-10-22 00:02:26'),('dir-first','en','dir-first','N',1,'2009-10-22 00:02:26'),('voice-mail-system','en','voice-mail-system','N',1,'2009-10-22 00:02:26'),('explanation','en','explanation','N',1,'2009-10-22 00:02:26'),('conf-userwilljoin','en','conf-userwilljoin','N',1,'2009-10-22 00:02:26'),('to-use-def-attendant','en','to-use-def-attendant','N',1,'2009-10-22 00:02:26'),('info-about-last-call','en','info-about-last-call','N',1,'2009-10-22 00:02:26'),('portnumber','en','portnumber','N',1,'2009-10-22 00:02:26'),('eightieth','en','eightieth','N',1,'2009-10-22 00:02:26'),('recorded','en','recorded','N',1,'2009-10-22 00:02:26'),('privacy-you-are-calling-from','en','privacy-you-are-calling-from','N',1,'2009-10-22 00:02:26'),('transportation','en','transportation','N',1,'2009-10-22 00:02:26'),('or-press','en','or-press','N',1,'2009-10-22 00:02:26'),('because-paranoid','en','because-paranoid','N',1,'2009-10-22 00:02:26'),('hello-world','en','hello-world','N',1,'2009-10-22 00:02:26'),('training','en','training','N',1,'2009-10-22 00:02:26'),('lyrics-louie-louie','en','lyrics-louie-louie','N',1,'2009-10-22 00:02:26'),('dont-know-who-sent','en','dont-know-who-sent','N',1,'2009-10-22 00:02:26'),('it-now','en','it-now','N',1,'2009-10-22 00:02:26'),('not-taking-your-call','en','not-taking-your-call','N',1,'2009-10-22 00:02:26'),('vm-saved','en','Saved','Saved',1,'2009-10-22 00:02:23'),('vm-sorry','en','Sorry','I am sorry I did not understand your response.',1,'2009-10-22 00:02:24'),('vm-minutes','en','Minutes','minutes',1,'2009-10-22 00:02:23'),('vm-savemessage','en','9 Save Message','Or nine to save this message.',1,'2009-10-22 00:02:24'),('conf-noempty','en','No Emtpy','No empty conferences currently exist.',1,'2009-10-22 00:02:24'),('vm-Cust4','en','Folder 8','Folder 8.',1,'2009-10-22 00:02:24'),('vm-isunavail','en','Is unavailable','Is unavailable.',1,'2009-10-22 00:02:25'),('pbx-transfer','en','Transfer','Transfer',1,'2009-10-22 00:02:26'),('or','en','Or','Or.',1,'2009-10-22 00:02:25'),('vm-incorrect','en','Login Incorrect','Login incorrect. Mailbox.',1,'2009-10-22 00:02:23'),('south-carolina','en','south-carolina','N',1,'2009-10-22 00:02:26'),('this','en','this','N',1,'2009-10-22 00:02:27'),('remote-already-in-this-mode','en','remote-already-in-this-mode','N',1,'2009-10-22 00:02:27'),('unidentified-no-callback','en','unidentified-no-callback','N',1,'2009-10-22 00:02:27'),('cannot-complete-network-error','en','cannot-complete-network-error','N',1,'2009-10-22 00:02:27'),('continue-in-english','en','continue-in-english','N',1,'2009-10-22 00:02:27'),('degrees','en','degrees','N',1,'2009-10-22 00:02:27'),('disconnected','en','disconnected','N',1,'2009-10-22 00:02:27'),('claims','en','claims','N',1,'2009-10-22 00:02:27'),('to-rerecord-yr-message','en','to-rerecord-yr-message','N',1,'2009-10-22 00:02:27'),('flagged-for-lea','en','flagged-for-lea','N',1,'2009-10-22 00:02:27'),('new-mexico','en','new-mexico','N',1,'2009-10-22 00:02:27'),('are-you-still-there2','en','are-you-still-there2','N',1,'2009-10-22 00:02:27'),('finance','en','finance','N',1,'2009-10-22 00:02:27'),('vm-invalidpassword','en','vm-invalidpassword','N',1,'2009-10-22 00:02:27'),('if-maint-contract-or-emergency','en','if-maint-contract-or-emergency','N',1,'2009-10-22 00:02:27'),('address','en','address','N',1,'2009-10-22 00:02:27'),('indiana','en','indiana','N',1,'2009-10-22 00:02:27'),('hang-on-a-second-angry','en','hang-on-a-second-angry','N',1,'2009-10-22 00:02:27'),('fourth','en','fourth','N',1,'2009-10-22 00:02:27'),('kansas','en','kansas','N',1,'2009-10-22 00:02:27'),('to-enter-a-diff-number','en','to-enter-a-diff-number','N',1,'2009-10-22 00:02:27'),('goodbye','en','goodbye','N',1,'2009-10-22 00:02:27'),('to-blklist-last-caller','en','to-blklist-last-caller','N',1,'2009-10-22 00:02:27'),('systems','en','systems','N',1,'2009-10-22 00:02:28'),('pm-announcement-number','en','pm-announcement-number','N',1,'2009-10-22 00:02:28'),('check-number-dial-again','en','check-number-dial-again','N',1,'2009-10-22 00:02:28'),('weasels-eaten-phonesys','en','weasels-eaten-phonesys','N',1,'2009-10-22 00:02:28'),('sunny','en','sunny','N',1,'2009-10-22 00:02:28'),('conditions','en','conditions','N',1,'2009-10-22 00:02:28'),('touchtone2','en','touchtone2','N',1,'2009-10-22 00:02:28'),('gambling-drunk','en','gambling-drunk','N',1,'2009-10-22 00:02:28'),('press-return','en','press-return','N',1,'2009-10-22 00:02:28'),('conf-hasleft','en','conf-hasleft','N',1,'2009-10-22 00:02:28'),('denver','en','denver','N',1,'2009-10-22 00:02:28'),('portland','en','portland','N',1,'2009-10-22 00:02:28'),('dir-pls-enter','en','dir-pls-enter','N',1,'2009-10-22 00:02:28'),('miles-per-hour','en','miles-per-hour','N',1,'2009-10-22 00:02:28'),('quality-assurance','en','quality-assurance','N',1,'2009-10-22 00:02:28'),('activated','en','activated','N',1,'2009-10-22 00:02:28'),('pennsylvania','en','pennsylvania','N',1,'2009-10-22 00:02:28'),('bytes','en','bytes','N',1,'2009-10-22 00:02:28'),('num-not-in-db','en','num-not-in-db','N',1,'2009-10-22 00:02:28'),('vm-msginstruct','en','Message Instructions','To hear the next message press 6. To repeat this message press 5. To hear the previous message press 4. To delete or undelete this message press zero. To quit voicemail press pound.',1,'2009-10-22 00:01:29'),('vm-tocallnum','en','1 Call Number','Press one to call this number',1,'2009-10-22 00:01:30'),('vm-saveoper','en','Accept Recording','Press 1 to accept this recording. Otherwise, please continue to hold.',1,'2009-10-22 00:01:30'),('conf-getchannel','en','Enter Channel','Please enter the channel number followed by the pound key.',1,'2009-10-22 00:01:32'),('vm-delete','en','7 Delete Message','Press 7 to delete this message.',1,'2009-10-22 00:01:32'),('vm-prev','en','Previous Message','Press four for the previous message.',1,'2009-10-22 00:02:27'),('vm-then-pound','en','Then Pound','Then press pound.',1,'2009-10-22 00:02:27'),('vm-starmain','en','Star to Main','Press star to return to the main menu.',1,'2009-10-22 00:02:27'),('vm-nomore','en','No More','No more messages.',1,'2009-10-22 00:02:27'),('tt-somethingwrong','en','Wrong','Something is terribly wrong.',1,'2009-10-22 00:02:27'),('all-circuits-busy-now','en','All Circuits Are Busy','all circuits are busy now',1,'2009-10-22 00:02:27'),('conf-lockednow','en','Now Locked','The conference is now locked.',1,'2009-10-22 00:02:27'),('tt-monkeys','en','Monkeys','',1,'2009-10-22 00:02:28'),('vm-nonumber','en','No number','I am afriad I don\'t know who sent this message.',1,'2009-10-22 00:01:53'),('not-auth-pstn','en','not authorized','you are not authorized call out using the PSTN',1,'2009-10-22 00:01:33'),('pbx-invalidpark','en','No Park','I am sorry there is no call parked on that extension. Please try again.',1,'2009-10-22 00:01:29'),('vm-instructions','en','Instructions','To look into your messages press one now. You may quit voicemail at any time by pressing the pound key.',1,'2009-10-22 00:01:33'),('conf-adminmenu','en','Admin Menu','Please press one to mute or unmute yourself or press two to log or unlog the conference.',1,'2009-10-22 00:01:42'),('conf-invalid','en','Invalid','That is not a valid conference number. Please try again.',1,'2009-10-22 00:01:48'),('tt-allbusy','en','All Busy','All representatives of the household are currently assisting other telemarketers. Please hold and your call will be answered in the order it was received.',1,'2009-10-22 00:01:49'),('dir-intro','en','Introduction','Welcome to the directory. Please enter the first three letters of your party\'s last name using your touch tone key pad. Use the seven key for Q and the nine key for Z.',1,'2009-10-22 00:01:49'),('privacy-prompt','en','Number Prompt','Please enter your ten digit phone number starting with the area code',1,'2009-10-22 00:01:50'),('vm-password','en','Password','Password.',1,'2009-10-22 00:01:51'),('vm-nobox','en','No Box','You can not reply to this message because the sender does not have a mailbox.',1,'2009-10-22 00:01:52'),('vm-repeat','en','5 to Repeat','Press five to repeat the current message.',1,'2009-10-22 00:01:54'),('vm-mismatch','en','Password mismatch','The password you entered and re-entered did not match. Please try again.',1,'2009-10-22 00:01:54'),('vm-press','en','Press','Press.',1,'2009-10-22 00:01:56'),('vm-rec-busy','en','Record Busy','After the tone say your busy message and then press the pound key.',1,'2009-10-22 00:01:59'),('dir-nomore','en','No More Entries','There are no more compatible entires in the directory.',1,'2009-10-22 00:01:59'),('privacy-unident','en','Unidentified','The party you are trying to reach does not accept unidentified calls.',1,'2009-10-22 00:01:59'),('vm-reenterpassword','en','Reenter Password','Please reenter your password followed by the pound key.',1,'2009-10-22 00:02:00'),('vm-Cust2','en','Folder 6','Folder 6.',1,'2009-10-22 00:02:03'),('privacy-incorrect','en','Not Valid','I am sorry that number is not valid.',1,'2009-10-22 00:02:04'),('vm-options','en','Option Instructions','Press one record your unavailable message. Press two to record your busy message. Press three to record your name. Press four to change your password. Pres star to return to the main menu.',1,'2009-10-22 00:02:05'),('agent-user','en','Agent Log In','Agent Login. Please enter your agent number followed by the pound key.',1,'2009-10-22 00:02:06'),('tt-monkeysintro','en','Monkeys Have','They have been carried away by monkeys.',1,'2009-10-22 00:02:07'),('vm-messages','en','Messages','Messages.',1,'2009-10-22 00:02:07'),('vm-next','en','Six Next','Press six to play the next message.',1,'2009-10-22 00:02:11'),('vm-rec-name','en','Record Name','After the tone say your name and then press the pound key.',1,'2009-10-22 00:02:12'),('vm-rec-unv','en','Record Unavailable','After the tone say your unavailable message and press the pound key.',1,'2009-10-22 00:02:12'),('vm-advopts','en','3 - Advanced Options','Press 3 for advanced options.',1,'2009-10-22 00:02:13'),('agent-alreadyon','en','Already On','That agent is already logged on. Please enter your agent number followed by the pound key.',1,'2009-10-22 00:02:13'),('vm-passchanged','en','Password Changed','Your password has been changed.',1,'2009-10-22 00:02:15'),('digits/today','en','today','today.',1,'2009-10-22 00:02:16'),('digits/mon-1','en','February','February.',1,'2009-10-22 00:02:17'),('digits/million','en','million','million.',1,'2009-10-22 00:02:18'),('digits/mon-8','en','September','September.',1,'2009-10-22 00:02:18'),('digits/thousand','en','thousand','thousand.',1,'2009-10-22 00:02:18'),('vm-extension','en','Extension','Extension.',1,'2009-10-22 00:02:19'),('queue-youarenext','en','You Are Next','Your call is now first in line and will be answered by the next available representative.',1,'2009-10-22 00:01:47'),('vm-tomakecall','en','4 Outgoing Call','Press four to place an outgoing call.',1,'2009-10-22 00:01:53'),('phonetic/s_p','en','Sierra','Sierra.',1,'2009-10-22 00:01:58'),('conf-kicked','en','Kicked','You have been kicked from this conference.',1,'2009-10-22 00:01:59'),('ss-noservice','en','No Service','The number you have dialed is not in service. Please check the number and try again.',1,'2009-10-22 00:02:00'),('vm-forward','en','Ext or Directory','Press 1 to enter an extension. Press 2 to use a directory.',1,'2009-10-22 00:02:00'),('vm-leavemsg','en','5 Leave Msg','Press five to leave a message',1,'2009-10-22 00:02:04'),('queue-minutes','en','Minutes','Minutes.',1,'2009-10-22 00:02:07'),('vm-tohearenv','en','3 Envelope','Press three to hear the message envelope.',1,'2009-10-22 00:02:19'),('vm-tocallback','en','2 Callback','Press two to call the person who sent this message.',1,'2009-10-22 00:02:21'),('vm-calldiffnum','en','2 Different Number','Press 2 to enter a different number.',1,'2009-10-22 00:02:22'),('vm-incorrect-mailbox','en','Login Incorrect','Login Incorrect. Mailbox.',1,'2009-10-22 00:02:22'),('agent-incorrect','en','Incorrect','Login incorrect. Please enter your agent number followed by the pound key.',1,'2009-10-22 00:02:24'),('vm-from-phonenumber','en','Message from','Message from phone number.',1,'2009-10-22 00:02:25'),('vm-tooshort','en','To Short','Your message is too short.',1,'2009-10-22 00:02:19'),('vm-opts','en','Option Instructions More','Press two to change folders. Press three for advanced options. Press zero for mailbox options.',1,'2009-10-22 00:02:20'),('vm-onefor','en','One For','Press one for.',1,'2009-10-22 00:02:23'),('vm-youhave','en','You Have','You have.',1,'2009-10-22 00:02:24'),('vm-newpassword','en','New Password','Please enter your new password followed by the pound key.',1,'2009-10-22 00:02:25'),('queue-thereare','en','Caller Number','You are currently caller number.',1,'2009-10-22 00:01:56'); /*!40000 ALTER TABLE `snd_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `snd_folder_files` -- DROP TABLE IF EXISTS `snd_folder_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `snd_folder_files` ( `fk_folder` int(11) NOT NULL, `filename` varchar(255) NOT NULL, UNIQUE KEY `name` (`filename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `snd_folder_files` -- LOCK TABLES `snd_folder_files` WRITE; /*!40000 ALTER TABLE `snd_folder_files` DISABLE KEYS */; INSERT INTO `snd_folder_files` VALUES (0,'mississippi'),(0,'privacy-your-callerid-is'),(0,'utah'),(0,'pls-hold-while-try'),(0,'south-dakota'),(0,'in-your-city'),(0,'ext-or-zero'),(0,'press-6'),(0,'massachusetts'),(0,'disabled'),(0,'if-this-is-correct'),(0,'thirtieth'),(0,'giggle1'),(0,'fifteenth'),(0,'wakeup-for-daily'),(0,'ms'),(0,'spy-agent'),(0,'spy-mgcp'),(0,'turn-off-recording'),(0,'freeze'),(0,'louisiana'),(0,'conf-hasjoin'),(0,'this-is-yr-wakeup-call'),(0,'tulsa'),(0,'houston'),(0,'pipe'),(0,'one-small-step'),(0,'T-changed-to'),(0,'management'),(0,'to-log-in-to-voice-mail'),(0,'press-star-cancel'),(0,'someone-you-trust2'),(0,'support'),(0,'if-grtg-played-indefinately'),(0,'no-911-1'),(0,'scattered'),(0,'for-wakeup-call'),(0,'heading'),(0,'cyclone'),(0,'race'),(0,'florida'),(0,'rhode-island'),(0,'pin-invalid'),(0,'connecticut'),(0,'spam'),(0,'international-call'),(0,'press-6-to-eject'),(0,'blue-eyed-polar-bear'),(0,'kilobytes'),(0,'interstate'),(0,'call-terminated'),(0,'euro'),(0,'then-press-pound'),(0,'miami'),(0,'encode'),(0,'astcc-account-number-invalid'),(0,'emergency'),(0,'cancelled'),(0,'clli'),(0,'screen-callee-options'),(0,'go-away2'),(0,'wtng-to-spk-w-rep'),(0,'will-expire'),(0,'connection-failed'),(0,'thank-you-cooperation'),(0,'your'),(0,'pressure'),(0,'to-call-prson-w-sent-msg'),(0,'kansas-city'),(0,'welcome'),(0,'janitorial'),(0,'fiftieth'),(0,'demo-nomatch'),(0,'minneapolis'),(0,'conf-onlypersonleft'),(0,'privacy-stop-calling-not-welcome'),(0,'sorry'),(0,'http'),(0,'pls-lv-msg-will-contact'),(0,'quote'),(0,'quarter'),(0,'thank-you-for-calling'),(0,'academic-support'),(0,'vm-opts-full'),(0,'miles'),(0,'call-quality-menu'),(0,'to-join-a-meeting'),(0,'registrar'),(0,'we-apologize'),(0,'digit'),(0,'cleveland'),(0,'just-kidding-not-upset'),(0,'to-extension'),(0,'dallas'),(0,'to-enter-a-number'),(0,'astcc-followed-by-the-pound-key'),(0,'digits'),(0,'pls-try-again'),(0,'second'),(0,'lea-may-request-info'),(0,'kilometers-per-hour'),(0,'no-empty-conferences'),(0,'disk'),(0,'development'),(0,'vm-rec-temp'),(0,'female'),(0,'added-to'),(0,'collections'),(0,'to-confirm-wakeup'),(0,'colorado-springs'),(0,'low'),(0,'astcc-login12pound'),(0,'home'),(0,'privacy-this-number-is'),(0,'dir-multi2'),(0,'telephone-in-your-pocket2'),(0,'just-kidding-not-upset2'),(0,'mountain'),(0,'port'),(0,'spy-skinny'),(0,'gigabytes'),(0,'demo-instruct'),(0,'for-english-press'),(0,'jason'),(0,'conf-peopleinconf'),(0,'honolulu'),(0,'mailroom'),(0,'demo-echotest'),(0,'touchtone1'),(0,'demo-abouttotry'),(0,'to-leave-message-for'),(0,'if-rotary-phone'),(0,'privacy-please-dial'),(0,'privacy-to-hear-our-contact-details'),(0,'philadelphia'),(0,'nevada'),(1,'agent-pass'),(7,'dir-instr'),(18,'vm-msgsaved'),(3,'queue-seconds'),(7,'not-auth-pstn'),(18,'vm-tocancel'),(4,'conf-enteringno'),(4,'conf-locked'),(18,'vm-changeto'),(11,'minutes'),(4,'conf-muted'),(11,'transfer'),(18,'vm-delete'),(11,'seconds'),(18,'vm-reachoper'),(18,'vm-nobodyavail'),(18,'vm-tocallnum'),(18,'vm-saveoper'),(18,'vm-msginstruct'),(11,'pbx-invalidpark'),(18,'vm-instructions'),(0,'thirteenth'),(0,'partly'),(0,'hold-or-dial-0'),(0,'that-is-not-rec-phn-num'),(0,'tenth'),(0,'for-billing'),(0,'i-dont-understand'),(0,'open-parenthesis'),(0,'perhaps-we-are2'),(0,'to-rerecord-announce'),(0,'you-must-first-dial'),(0,'card-is-invalid'),(0,'software'),(0,'hang-on-a-second'),(0,'pls-enter-vm-password'),(0,'hail'),(0,'abandon-all-hope'),(0,'astcc-followed-by-pound'),(0,'doing-enum-lookup'),(0,'weeks'),(0,'go-away1'),(0,'repair'),(0,'copy-center'),(0,'walks-into-bar-mail'),(0,'press-pound-to-login-star-to-hangup'),(0,'press-1'),(0,'it-services'),(0,'currently'),(0,'beaufort'),(0,'conf-thereare'),(0,'outside-transfer'),(0,'penny'),(0,'privacy-last-caller-was'),(0,'avg-speed-answer'),(0,'there-are'),(0,'system-crashed'),(0,'privacy-to-blacklist-last-caller'),(0,'tennessee'),(0,'from-unknown-caller'),(0,'colorado'),(0,'the-new-number-is'),(0,'press-escape'),(0,'im-sorry'),(0,'the-weather-at'),(0,'seventeenth'),(0,'gmt'),(0,'finals'),(0,'conference'),(0,'if-unsuccessful-speak-to'),(0,'no-112-1'),(0,'production'),(0,'cents'),(0,'administration'),(0,'starting-with-either'),(0,'atlanta'),(0,'standard'),(0,'target-attendant'),(0,'spy-h323'),(0,'san-jose'),(0,'european'),(0,'uk'),(0,'third'),(0,'deposit'),(0,'has-issued-a'),(0,'press-3'),(0,'privacy-not'),(0,'no-longer-in-service'),(0,'units'),(0,'bits'),(0,'speak-louder'),(0,'added'),(0,'removed'),(0,'fort-worth'),(0,'this-call-may-be'),(0,'restarting'),(0,'current-time-is'),(0,'ha/fan'),(0,'ha/bedroom'),(0,'ha/kelvin'),(0,'ha/amps'),(0,'ha/off'),(0,'ha/sun-room'),(0,'ha/cool'),(0,'ha/pressure'),(0,'ha/patio'),(0,'ha/xmas-lights'),(0,'ha/front'),(0,'ha/phone'),(0,'ha/foyer'),(0,'ha/security-system'),(0,'ha/heat-pump'),(0,'ha/side'),(0,'ha/decibels'),(0,'ha/porch'),(0,'ha/attic'),(0,'ha/den'),(0,'ha/ac'),(0,'ha/stove'),(0,'ha/reset'),(0,'ha/sprinklers'),(0,'ha/door'),(0,'ha/thermostat'),(0,'ha/heating'),(0,'ha/mailbox'),(0,'ha/quiet-mode'),(0,'ha/dining-room'),(0,'ha/secure'),(0,'ha/room'),(0,'ha/for-extended-status-report'),(0,'ha/watt'),(0,'ha/power-failure'),(0,'ha/decibel'),(0,'ha/well-pump'),(0,'ha/game-room'),(0,'ha/heat'),(0,'ha/hot-tub'),(0,'ha/house'),(0,'ha/lamps'),(0,'ha/yard'),(0,'ha/basement'),(0,'ha/locking'),(0,'ha/furnace'),(0,'ha/floors'),(0,'ha/callerid'),(0,'ha/system'),(0,'ha/set'),(0,'ha/volts'),(0,'ha/deck'),(0,'ha/up'),(0,'ha/pool'),(0,'ha/to-control-lights-appl'),(0,'ha/window'),(0,'ha/down'),(0,'ha/still'),(0,'ha/cooling'),(0,'ha/degree'),(0,'ha/closet'),(0,'ha/washing-machine'),(0,'ha/dc'),(0,'ha/on'),(0,'ha/ohm'),(0,'ha/fountain'),(0,'ha/alarm'),(0,'ha/is'),(0,'ha/watts'),(0,'ha/office'),(0,'ha/psi'),(0,'ha/floor'),(0,'ha/lamp'),(0,'ha/light'),(0,'ha/xmas-tree'),(0,'ha/coffee-pot'),(0,'ha/hall'),(0,'ha/back'),(0,'ha/lights'),(0,'ha/amp'),(0,'ha/baby-sleeping-mode'),(0,'ha/windows'),(0,'ha/bright'),(0,'ha/volt'),(4,'conf-adminmenu'),(18,'vm-toreply'),(7,'dir-intro-fn'),(0,'ha/play'),(0,'ha/farad'),(0,'ha/garage'),(0,'ha/living-room'),(0,'ha/water-heater'),(0,'ha/carport'),(0,'ha/doors'),(0,'ha/locked'),(0,'ha/farads'),(0,'ha/second-floor'),(0,'ha/landscape'),(0,'ha/great-room'),(0,'ha/rooms'),(0,'ha/sump-pump'),(0,'ha/first-floor'),(0,'ha/open'),(0,'ha/dryer'),(0,'ha/dim'),(0,'ha/library'),(0,'ha/ohms'),(0,'ha/unlocked'),(0,'ha/tower'),(0,'ha/guest-room'),(0,'ha/has-been-left'),(0,'ha/air-conditioner'),(0,'ha/for-wx-report'),(0,'ha/play-room'),(0,'ha/laundry'),(0,'ha/kitchen'),(0,'ha/bathroom'),(0,'ha/unlocking'),(0,'ha/degrees'),(0,'ha/master'),(0,'ha/systems'),(0,'ha/to-control-environ-sys'),(0,'ha/intruder'),(0,'ha/solar'),(0,'ha/roof'),(0,'ha/for-quick-status-report'),(0,'ha/driveway'),(0,'security'),(0,'megabytes'),(0,'astcc-please-enter-your'),(0,'enum-lookup-successful'),(0,'technical-support'),(0,'chance-of'),(0,'route-sip'),(0,'enter-num-blacklist'),(0,'information'),(0,'in-service'),(0,'reassigned-new-areacode'),(0,'network-operations-center'),(0,'sighted'),(0,'shop'),(0,'date'),(0,'misty'),(0,'a-collect-charge-of'),(0,'conf-userswilljoin'),(0,'arizona'),(0,'sacramento'),(0,'please-wait-connect-oncall-eng'),(0,'milwaukee'),(0,'euros'),(0,'slow'),(0,'oklahoma'),(0,'michigan'),(0,'campground-office'),(0,'approaching'),(0,'a-connect-charge-of'),(0,'accessible-through-system'),(0,'pls-wait-connect-call'),(0,'call'),(0,'loss-prevention'),(0,'channel-secure'),(0,'slowly'),(0,'is-at'),(0,'language'),(0,'temperature'),(0,'pls-rcrd-name-at-tone'),(0,'purposes'),(0,'is-set-to'),(0,'twisty-maze'),(0,'i-dont-understand5'),(0,'roaming'),(0,'demo-congrats'),(0,'is-currently'),(0,'variable'),(0,'show-office'),(0,'ftp'),(0,'icy'),(0,'ping'),(0,'wrong-try-again-smarty'),(0,'wakeup-daily'),(0,'billing'),(0,'you-are-caller-num'),(0,'yeah'),(0,'chris'),(0,'message-number'),(0,'say-temp-msg-prs-pound'),(0,'terabits'),(0,'hit'),(0,'dir-multi3'),(0,'male'),(0,'presales-support'),(0,'fourteenth'),(0,'twelveth'),(0,'conference-reservations'),(0,'right-bracket'),(0,'legal'),(0,'delaware'),(0,'q-dot-931'),(0,'humidity'),(0,'store-accounting'),(0,'on-no-answer'),(0,'conf-leaderhasleft'),(0,'please-enter-the'),(0,'idaho'),(0,'that-number'),(0,'unconditional'),(0,'there-is-no-customer-support'),(0,'len'),(0,'snowing'),(0,'time'),(0,'to-compose-a-message'),(0,'albuquerque'),(0,'snowy'),(0,'arlington'),(0,'to-reach-first-rep'),(0,'customer-accounts'),(0,'you-wish-to-join'),(0,'in-the'),(0,'could-lose-a-few-pounds'),(0,'sciences'),(0,'wind'),(0,'el-paso'),(0,'remote-base'),(0,'crash'),(0,'ent-target-attendant'),(0,'maintenance'),(0,'sixtieth'),(0,'john'),(0,'the-next'),(0,'has-expired'),(0,'says-thats-stupid'),(0,'tomorrow-night'),(0,'if-this-is-correct-press'),(0,'lots-o-monkeys'),(0,'beeperr'),(0,'north'),(0,'perhaps-we-are'),(0,'please-enter-your'),(0,'north-carolina'),(18,'vm-num-i-have'),(18,'vm-isonphone'),(18,'vm-INBOX'),(18,'vm-Work'),(3,'queue-youarenext'),(7,'dir-intro'),(14,'privacy-prompt'),(8,'tt-allbusy'),(0,'long-beach'),(0,'fog'),(0,'early'),(0,'made-it-up'),(0,'linux'),(0,'users'),(0,'hectopascal'),(0,'access-code'),(0,'barometric'),(0,'charlotte'),(0,'missed'),(0,'i-dont-understand3'),(0,'attention-required'),(0,'pascal2'),(0,'why-no-answer-mystery'),(0,'for-qc-and-training-purposes'),(0,'months'),(0,'conf-placeintoconf'),(0,'press-pound-save-changes'),(0,'for-yes-press'),(0,'bad'),(0,'projects'),(0,'astcc-skipping-any-punctuation'),(0,'extension'),(0,'persons-in-path-of'),(0,'is-not-set'),(0,'clear'),(0,'knots'),(0,'not-necessary-ac'),(0,'south'),(0,'please-enter-first-three-letters'),(0,'to-hear-msg-envelope'),(0,'conf-full'),(0,'abandons'),(0,'spy-unistim'),(0,'spy-local'),(0,'no-911-2'),(0,'within'),(0,'seventh'),(0,'one-moment-please'),(0,'busy-pls-hold'),(0,'virginia'),(0,'sorry-cant-let-you-do-that3'),(0,'hundredth'),(0,'boston'),(0,'queue-quantity2'),(0,'ed'),(0,'login-fail'),(0,'asterisk-friend'),(0,'telesales'),(0,'vermont'),(0,'someone-you-trust1'),(0,'falling'),(0,'cannot-complete-temp-error'),(0,'pm-prompt-number'),(0,'nautical-miles'),(0,'warning'),(0,'all-reps-busy'),(0,'to-hang-up'),(0,'not-necessary-dial-1-or-ac'),(0,'you-sound-cute'),(0,'demo-moreinfo'),(0,'easterly'),(0,'greater-than'),(0,'entr-num-rmv-blklist'),(0,'spy-misdn'),(0,'national-weather-service'),(0,'ssh'),(0,'mostly'),(0,'enter-password'),(0,'enter-ext-of-person'),(0,'internal-audit'),(0,'plugh'),(0,'quickly'),(0,'save-announce-press'),(0,'iowa'),(0,'sleeting'),(0,'pin-number-accepted'),(0,'sterling'),(0,'lunch'),(0,'available'),(0,'department'),(0,'eighteenth'),(0,'remote-already-in-this-mode-2'),(0,'oops2'),(0,'swap'),(0,'at-following-number'),(0,'we-dont-have-tech-support'),(0,'ampersand'),(0,'continue-english-press'),(0,'no-112-2'),(0,'privacy-to-whitelist-last-caller'),(0,'protocol'),(0,'T-to-disable-ancmnt'),(0,'you-seem-impatient'),(0,'status'),(0,'press-enter'),(0,'directory-assistance'),(0,'dial-here-often'),(0,'press'),(0,'your-temp-greeting'),(0,'negative'),(0,'compliance'),(0,'not-necessary-1'),(0,'duplex'),(0,'pls-try-call-later'),(0,'meters'),(0,'a-connect-charge'),(0,'complaint'),(0,'number'),(0,'to-report-emergency'),(0,'to-hang-up-2'),(0,'counseling-services'),(0,'columbus'),(0,'spy-iax2'),(0,'station'),(0,'sorry-cant-let-you-do-that2'),(0,'facilities'),(0,'hawaii'),(0,'receiving'),(0,'to-dial-by-name'),(0,'if-correct-press'),(0,'icmp'),(0,'first-in-line'),(0,'changing'),(0,'auditing'),(0,'followed-by'),(0,'our-business-hours-are'),(0,'and-prs-pound-whn-finished'),(0,'physics'),(0,'rebates'),(0,'highway'),(0,'to-report-system-network-down'),(0,'speed-dial-empty'),(0,'conf-sysopreqcancelled'),(0,'pence'),(0,'memphis'),(0,'times'),(8,'tt-weasels'),(18,'vm-nonumber'),(18,'vm-tocancelmsg'),(18,'vm-Old'),(18,'vm-whichbox'),(18,'vm-no'),(14,'privacy-thankyou'),(1,'star-for-menu-again'),(11,'beep'),(18,'vm-password'),(4,'conf-unmuted'),(18,'vm-tomakecall'),(18,'vm-undeleted'),(11,'hours'),(18,'vm-last'),(1,'agent-loggedoff'),(18,'vm-Cust5'),(18,'vm-nobox'),(18,'vm-repeat'),(18,'vm-mismatch'),(0,'communications'),(0,'post-entry-pound'),(0,'away-naughty-boy'),(0,'knock-knock'),(0,'to-hear-weather-status'),(0,'california'),(0,'conference-call'),(0,'initiated'),(0,'food-service'),(0,'to-hear-menu-again'),(0,'T-to-hear-cur-ancmnt'),(0,'food-services'),(0,'sales'),(0,'gigahertz'),(0,'directory'),(0,'printing'),(0,'number-not-answering'),(0,'investor-relations'),(0,'ceo-office'),(0,'travel'),(0,'system'),(0,'new-york'),(0,'spy-zap'),(0,'typhoon'),(0,'dir-multi1'),(0,'privacy-if-sales-call-contact-in-writing'),(0,'megabits'),(0,'good'),(0,'through'),(0,'yes-dear'),(0,'treasury'),(0,'are-you-still-there'),(0,'for-service'),(0,'up'),(0,'hertz'),(0,'near'),(0,'self-destruct-in'),(0,'west'),(0,'detroit'),(0,'has-been-set-to'),(0,'snow'),(0,'barn'),(0,'queue-quantity1'),(0,'texas'),(0,'ohio'),(0,'alaska'),(0,'new-orleans'),(0,'all-your-base'),(0,'astcc-account-balance-is'),(0,'late'),(0,'sixth'),(0,'the-monkeys-twice'),(0,'has-been'),(0,'accounts-receivable'),(0,'conf-onlyone'),(0,'de-activated'),(0,'wyoming'),(0,'believe-its-free'),(0,'to-collect-voicemail'),(0,'to-call-this-number'),(0,'chicago'),(0,'spam2'),(0,'personnel'),(0,'priv-introsaved'),(0,'phoenix'),(0,'list'),(0,'panic'),(0,'est-hold-time-is'),(0,'conf-hasentered'),(0,'will-apply'),(0,'was'),(0,'for-accounting'),(0,'down'),(0,'evening'),(0,'for-a-daily-wakeup-call'),(0,'has-been-disconnected'),(0,'message-from'),(0,'sales-floor'),(0,'please-answer-the-following'),(0,'shipping'),(0,'pm-invalid-option'),(0,'cannot-complete-otherend-error'),(0,'doppler-radar'),(0,'seattle'),(0,'at-tone-time-exactly'),(0,'press-9'),(0,'press-button-again'),(0,'loss'),(0,'terminating'),(0,'privacy-to-whitelist-this-number'),(0,'to-accept-recording'),(0,'i-dont-understand4'),(0,'please-contact-tech-supt'),(0,'lines-complaining-customers'),(0,'missouri'),(0,'num-was-successfully'),(0,'simplex'),(0,'megahertz'),(0,'ninetieth'),(0,'planning'),(0,'fast'),(0,'brian'),(0,'turning-to'),(0,'machine'),(0,'available-options'),(0,'shall-i-try-again'),(0,'pls-hold-silent30'),(0,'hangup-try-again'),(0,'watch'),(0,'tucson'),(0,'has'),(0,'node'),(0,'washington-dc'),(0,'this-call-will-cost'),(0,'udp'),(0,'calls-taken-by'),(0,'press-4'),(0,'in-your-zip-code'),(13,'phonetic/b_p'),(18,'vm-message'),(18,'vm-Friends'),(13,'phonetic/c_p'),(18,'vm-helpexit'),(13,'phonetic/z_p'),(18,'vm-torerecord'),(18,'vm-forward'),(3,'queue-thereare'),(13,'phonetic/d_p'),(13,'phonetic/h_p'),(13,'phonetic/m_p'),(13,'phonetic/r_p'),(13,'phonetic/u_p'),(13,'phonetic/x_p'),(13,'phonetic/f_p'),(13,'phonetic/i_p'),(13,'phonetic/9_p'),(13,'phonetic/y_p'),(13,'phonetic/e_p'),(13,'phonetic/w_p'),(13,'phonetic/p_p'),(13,'phonetic/n_p'),(13,'phonetic/j_p'),(13,'phonetic/o_p'),(13,'phonetic/k_p'),(13,'phonetic/l_p'),(13,'phonetic/a_p'),(13,'phonetic/t_p'),(13,'phonetic/q_p'),(1,'agent-loginok'),(3,'queue-holdtime'),(18,'vm-rec-busy'),(7,'dir-nomore'),(14,'privacy-unident'),(18,'vm-reenterpassword'),(13,'phonetic/s_p'),(4,'conf-kicked'),(0,'driving-directions'),(0,'option-is-invalid'),(0,'meter'),(0,'please-try-again'),(0,'confirm-number-is'),(0,'business-development'),(0,'pls-try-manually'),(0,'operations'),(0,'bearing'),(0,'demo-enterkeywords'),(0,'human-resources'),(0,'thanks-for-using'),(0,'tones-that-follow-are-for-the-deaf'),(0,'option-not-implemented'),(0,'queue-less-than'),(0,'fifth'),(0,'privacy-whitelisted'),(0,'staffing'),(0,'oregon'),(0,'followme/pls-hold-while-try'),(0,'followme/sorry'),(0,'followme/status'),(0,'followme/call-from'),(0,'followme/options'),(0,'followme/no-recording'),(0,'cannot-complete-as-dialed'),(0,'for-the-weather'),(0,'packet'),(0,'enter-phone-number10'),(0,'to-redial-the-last-number-you-called'),(0,'omaha'),(0,'dictate/paused'),(0,'dictate/record_help'),(0,'dictate/playback_mode'),(0,'dictate/play_help'),(0,'dictate/enter_filename'),(0,'dictate/pause'),(0,'dictate/truncating_audio'),(0,'dictate/record_mode'),(0,'dictate/playback'),(0,'dictate/forhelp'),(0,'dictate/both_help'),(0,'dictate/record'),(0,'and-area-code'),(0,'outside-sales'),(0,'if-you-need-help'),(0,'wx/gust'),(0,'wx/foot'),(0,'wx/large'),(0,'wx/ceiling'),(0,'wx/inch'),(0,'wx/gusts'),(0,'wx/temperature'),(0,'wx/humidity'),(0,'wx/heat-index'),(0,'wx/northeast'),(0,'wx/falling'),(0,'wx/winds'),(0,'wx/meter'),(0,'wx/steady'),(0,'wx/rising'),(0,'wx/gusty'),(0,'wx/southwest'),(0,'wx/percent'),(0,'wx/gusting-to'),(0,'wx/northwest'),(0,'wx/point'),(0,'wx/wind-chill'),(0,'wx/kilometer'),(0,'wx/inches'),(0,'wx/mist'),(0,'wx/feet'),(0,'wx/around'),(0,'wx/southeast'),(0,'wx/barometer'),(0,'wx/dew-point'),(0,'arkansas'),(0,'nothing-recorded'),(0,'reception'),(0,'you-have-reached-a-test-number'),(0,'load-average'),(0,'were-sorry'),(0,'billing-and-collections'),(0,'for-sales'),(0,'T-to-leave-msg'),(0,'otherwise'),(0,'billionth'),(0,'test-tones-follow'),(0,'privacy-stop-calling-not-welcome2'),(0,'trading-desk'),(0,'if-youd-like-to-make-a-call'),(0,'on'),(0,'speed'),(0,'health-center'),(0,'southerly'),(0,'tide'),(0,'moo1'),(0,'gale'),(0,'is-curntly-busy'),(0,'pm-phrase-management'),(0,'hear-odd-noise'),(0,'silence/10'),(0,'silence/9'),(0,'silence/4'),(0,'silence/3'),(0,'silence/8'),(0,'silence/5'),(0,'silence/6'),(0,'silence/7'),(0,'silence/2'),(0,'new-hampshire'),(0,'is'),(0,'shiny-brass-lamp'),(0,'pop'),(0,'information-technology'),(0,'you-entered'),(0,'baltimore'),(0,'spy-mobile'),(0,'celsius'),(0,'hz'),(0,'sorry-cant-let-you-do-that'),(0,'inbound'),(0,'office'),(0,'telephone-in-your-pocket'),(0,'queue-periodic-announce'),(0,'received'),(0,'telnet'),(0,'to-change-exp-date'),(0,'do-not-disturb'),(0,'rising'),(0,'call-fwd-unconditional'),(0,'talking-to-myself'),(0,'reservations'),(0,'uh-oh1'),(0,'privacy-blacklisted'),(0,'first'),(0,'tornado'),(0,'presidents-office'),(0,'oops1'),(0,'nineteenth'),(0,'visit-asterisk-website'),(0,'manufacturing'),(0,'pls-enter-num-message-after-tone'),(0,'helpdesk'),(0,'altitude'),(0,'research-and-development'),(0,'freezing'),(0,'and-or'),(0,'groovy'),(18,'vm-leavemsg'),(3,'queue-callswaiting'),(4,'conf-getconfno'),(18,'vm-and'),(18,'vm-for'),(18,'vm-options'),(3,'silence/1'),(0,'that-you-require'),(0,'ninth'),(0,'privacy-you-are-blacklisted'),(0,'www-switchboard-com'),(0,'san-antonio'),(0,'for-louie-louie'),(0,'deadbeat'),(0,'spy-console'),(0,'carried-away-by-monkeys'),(0,'press-the-space-bar'),(0,'press-star'),(0,'pounds'),(0,'cafeteria'),(0,'conf-sysop'),(0,'office-iguanas'),(0,'austin'),(0,'call-fwd-on-busy'),(0,'midnight-tonight'),(0,'vm-tempremoved'),(0,'extensions'),(0,'to-snooze-for'),(0,'approximately'),(0,'in-the-line'),(0,'alabama'),(0,'too-low'),(0,'is-curntly-unavail'),(0,'close-parenthesis'),(0,'to-record-call'),(0,'discon-or-out-of-service'),(0,'you-have-these-options'),(0,'T-is-not-available'),(0,'is-not-in-the'),(0,'customer-service'),(0,'denial-of-service'),(0,'another-time'),(0,'kilohertz'),(0,'barns'),(0,'foggy'),(0,'marketing'),(0,'rainfall'),(0,'no-route-exists-to-dest'),(0,'last-num-to-call'),(0,'terminated'),(0,'letters/ascii38'),(0,'letters/ascii94'),(0,'letters/ascii40'),(0,'letters/ascii39'),(0,'letters/ascii60'),(0,'letters/ascii95'),(0,'letters/ascii93'),(0,'letters/ascii91'),(0,'letters/ascii126'),(0,'letters/ascii37'),(0,'letters/ascii36'),(0,'letters/ascii44'),(0,'letters/ascii96'),(0,'letters/ascii63'),(0,'letters/ascii92'),(0,'letters/ascii58'),(0,'letters/ascii62'),(0,'letters/asterisk'),(0,'letters/ascii124'),(0,'letters/ascii59'),(0,'letters/ascii41'),(0,'letters/ascii123'),(0,'letters/ascii125'),(0,'letters/ascii34'),(0,'letters/ascii42'),(0,'rain'),(0,'visibility'),(0,'risk-management'),(0,'zip-code'),(0,'press-7'),(0,'north-dakota'),(0,'vm-tmpexists'),(0,'service'),(0,'press-0'),(0,'i-dont-understand2'),(0,'not-enough-credit'),(0,'accounts-payable'),(0,'virginia-beach'),(0,'athletics'),(0,'speak-louder-into-phone'),(0,'from'),(0,'seventieth'),(0,'westerly'),(0,'quality-control'),(0,'a-collect-charge'),(0,'to-blklist-last-num'),(0,'to-cancel-this-msg'),(0,'kentucky'),(0,'wait-moment'),(0,'housekeeping'),(0,'speed-dial'),(0,'enum-lookup-failed'),(0,'off-duty'),(0,'uh-oh2'),(0,'wait-offensive-sounds'),(0,'echo-test'),(0,'to-cancel-wakeup'),(0,'when-dialing-this-number'),(0,'octothorpe'),(0,'your-msg-is-too-short'),(0,'company-dir-411'),(0,'web'),(0,'research'),(0,'enabled'),(0,'thunderstorm'),(0,'spy-usbradio'),(0,'simul-call-limit-reached'),(0,'repeater'),(0,'flooding'),(18,'vm-messages'),(10,'letters/l'),(10,'letters/x'),(18,'vm-from-extension'),(18,'vm-toenternumber'),(3,'queue-minutes'),(18,'vm-forwardoptions'),(18,'vm-Cust1'),(10,'letters/i'),(11,'letters/dot'),(10,'letters/y'),(10,'letters/h'),(10,'letters/j'),(10,'letters/c'),(10,'letters/s'),(10,'letters/f'),(10,'letters/w'),(10,'letters/a'),(11,'letters/at'),(11,'letters/plus'),(10,'letters/m'),(11,'letters/space'),(11,'letters/equals'),(11,'letters/slash'),(10,'letters/t'),(10,'letters/b'),(10,'letters/n'),(10,'letters/z'),(10,'letters/p'),(10,'letters/r'),(10,'letters/e'),(10,'letters/q'),(11,'letters/zed'),(10,'letters/d'),(10,'letters/o'),(10,'letters/u'),(10,'letters/v'),(11,'letters/dollar'),(11,'letters/exclaimation-point'),(3,'queue-thankyou'),(8,'tt-monkeysintro'),(1,'agent-user'),(0,'splat'),(0,'rqsted-wakeup-for'),(0,'please-try'),(0,'nobody-but-chickens'),(0,'but'),(0,'you-are-curr-call-num'),(0,'location'),(0,'to-hear-callerid'),(0,'severe'),(0,'to-call-num-press'),(0,'demo-echodone'),(0,'work'),(0,'infuriate-tech-staff'),(0,'for-the-first'),(0,'half'),(0,'otherwise-press'),(0,'to-listen-to-it'),(0,'nashville'),(0,'weather-station'),(0,'vm-onefor-full'),(0,'saint-louis'),(0,'what-are-you-wearing'),(0,'card-number'),(0,'self-destruct'),(0,'oops3'),(0,'uptime'),(0,'priv-callpending'),(0,'midnight-tomorrow-night'),(0,'pacific'),(0,'high'),(0,'clearing'),(0,'cause-code'),(0,'unix'),(0,'jacksonville'),(0,'queue-reporthold'),(0,'orders'),(0,'has-been-changed-to'),(0,'astcc-digit-account-number'),(0,'you-have-dialed'),(0,'privacy-if-error'),(0,'department-administrator'),(0,'telephone-number'),(0,'windy'),(0,'gigabits'),(0,'initiating'),(0,'monitored'),(0,'repeat-only'),(0,'frequency'),(0,'no-reply-no-mailbox'),(0,'moron'),(0,'has-not-been-seen-for'),(0,'product'),(0,'thnk-u-for-patience'),(0,'memory'),(0,'imap'),(0,'patchy'),(0,'connected'),(0,'pm-to-record-phrase'),(0,'to-rqst-wakeup-call'),(0,'enter-conf-pin-number'),(0,'press-5'),(0,'1-yes-2-no'),(0,'T-to-reach-main-office'),(0,'wakeup-onetime'),(0,'sorry-youre-having-problems'),(0,'pls-stay-on-line'),(0,'privacy-please-stay-on-line-to-be-connected'),(0,'demo-thanks'),(0,'oklahoma-city'),(0,'mike'),(0,'demo-nogo'),(0,'nebraska'),(0,'call-fwd-cancelled'),(0,'left-bracket'),(0,'windows'),(0,'order-desk'),(0,'what-time-it-is'),(0,'i-grow-bored'),(0,'to-be-called-back'),(0,'accounting'),(0,'office-code'),(0,'san-francisco'),(0,'at-customers-request'),(0,'system-status-msg'),(0,'im-sorry-unable-to-connect-to-eng'),(0,'priv-recordintro'),(0,'midnight'),(0,'tonight'),(0,'all-outgoing-lines-unavailable'),(0,'T-to-enable-ancmnt'),(0,'network-operations'),(0,'afternoon'),(0,'spy-sip'),(0,'maximum'),(0,'if-this-is-not-correct'),(0,'atlantic'),(0,'call-forward'),(0,'channel'),(0,'please-hang-up-and-dial-operator'),(0,'menu'),(0,'this-call-may-be-monitored-or-recorded'),(0,'press-8'),(0,'pls-enter-conf-password'),(0,'dir-firstlast'),(0,'dns'),(0,'q-dot-9thirty1'),(0,'account-balance-is'),(0,'wish-to-continue'),(0,'press-2'),(0,'local-authorities'),(0,'hear-toilet-flush'),(0,'1-for-am-2-for-pm'),(0,'comma'),(0,'percent'),(0,'privacy-blocked'),(0,'if-you-know-the'),(0,'georgia'),(0,'default-attendant'),(0,'staff'),(0,'maine'),(0,'someone-you-trust3'),(0,'design'),(0,'the-party-you-are-calling'),(0,'away-naughty-girl'),(4,'conf-onlyperson'),(6,'digits/today'),(6,'digits/h-6'),(4,'conf-usermenu'),(6,'digits/h-1'),(6,'digits/18'),(6,'digits/12'),(11,'digits/a-m'),(6,'digits/90'),(6,'digits/dollars'),(12,'digits/mon-3'),(6,'digits/20'),(6,'digits/17'),(6,'digits/h-30'),(12,'digits/mon-2'),(6,'digits/9'),(6,'digits/h-17'),(12,'digits/mon-7'),(6,'digits/h-12'),(18,'vm-star-cancel'),(18,'vm-rec-unv'),(6,'digits/10'),(18,'vm-from'),(18,'vm-login'),(4,'conf-errormenu'),(18,'vm-first'),(18,'vm-advopts'),(18,'vm-intro'),(6,'digits/h-9'),(18,'vm-rec-name'),(1,'agent-alreadyon'),(0,'digits/0'),(0,'vm-duration'),(0,'las-vegas'),(0,'airport'),(0,'engineering'),(0,'day'),(0,'please-hang-up-and-try-again'),(0,'who-would-you-like-to-call'),(0,'a-charge-for-this-svc'),(0,'customer-relations'),(0,'to-hear-msg-again'),(0,'count'),(0,'is-now-being-recorded'),(0,'pennies'),(0,'central'),(0,'cloudy'),(0,'twentieth'),(0,'will-not-expire'),(0,'ice'),(0,'to-hear-your-account-balance'),(0,'pm-to-review-phrase'),(0,'astcc-balance-of-account-is'),(0,'for-a-list-of'),(0,'with'),(0,'email'),(0,'was-last-seen'),(0,'cent'),(0,'maryland'),(0,'on-monthly-tel-stment'),(0,'point'),(0,'indicated'),(0,'conf-otherinparty'),(0,'press-hash'),(0,'to-dial-by-name-press'),(0,'for-quality-purposes'),(0,'dir-last'),(0,'room-service'),(0,'an-error-has-occured'),(0,'position'),(0,'num-outside-area'),(0,'kilobits'),(0,'sun'),(0,'vm-tempgreeting'),(0,'main-menu'),(0,'divided-by'),(0,'one-small-step2'),(0,'thousandth'),(0,'temp-disconnected'),(0,'years'),(0,'outbound'),(0,'these-are-currently'),(0,'call-waiting'),(0,'sixteenth'),(0,'illinois'),(0,'eleventh'),(0,'your-msg-has-been-saved'),(0,'privacy-screening-unidentified-calls'),(0,'conf-banned'),(0,'month'),(0,'secretary'),(0,'if-grtg-should-expire-at'),(0,'inside-sales'),(0,'moo2'),(0,'wakeup-call-cancelled'),(0,'vm-tempgreeting2'),(0,'library'),(0,'kilometer'),(0,'chemistry'),(0,'backslash'),(0,'at-any-time'),(0,'to-hear-net-status'),(0,'terabytes'),(0,'to-rec-yr-temp-grtg'),(0,'morning'),(0,'millionth'),(0,'connecting'),(0,'will-reflect-charge-of'),(0,'pls-try-area-code'),(0,'public-relations'),(0,'fresno'),(0,'to-place-outgoing-call'),(0,'motor-pool'),(0,'thanks-for-calling-today'),(0,'privacy-to-blacklist-this-number'),(0,'montana'),(0,'enter-conf-call-number'),(0,'to-erase-yr-temp-grtg'),(0,'fortieth'),(0,'dir-multi9'),(18,'vm-undelete'),(6,'digits/h-16'),(18,'vm-tohearenv'),(6,'digits/6'),(6,'digits/15'),(6,'digits/hundred'),(6,'digits/7'),(12,'digits/mon-8'),(12,'digits/mon-4'),(6,'digits/16'),(6,'digits/thousand'),(6,'digits/oclock'),(12,'digits/mon-0'),(6,'digits/11'),(6,'digits/tomorrow'),(12,'digits/mon-11'),(6,'digits/4'),(6,'digits/h-2'),(6,'digits/h-19'),(5,'digits/day-0'),(6,'digits/h-4'),(5,'digits/day-3'),(6,'digits/at'),(12,'digits/mon-5'),(6,'digits/h-20'),(6,'digits/50'),(6,'digits/h-11'),(6,'digits/h-18'),(6,'digits/oh'),(6,'digits/40'),(6,'digits/minus'),(12,'digits/mon-6'),(6,'digits/pound'),(6,'digits/3'),(6,'digits/19'),(6,'digits/million'),(6,'digits/h-13'),(5,'digits/day-2'),(6,'digits/h-10'),(6,'digits/h-8'),(6,'digits/5'),(5,'digits/day-4'),(6,'digits/1'),(12,'digits/mon-10'),(6,'digits/star'),(6,'digits/60'),(6,'digits/h-15'),(6,'digits/30'),(6,'digits/h-14'),(6,'digits/80'),(6,'digits/70'),(11,'digits/p-m'),(6,'digits/14'),(2,'auth-incorrect'),(6,'digits/2'),(6,'digits/h-7'),(6,'digits/8'),(6,'digits/h-5'),(18,'vm-theperson'),(18,'vm-savefolder'),(18,'vm-extension'),(12,'digits/mon-1'),(18,'vm-tocallback'),(18,'vm-tooshort'),(18,'vm-opts'),(0,'you-can-press'),(0,'days'),(0,'los-angeles'),(0,'card-balance-is'),(0,'the-number-u-dialed'),(0,'mathematics'),(0,'to-send-a-reply'),(0,'call-requres'),(0,'error-number'),(0,'range'),(0,'if-u-know-ext-dial'),(0,'pls-entr-num-uwish2-call'),(0,'period'),(0,'new-accounts'),(0,'less-than'),(0,'privacy-if-error-leave-message-or-hangup'),(0,'connection-timed-out'),(0,'for-tech-support'),(0,'vm-newuser'),(0,'is-in-use'),(0,'wakeup-call'),(0,'mail'),(0,'press-tilde'),(0,'washington'),(0,'west-virginia'),(0,'sleet'),(0,'call-fwd-parallel'),(0,'hash'),(0,'priv-callee-options'),(0,'nbdy-avail-to-take-call'),(0,'weather'),(0,'computer-friend1'),(0,'northerly'),(0,'to-reach-operator'),(0,'conf-sysopreq'),(0,'oakland'),(0,'auth-thankyou'),(0,'in-the-queue'),(0,'calls-waiting-for-rep'),(0,'hurricane'),(0,'call-preempted'),(0,'duplication'),(0,'for-investor-relations'),(0,'to-change-your-pin-number'),(0,'wakeup-for-one-time'),(0,'you-dialed-wrong-number'),(0,'that-tickles'),(0,'at-sign'),(0,'this-is-the-voice-mail-system'),(0,'later'),(0,'pascal'),(0,'T-to-rec-ancmnt'),(0,'limit-simul-calls'),(0,'not-yet-assigned'),(0,'indianapolis'),(0,'calls'),(0,'something-terribly-wrong'),(0,'now'),(0,'teletubbie-murder'),(0,'minimum'),(0,'bookstore'),(0,'year'),(0,'distribution'),(0,'to-rmv-num-blklist'),(0,'moving'),(0,'feature-not-avail-line'),(0,'conf-youareinconfnum'),(0,'unavailable'),(0,'press-pound'),(0,'has-been-cleared'),(0,'advised-to-seek-shelter'),(0,'server'),(0,'for'),(0,'partially'),(0,'step-in-stream'),(0,'not-yet-connected'),(0,'call-fwd-no-ans'),(0,'sorry2'),(0,'headed-towards'),(0,'invalid-date'),(0,'your-account'),(0,'astcc-followed-by-the-hash-key'),(0,'on-busy'),(0,'new-jersey'),(0,'minnesota'),(0,'feet'),(0,'minute'),(0,'user'),(0,'vm-tempgreetactive'),(0,'cents-per-minute'),(0,'this-call-will-end-in'),(0,'to-rerecord-it'),(0,'no-info-about-number'),(0,'rainy'),(0,'sorry-mailbox-full'),(0,'wisconsin'),(0,'marryme'),(0,'jedi-extension-trick'),(0,'purchasing'),(0,'fahrenheit'),(0,'clouds'),(0,'enter-a-time'),(0,'last-error-was'),(0,'towards'),(0,'has-arrived-at'),(0,'dir-first'),(0,'voice-mail-system'),(0,'explanation'),(0,'conf-userwilljoin'),(0,'to-use-def-attendant'),(0,'info-about-last-call'),(0,'portnumber'),(0,'eightieth'),(0,'recorded'),(0,'privacy-you-are-calling-from'),(0,'transportation'),(0,'or-press'),(0,'because-paranoid'),(0,'hello-world'),(0,'training'),(0,'lyrics-louie-louie'),(0,'dont-know-who-sent'),(0,'it-now'),(0,'not-taking-your-call'),(0,'south-carolina'),(0,'this'),(0,'remote-already-in-this-mode'),(0,'unidentified-no-callback'),(0,'cannot-complete-network-error'),(0,'continue-in-english'),(0,'degrees'),(0,'disconnected'),(0,'claims'),(0,'to-rerecord-yr-message'),(0,'flagged-for-lea'),(0,'new-mexico'),(18,'vm-youhave'),(18,'vm-review'),(18,'vm-Cust4'),(18,'vm-minutes'),(18,'vm-newpassword'),(4,'conf-noempty'),(18,'vm-isunavail'),(11,'pbx-transfer'),(18,'vm-prev'),(11,'or'),(18,'vm-savemessage'),(16,'pbx-invalid'),(11,'vm-sorry'),(18,'vm-then-pound'),(18,'vm-calldiffnum'),(18,'vm-incorrect-mailbox'),(1,'agent-incorrect'),(18,'vm-from-phonenumber'),(18,'vm-onefor'),(0,'are-you-still-there2'),(0,'finance'),(0,'vm-invalidpassword'),(0,'if-maint-contract-or-emergency'),(0,'address'),(0,'indiana'),(0,'hang-on-a-second-angry'),(0,'fourth'),(0,'kansas'),(0,'to-enter-a-diff-number'),(0,'goodbye'),(0,'to-blklist-last-caller'),(0,'systems'),(0,'pm-announcement-number'),(0,'check-number-dial-again'),(0,'weasels-eaten-phonesys'),(0,'sunny'),(0,'conditions'),(0,'touchtone2'),(0,'gambling-drunk'),(0,'press-return'),(0,'conf-hasleft'),(0,'denver'),(0,'portland'),(0,'dir-pls-enter'),(0,'miles-per-hour'),(0,'quality-assurance'),(0,'activated'),(0,'pennsylvania'),(0,'bytes'),(0,'num-not-in-db'),(18,'vm-goodbye'),(18,'vm-deleted'),(4,'conf-getpin'),(13,'phonetic/v_p'),(13,'phonetic/g_p'),(18,'vm-received'),(18,'vm-unknown-caller'),(7,'dir-nomatch'),(10,'letters/k'),(11,'letters/dash'),(10,'letters/g'),(6,'digits/yesterday'),(5,'digits/day-6'),(6,'digits/h-3'),(5,'digits/day-5'),(6,'digits/13'),(12,'digits/mon-9'),(5,'digits/day-1'),(4,'conf-getchannel'),(18,'vm-incorrect'),(18,'vm-saved'),(18,'vm-nomore'),(16,'all-circuits-busy-now'),(4,'conf-lockednow'),(8,'tt-monkeys'),(18,'vm-savedto'),(4,'conf-invalid'),(18,'vm-press'),(18,'vm-Cust2'),(14,'privacy-incorrect'),(18,'vm-next'),(4,'conf-invalidpin'),(18,'vm-passchanged'),(11,'ss-noservice'),(18,'vm-starmain'),(8,'tt-somethingwrong'),(18,'vm-toforward'),(1,'agent-newlocation'),(18,'vm-enter-num-to-call'); /*!40000 ALTER TABLE `snd_folder_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `snd_folders` -- DROP TABLE IF EXISTS `snd_folders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `snd_folders` ( `pk_folder` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `is_system` tinyint(1) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_folder`) ) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `snd_folders` -- LOCK TABLES `snd_folders` WRITE; /*!40000 ALTER TABLE `snd_folders` DISABLE KEYS */; INSERT INTO `snd_folders` VALUES (1,'Agent','Contains all the Agent sounds.',1,'2009-10-21 20:52:59'),(2,'Authentication','Contains all the authentication sounds.',1,'2009-10-21 20:52:59'),(3,'Call Queues','Contains all the Call Queues sounds.',1,'2009-10-21 20:53:15'),(4,'Conference','Contains all the Conference sounds.',1,'2009-10-21 20:53:15'),(5,'Days','Contains all the Days sounds.',1,'2009-10-21 20:53:25'),(16,'Diagnostics','Contains all the diagnostic sounds.',1,'2009-10-23 04:55:26'),(6,'Digits','Contains all the Digits sounds.',1,'2009-10-21 20:53:25'),(7,'Directory','Contains all the directory sounds.',1,'2009-10-21 20:53:37'),(8,'Humor','Contains all the Humor sounds.',1,'2009-10-21 20:53:37'),(9,'IVR','Contains user sounds to be used in the IVR System.',1,'2009-10-21 20:53:48'),(10,'Letters','Contains all the Letters sounds.',1,'2009-10-21 20:53:48'),(11,'Miscellaneous','Contains all the Miscellaneous sounds.',1,'2009-10-21 20:54:07'),(12,'Months','Contains all the Months sounds.',1,'2009-10-21 20:54:07'),(13,'Phonetic','Contains all the Phonetic sounds.',1,'2009-10-21 20:54:17'),(14,'Privacy','Contains all the Privacy sounds.',1,'2009-10-21 20:54:17'),(18,'Voicemail','Contains all the Voicemail sounds.',1,'2009-10-21 20:54:39'),(19,'Unsorted','Contains all the unsorted sounds.',1,'2009-10-21 20:54:39'); /*!40000 ALTER TABLE `snd_folders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `snd_languages` -- DROP TABLE IF EXISTS `snd_languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `snd_languages` ( `pk_language` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `code` char(2) NOT NULL, `is_default` tinyint(1) NOT NULL, `is_system` tinyint(1) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_language`), UNIQUE KEY `code` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `snd_languages` -- LOCK TABLES `snd_languages` WRITE; /*!40000 ALTER TABLE `snd_languages` DISABLE KEYS */; INSERT INTO `snd_languages` VALUES (1,'English','en',1,1,'2009-10-20 15:32:43'); /*!40000 ALTER TABLE `snd_languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `soundentries` -- DROP TABLE IF EXISTS `soundentries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `soundentries` ( `pk_soundentry` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` enum('User','System') NOT NULL DEFAULT 'User', `fk_soundfolder` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_soundentry`) ) ENGINE=MyISAM AUTO_INCREMENT=4580 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `soundentries` -- LOCK TABLES `soundentries` WRITE; /*!40000 ALTER TABLE `soundentries` DISABLE KEYS */; INSERT INTO `soundentries` VALUES (4167,'System',14),(4168,'System',1),(4169,'System',2),(4170,'System',14),(4171,'System',2),(4172,'System',2),(4173,'System',14),(4174,'System',2),(4175,'System',1),(4176,'System',14),(4177,'System',14),(4178,'System',1),(4179,'System',2),(4180,'System',2),(4181,'System',11),(4182,'System',18),(4183,'System',2),(4184,'System',14),(4185,'System',16),(4186,'System',8),(4187,'System',12),(4188,'System',8),(4189,'System',1),(4190,'System',1),(4191,'System',8),(4192,'System',1),(4193,'System',8),(4194,'System',1),(4195,'System',16),(4196,'System',8),(4197,'System',8),(4198,'System',1),(4199,'System',1),(4200,'System',1),(4201,'System',8),(4202,'System',1),(4203,'System',8),(4204,'System',8),(4205,'System',16),(4206,'System',8),(4207,'System',8),(4208,'System',1),(4209,'System',16),(4210,'System',1),(4211,'System',16),(4212,'System',1),(4213,'System',1),(4214,'System',12),(4215,'System',1),(4216,'System',16),(4217,'System',1),(4218,'System',1),(4219,'System',16),(4220,'System',1),(4221,'System',1),(4222,'System',8),(4223,'System',12),(4224,'System',1),(4225,'System',1),(4226,'System',8),(4227,'System',1),(4228,'System',16),(4229,'System',8),(4230,'System',1),(4231,'System',1),(4232,'System',8),(4233,'System',8),(4234,'System',8),(4235,'System',1),(4236,'System',1),(4237,'System',12),(4238,'System',1),(4239,'System',8),(4240,'System',1),(4241,'System',12),(4242,'System',1),(4243,'System',1),(4244,'System',8),(4245,'System',1),(4246,'System',1),(4247,'System',8),(4248,'System',8),(4249,'System',8),(4250,'System',12),(4251,'System',1),(4252,'System',8),(4253,'System',1),(4254,'System',1),(4255,'System',1),(4256,'System',1),(4257,'System',16),(4258,'System',8),(4259,'System',12),(4260,'System',16),(4261,'System',1),(4262,'System',1),(4263,'System',8),(4264,'System',8),(4265,'System',16),(4266,'System',8),(4267,'System',16),(4268,'System',14),(4269,'System',14),(4270,'System',2),(4271,'System',14),(4272,'System',11),(4273,'System',14),(4274,'System',14),(4275,'System',14),(4277,'System',14),(4278,'System',11),(4279,'System',14),(4280,'System',23),(4281,'System',14),(4282,'System',2),(4284,'System',13),(4285,'System',1),(4286,'System',13),(4287,'System',14),(4288,'System',9),(4289,'System',1),(4290,'System',9),(4291,'System',14),(4292,'System',1),(4293,'System',11),(4294,'System',14),(4295,'System',14),(4296,'System',14),(4297,'System',23),(4298,'System',14),(4299,'System',13),(4301,'System',14),(4302,'System',14),(4303,'System',11),(4304,'System',14),(4305,'System',14),(4306,'System',1),(4307,'System',14),(4308,'System',18),(4309,'System',9),(4310,'System',14),(4311,'System',1),(4312,'System',14),(4313,'System',14),(4314,'System',14),(4315,'System',14),(4316,'System',9),(4317,'System',1),(4318,'System',1),(4319,'System',1),(4320,'System',1),(4321,'System',1),(4322,'System',1),(4323,'System',1),(4324,'System',1),(4325,'System',1),(4326,'System',1),(4327,'System',1),(4328,'System',1),(4329,'System',1),(4330,'System',1),(4331,'System',1),(4332,'System',1),(4333,'System',1),(4334,'System',1),(4335,'System',1),(4336,'System',1),(4337,'System',1),(4338,'System',1),(4339,'System',1),(4340,'System',1),(4341,'System',1),(4342,'System',1),(4343,'System',1),(4344,'System',1),(4345,'System',1),(4346,'System',1),(4347,'System',1),(4348,'System',1),(4349,'System',1),(4350,'System',1),(4351,'System',1),(4352,'System',1),(4353,'System',1),(4354,'System',1),(4355,'System',1),(4356,'System',1),(4357,'System',1),(4358,'System',1),(4359,'System',1),(4360,'System',1),(4361,'System',1),(4362,'System',1),(4363,'System',1),(4364,'System',1),(4365,'System',1),(4366,'System',1),(4367,'System',1),(4368,'System',1),(4369,'System',1),(4370,'System',1),(4371,'System',1),(4372,'System',1),(4373,'System',1),(4374,'System',1),(4375,'System',1),(4376,'System',1),(4377,'System',1),(4378,'System',1),(4379,'System',1),(4380,'System',11),(4381,'System',2),(4382,'System',14),(4383,'System',2),(4384,'System',1),(4385,'System',9),(4386,'System',14),(4387,'System',1),(4388,'System',1),(4389,'System',14),(4390,'System',11),(4391,'System',2),(4393,'System',14),(4394,'System',23),(4395,'System',2),(4396,'System',10),(4397,'System',18),(4398,'System',14),(4399,'System',14),(4400,'System',2),(4401,'System',1),(4402,'System',14),(4403,'System',14),(4404,'System',14),(4405,'System',14),(4406,'System',14),(4407,'System',14),(4408,'System',1),(4409,'System',1),(4410,'System',1),(4411,'System',1),(4412,'System',1),(4413,'System',1),(4414,'System',1),(4415,'System',1),(4416,'System',1),(4417,'System',1),(4418,'System',1),(4419,'System',1),(4420,'System',2),(4421,'System',14),(4422,'System',14),(4423,'System',11),(4424,'System',14),(4425,'System',14),(4426,'System',14),(4427,'System',9),(4428,'System',14),(4429,'System',14),(4430,'System',11),(4431,'System',1),(4432,'System',14),(4433,'System',14),(4434,'System',2),(4435,'System',14),(4436,'System',2),(4437,'System',14),(4438,'System',1),(4439,'System',14),(4440,'System',14),(4441,'System',2),(4442,'System',2),(4443,'System',2),(4444,'System',1),(4445,'System',14),(4447,'System',1),(4448,'System',14),(4449,'System',14),(4450,'System',1),(4452,'System',14),(4453,'System',1),(4454,'System',14),(4455,'System',2),(4456,'System',2),(4457,'System',14),(4458,'System',10),(4459,'System',1),(4460,'System',1),(4461,'System',1),(4462,'System',1),(4463,'System',1),(4464,'System',1),(4465,'System',14),(4466,'System',14),(4467,'System',2),(4468,'System',14),(4469,'System',13),(4470,'System',13),(4471,'System',2),(4472,'System',14),(4473,'System',14),(4474,'System',14),(4475,'System',14),(4476,'System',14),(4477,'System',14),(4478,'System',1),(4479,'System',18),(4480,'System',9),(4481,'System',14),(4483,'System',14),(4485,'System',14),(4487,'System',14),(4488,'System',1),(4489,'System',13),(4490,'System',14),(4491,'System',14),(4492,'System',11),(4493,'System',14),(4494,'System',14),(4495,'System',14),(4496,'System',14),(4497,'System',14),(4498,'System',2),(4499,'System',14),(4500,'System',14),(4501,'System',14),(4502,'System',8),(4503,'System',8),(4504,'System',8),(4505,'System',8),(4506,'System',8),(4507,'System',8),(4508,'System',8),(4509,'System',8),(4510,'System',8),(4511,'System',8),(4512,'System',1),(4513,'System',2),(4514,'System',14),(4515,'System',14),(4516,'System',14),(4517,'System',18),(4518,'System',14),(4519,'System',1),(4520,'System',1),(4521,'System',14),(4522,'System',13),(4523,'System',14),(4525,'System',14),(4526,'System',14),(4527,'System',1),(4528,'System',1),(4529,'System',1),(4530,'System',1),(4531,'System',1),(4532,'System',1),(4533,'System',1),(4534,'System',1),(4535,'System',1),(4536,'System',1),(4537,'System',1),(4538,'System',1),(4539,'System',1),(4540,'System',1),(4541,'System',1),(4542,'System',1),(4543,'System',1),(4544,'System',1),(4545,'System',1),(4546,'System',1),(4547,'System',1),(4548,'System',1),(4549,'System',1),(4550,'System',1),(4551,'System',1),(4552,'System',1),(4553,'System',1),(4554,'System',14),(4555,'System',14),(4556,'System',14),(4557,'System',13),(4558,'System',13),(4559,'System',14),(4560,'System',14),(4561,'System',11),(4562,'System',23),(4563,'System',11),(4564,'System',2),(4565,'System',14),(4566,'System',14),(4576,'User',11); /*!40000 ALTER TABLE `soundentries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `soundfiles` -- DROP TABLE IF EXISTS `soundfiles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `soundfiles` ( `pk_soundfile` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_soundentry` int(10) unsigned NOT NULL, `fk_soundpack` int(10) unsigned NOT NULL, `name` varchar(100) NOT NULL, `description` text NOT NULL, `filename` varchar(255) NOT NULL, `fk_soundlanguage` int(10) unsigned NOT NULL, PRIMARY KEY (`pk_soundfile`) ) ENGINE=MyISAM AUTO_INCREMENT=4558 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `soundfiles` -- LOCK TABLES `soundfiles` WRITE; /*!40000 ALTER TABLE `soundfiles` DISABLE KEYS */; INSERT INTO `soundfiles` VALUES (4138,4167,0,'vm-mismatch','','/usr/share/asterisk/sounds/vm-mismatch.gsm',1),(4139,4168,0,'spy-agent','','/usr/share/asterisk/sounds/spy-agent.gsm',1),(4140,4169,0,'conf-leaderhasleft','','/usr/share/asterisk/sounds/conf-leaderhasleft.gsm',1),(4141,4170,0,'vm-nobox','','/usr/share/asterisk/sounds/vm-nobox.gsm',1),(4142,4171,0,'conf-getpin','','/usr/share/asterisk/sounds/conf-getpin.gsm',1),(4143,4172,0,'conf-enteringno','','/usr/share/asterisk/sounds/conf-enteringno.gsm',1),(4144,4173,0,'vm-tempgreetactive','','/usr/share/asterisk/sounds/vm-tempgreetactive.gsm',1),(4145,4174,0,'conf-onlyperson','','/usr/share/asterisk/sounds/conf-onlyperson.gsm',1),(4146,4175,0,'hello-world','','/usr/share/asterisk/sounds/hello-world.gsm',1),(4147,4176,0,'vm-youhave','','/usr/share/asterisk/sounds/vm-youhave.gsm',1),(4148,4177,0,'vm-tomakecall','','/usr/share/asterisk/sounds/vm-tomakecall.gsm',1),(4149,4178,0,'spy-sip','','/usr/share/asterisk/sounds/spy-sip.gsm',1),(4150,4179,0,'conf-hasleft','','/usr/share/asterisk/sounds/conf-hasleft.gsm',1),(4151,4180,0,'conf-getconfno','','/usr/share/asterisk/sounds/conf-getconfno.gsm',1),(4152,4181,0,'Hold Time (short)','Hold time','/usr/share/asterisk/sounds/queue-reporthold.gsm',1),(4153,4182,0,'Wrong','Something is terribly wrong.','/usr/share/asterisk/sounds/tt-somethingwrong.gsm',1),(4154,4183,0,'conf-onlyone','','/usr/share/asterisk/sounds/conf-onlyone.gsm',1),(4155,4184,0,'vm-tocancel','','/usr/share/asterisk/sounds/vm-tocancel.gsm',1),(4156,4185,0,'October','October.','/usr/share/asterisk/sounds/digits/mon-9.gsm',1),(4157,4186,0,'20','','/usr/share/asterisk/sounds/digits/20.gsm',1),(4158,4187,0,'Sunday','Sunday.','/usr/share/asterisk/sounds/digits/day-0.gsm',1),(4159,4188,0,'11','','/usr/share/asterisk/sounds/digits/11.gsm',1),(4160,4189,0,'h-1','','/usr/share/asterisk/sounds/digits/h-1.gsm',1),(4161,4190,0,'h-16','','/usr/share/asterisk/sounds/digits/h-16.gsm',1),(4162,4191,0,'14','','/usr/share/asterisk/sounds/digits/14.gsm',1),(4163,4192,0,'h-13','','/usr/share/asterisk/sounds/digits/h-13.gsm',1),(4164,4193,0,'13','','/usr/share/asterisk/sounds/digits/13.gsm',1),(4165,4194,0,'oclock','','/usr/share/asterisk/sounds/digits/oclock.gsm',1),(4166,4195,0,'February','February.','/usr/share/asterisk/sounds/digits/mon-1.gsm',1),(4167,4196,0,'40','','/usr/share/asterisk/sounds/digits/40.gsm',1),(4168,4197,0,'4','','/usr/share/asterisk/sounds/digits/4.gsm',1),(4169,4198,0,'pound','','/usr/share/asterisk/sounds/digits/pound.gsm',1),(4170,4199,0,'oh','','/usr/share/asterisk/sounds/digits/oh.gsm',1),(4171,4200,0,'h-8','','/usr/share/asterisk/sounds/digits/h-8.gsm',1),(4172,4201,0,'8','','/usr/share/asterisk/sounds/digits/8.gsm',1),(4173,4202,0,'p-m','','/usr/share/asterisk/sounds/digits/p-m.gsm',1),(4174,4203,0,'10','','/usr/share/asterisk/sounds/digits/10.gsm',1),(4175,4204,0,'18','','/usr/share/asterisk/sounds/digits/18.gsm',1),(4176,4205,0,'March','March.','/usr/share/asterisk/sounds/digits/mon-2.gsm',1),(4177,4206,0,'30','','/usr/share/asterisk/sounds/digits/30.gsm',1),(4178,4207,0,'7','','/usr/share/asterisk/sounds/digits/7.gsm',1),(4179,4208,0,'star','','/usr/share/asterisk/sounds/digits/star.gsm',1),(4180,4209,0,'September','September.','/usr/share/asterisk/sounds/digits/mon-8.gsm',1),(4181,4210,0,'h-3','','/usr/share/asterisk/sounds/digits/h-3.gsm',1),(4182,4211,0,'July','July','/usr/share/asterisk/sounds/digits/mon-6.gsm',1),(4183,4212,0,'h-15','','/usr/share/asterisk/sounds/digits/h-15.gsm',1),(4184,4213,0,'hundred','','/usr/share/asterisk/sounds/digits/hundred.gsm',1),(4185,4214,0,'Thursday','Thursday.','/usr/share/asterisk/sounds/digits/day-4.gsm',1),(4186,4215,0,'h-19','','/usr/share/asterisk/sounds/digits/h-19.gsm',1),(4187,4216,0,'June','June.','/usr/share/asterisk/sounds/digits/mon-5.gsm',1),(4188,4217,0,'h-30','','/usr/share/asterisk/sounds/digits/h-30.gsm',1),(4189,4218,0,'Today','Today.','/usr/share/asterisk/sounds/digits/today.gsm',1),(4190,4219,0,'November','November.','/usr/share/asterisk/sounds/digits/mon-10.gsm',1),(4191,4220,0,'at','','/usr/share/asterisk/sounds/digits/at.gsm',1),(4192,4221,0,'h-14','','/usr/share/asterisk/sounds/digits/h-14.gsm',1),(4193,4222,0,'0','','/usr/share/asterisk/sounds/digits/0.gsm',1),(4194,4223,0,'Monday ','Monday.','/usr/share/asterisk/sounds/digits/day-1.gsm',1),(4195,4224,0,'h-6','','/usr/share/asterisk/sounds/digits/h-6.gsm',1),(4196,4225,0,'h-5','','/usr/share/asterisk/sounds/digits/h-5.gsm',1),(4197,4226,0,'16','','/usr/share/asterisk/sounds/digits/16.gsm',1),(4198,4227,0,'h-7','','/usr/share/asterisk/sounds/digits/h-7.gsm',1),(4199,4228,0,'December','December.','/usr/share/asterisk/sounds/digits/mon-11.gsm',1),(4200,4229,0,'6','','/usr/share/asterisk/sounds/digits/6.gsm',1),(4201,4230,0,'Yesterday','Yesterday.','/usr/share/asterisk/sounds/digits/yesterday.gsm',1),(4202,4231,0,'90','','/usr/share/asterisk/sounds/digits/90.gsm',1),(4203,4232,0,'17','','/usr/share/asterisk/sounds/digits/17.gsm',1),(4204,4233,0,'3','','/usr/share/asterisk/sounds/digits/3.gsm',1),(4205,4234,0,'60','','/usr/share/asterisk/sounds/digits/60.gsm',1),(4206,4235,0,'a-m','','/usr/share/asterisk/sounds/digits/a-m.gsm',1),(4207,4236,0,'h-20','','/usr/share/asterisk/sounds/digits/h-20.gsm',1),(4208,4237,0,'Wednesday','Wednesday.','/usr/share/asterisk/sounds/digits/day-3.gsm',1),(4209,4238,0,'h-12','','/usr/share/asterisk/sounds/digits/h-12.gsm',1),(4210,4239,0,'80','','/usr/share/asterisk/sounds/digits/80.gsm',1),(4211,4240,0,'h-10','','/usr/share/asterisk/sounds/digits/h-10.gsm',1),(4212,4241,0,'Saturday','Saturday.','/usr/share/asterisk/sounds/digits/day-6.gsm',1),(4213,4242,0,'tomorrow','','/usr/share/asterisk/sounds/digits/tomorrow.gsm',1),(4214,4243,0,'dollars','','/usr/share/asterisk/sounds/digits/dollars.gsm',1),(4215,4244,0,'50','','/usr/share/asterisk/sounds/digits/50.gsm',1),(4216,4245,0,'h-4','','/usr/share/asterisk/sounds/digits/h-4.gsm',1),(4217,4246,0,'h-9','','/usr/share/asterisk/sounds/digits/h-9.gsm',1),(4218,4247,0,'70','','/usr/share/asterisk/sounds/digits/70.gsm',1),(4219,4248,0,'19','','/usr/share/asterisk/sounds/digits/19.gsm',1),(4220,4249,0,'2','','/usr/share/asterisk/sounds/digits/2.gsm',1),(4221,4250,0,'Tuesday','Tuesday.','/usr/share/asterisk/sounds/digits/day-2.gsm',1),(4222,4251,0,'h-2','','/usr/share/asterisk/sounds/digits/h-2.gsm',1),(4223,4252,0,'5','','/usr/share/asterisk/sounds/digits/5.gsm',1),(4224,4253,0,'h-18','','/usr/share/asterisk/sounds/digits/h-18.gsm',1),(4225,4254,0,'million','','/usr/share/asterisk/sounds/digits/million.gsm',1),(4226,4255,0,'h-11','','/usr/share/asterisk/sounds/digits/h-11.gsm',1),(4227,4256,0,'minus','','/usr/share/asterisk/sounds/digits/minus.gsm',1),(4228,4257,0,'May','May','/usr/share/asterisk/sounds/digits/mon-4.gsm',1),(4229,4258,0,'15','','/usr/share/asterisk/sounds/digits/15.gsm',1),(4230,4259,0,'Friday','Friday.','/usr/share/asterisk/sounds/digits/day-5.gsm',1),(4231,4260,0,'August','August.','/usr/share/asterisk/sounds/digits/mon-7.gsm',1),(4232,4261,0,'h-17','','/usr/share/asterisk/sounds/digits/h-17.gsm',1),(4233,4262,0,'thousand','','/usr/share/asterisk/sounds/digits/thousand.gsm',1),(4234,4263,0,'1','','/usr/share/asterisk/sounds/digits/1.gsm',1),(4235,4264,0,'12','','/usr/share/asterisk/sounds/digits/12.gsm',1),(4236,4265,0,'January','January.','/usr/share/asterisk/sounds/digits/mon-0.gsm',1),(4237,4266,0,'9','','/usr/share/asterisk/sounds/digits/9.gsm',1),(4238,4267,0,'April','April.','/usr/share/asterisk/sounds/digits/mon-3.gsm',1),(4239,4268,0,'vm-nobodyavail','','/usr/share/asterisk/sounds/vm-nobodyavail.gsm',1),(4240,4269,0,'vm-savefolder','','/usr/share/asterisk/sounds/vm-savefolder.gsm',1),(4241,4270,0,'conf-invalidpin','','/usr/share/asterisk/sounds/conf-invalidpin.gsm',1),(4242,4271,0,'vm-undelete','','/usr/share/asterisk/sounds/vm-undelete.gsm',1),(4243,4272,0,'Thank You','Thank you for your patience.','/usr/share/asterisk/sounds/queue-thankyou.gsm',1),(4244,4273,0,'vm-received','','/usr/share/asterisk/sounds/vm-received.gsm',1),(4245,4274,0,'vm-changeto','','/usr/share/asterisk/sounds/vm-changeto.gsm',1),(4246,4275,0,'vm-rec-temp','','/usr/share/asterisk/sounds/vm-rec-temp.gsm',1),(4248,4277,0,'vm-Family','','/usr/share/asterisk/sounds/vm-Family.gsm',1),(4249,4278,0,'Caller Number','You are currently caller number.','/usr/share/asterisk/sounds/queue-thereare.gsm',1),(4250,4279,0,'vm-from-phonenumber','','/usr/share/asterisk/sounds/vm-from-phonenumber.gsm',1),(4251,4280,0,'privacy-thankyou','','/usr/share/asterisk/sounds/privacy-thankyou.gsm',1),(4252,4281,0,'vm-tempgreeting2','','/usr/share/asterisk/sounds/vm-tempgreeting2.gsm',1),(4253,4282,0,'conf-waitforleader','','/usr/share/asterisk/sounds/conf-waitforleader.gsm',1),(4255,4284,0,'No Match','No directory entries match your search.','/usr/share/asterisk/sounds/dir-nomatch.gsm',1),(4256,4285,0,'priv-introsaved','','/usr/share/asterisk/sounds/priv-introsaved.gsm',1),(4257,4286,0,'Introduction','Welcome to the directory. Please enter the first three letters of your party\'s last name using your touch tone key pad. Use the seven key for Q and the nine key for Z.','/usr/share/asterisk/sounds/dir-intro.gsm',1),(4258,4287,0,'vm-num-i-have','','/usr/share/asterisk/sounds/vm-num-i-have.gsm',1),(4259,4288,0,'Agent Log In','Agent Login. Please enter your agent number followed by the pound key.','/usr/share/asterisk/sounds/agent-user.gsm',1),(4260,4289,0,'transfer','','/usr/share/asterisk/sounds/transfer.gsm',1),(4261,4290,0,'Already On','That agent is already logged on. Please enter your agent number followed by the pound key.','/usr/share/asterisk/sounds/agent-alreadyon.gsm',1),(4262,4291,0,'vm-advopts','','/usr/share/asterisk/sounds/vm-advopts.gsm',1),(4263,4292,0,'invalid','','/usr/share/asterisk/sounds/invalid.gsm',1),(4264,4293,0,'Less Then','less then','/usr/share/asterisk/sounds/queue-less-than.gsm',1),(4265,4294,0,'vm-prev','','/usr/share/asterisk/sounds/vm-prev.gsm',1),(4266,4295,0,'vm-nomore','','/usr/share/asterisk/sounds/vm-nomore.gsm',1),(4267,4296,0,'vm-tempremoved','','/usr/share/asterisk/sounds/vm-tempremoved.gsm',1),(4268,4297,0,'privacy-unident','','/usr/share/asterisk/sounds/privacy-unident.gsm',1),(4269,4298,0,'vm-whichbox','','/usr/share/asterisk/sounds/vm-whichbox.gsm',1),(4270,4299,0,'Instructions','If this is the person you are looking for press one now. Otherwise please press star now.','/usr/share/asterisk/sounds/dir-instr.gsm',1),(4272,4301,0,'vm-Cust3','','/usr/share/asterisk/sounds/vm-Cust3.gsm',1),(4273,4302,0,'vm-saveoper','','/usr/share/asterisk/sounds/vm-saveoper.gsm',1),(4274,4303,0,'queue-periodic-announce','','/usr/share/asterisk/sounds/queue-periodic-announce.gsm',1),(4275,4304,0,'vm-unknown-caller','','/usr/share/asterisk/sounds/vm-unknown-caller.gsm',1),(4276,4305,0,'vm-onefor','','/usr/share/asterisk/sounds/vm-onefor.gsm',1),(4277,4306,0,'spy-h323','','/usr/share/asterisk/sounds/spy-h323.gsm',1),(4278,4307,0,'vm-tooshort','','/usr/share/asterisk/sounds/vm-tooshort.gsm',1),(4279,4308,0,'All Busy','All representatives of the household are currently assisting other telemarketers. Please hold and your call will be answered in the order it was received.','/usr/share/asterisk/sounds/tt-allbusy.gsm',1),(4280,4309,0,'Incorrect','Login incorrect. Please enter your agent number followed by the pound key.','/usr/share/asterisk/sounds/agent-incorrect.gsm',1),(4281,4310,0,'vm-tohearenv','','/usr/share/asterisk/sounds/vm-tohearenv.gsm',1),(4282,4311,0,'priv-callpending','','/usr/share/asterisk/sounds/priv-callpending.gsm',1),(4283,4312,0,'vm-toreply','','/usr/share/asterisk/sounds/vm-toreply.gsm',1),(4284,4313,0,'vm-helpexit','','/usr/share/asterisk/sounds/vm-helpexit.gsm',1),(4285,4314,0,'vm-Cust4','','/usr/share/asterisk/sounds/vm-Cust4.gsm',1),(4286,4315,0,'vm-instructions','','/usr/share/asterisk/sounds/vm-instructions.gsm',1),(4287,4316,0,'Logged In','Agent logged in.','/usr/share/asterisk/sounds/agent-loginok.gsm',1),(4288,4317,0,'ascii92','','/usr/share/asterisk/sounds/letters/ascii92.gsm',1),(4289,4318,0,'l','','/usr/share/asterisk/sounds/letters/l.gsm',1),(4290,4319,0,'exclaimation-point','','/usr/share/asterisk/sounds/letters/exclaimation-point.gsm',1),(4291,4320,0,'s','','/usr/share/asterisk/sounds/letters/s.gsm',1),(4292,4321,0,'z','','/usr/share/asterisk/sounds/letters/z.gsm',1),(4293,4322,0,'slash','','/usr/share/asterisk/sounds/letters/slash.gsm',1),(4294,4323,0,'p','','/usr/share/asterisk/sounds/letters/p.gsm',1),(4295,4324,0,'ascii93','','/usr/share/asterisk/sounds/letters/ascii93.gsm',1),(4296,4325,0,'ascii39','','/usr/share/asterisk/sounds/letters/ascii39.gsm',1),(4297,4326,0,'ascii40','','/usr/share/asterisk/sounds/letters/ascii40.gsm',1),(4298,4327,0,'zed','','/usr/share/asterisk/sounds/letters/zed.gsm',1),(4299,4328,0,'ascii62','','/usr/share/asterisk/sounds/letters/ascii62.gsm',1),(4300,4329,0,'j','','/usr/share/asterisk/sounds/letters/j.gsm',1),(4301,4330,0,'dash','','/usr/share/asterisk/sounds/letters/dash.gsm',1),(4302,4331,0,'d','','/usr/share/asterisk/sounds/letters/d.gsm',1),(4303,4332,0,'e','','/usr/share/asterisk/sounds/letters/e.gsm',1),(4304,4333,0,'ascii123','','/usr/share/asterisk/sounds/letters/ascii123.gsm',1),(4305,4334,0,'ascii44','','/usr/share/asterisk/sounds/letters/ascii44.gsm',1),(4306,4335,0,'ascii36','','/usr/share/asterisk/sounds/letters/ascii36.gsm',1),(4307,4336,0,'c','','/usr/share/asterisk/sounds/letters/c.gsm',1),(4308,4337,0,'q','','/usr/share/asterisk/sounds/letters/q.gsm',1),(4309,4338,0,'ascii95','','/usr/share/asterisk/sounds/letters/ascii95.gsm',1),(4310,4339,0,'asterisk','','/usr/share/asterisk/sounds/letters/asterisk.gsm',1),(4311,4340,0,'ascii42','','/usr/share/asterisk/sounds/letters/ascii42.gsm',1),(4312,4341,0,'ascii38','','/usr/share/asterisk/sounds/letters/ascii38.gsm',1),(4313,4342,0,'plus','','/usr/share/asterisk/sounds/letters/plus.gsm',1),(4314,4343,0,'dot','','/usr/share/asterisk/sounds/letters/dot.gsm',1),(4315,4344,0,'h','','/usr/share/asterisk/sounds/letters/h.gsm',1),(4316,4345,0,'ascii34','','/usr/share/asterisk/sounds/letters/ascii34.gsm',1),(4317,4346,0,'at','','/usr/share/asterisk/sounds/letters/at.gsm',1),(4318,4347,0,'dollar','','/usr/share/asterisk/sounds/letters/dollar.gsm',1),(4319,4348,0,'y','','/usr/share/asterisk/sounds/letters/y.gsm',1),(4320,4349,0,'space','','/usr/share/asterisk/sounds/letters/space.gsm',1),(4321,4350,0,'ascii96','','/usr/share/asterisk/sounds/letters/ascii96.gsm',1),(4322,4351,0,'ascii124','','/usr/share/asterisk/sounds/letters/ascii124.gsm',1),(4323,4352,0,'o','','/usr/share/asterisk/sounds/letters/o.gsm',1),(4324,4353,0,'f','','/usr/share/asterisk/sounds/letters/f.gsm',1),(4325,4354,0,'ascii91','','/usr/share/asterisk/sounds/letters/ascii91.gsm',1),(4326,4355,0,'ascii94','','/usr/share/asterisk/sounds/letters/ascii94.gsm',1),(4327,4356,0,'equals','','/usr/share/asterisk/sounds/letters/equals.gsm',1),(4328,4357,0,'b','','/usr/share/asterisk/sounds/letters/b.gsm',1),(4329,4358,0,'k','','/usr/share/asterisk/sounds/letters/k.gsm',1),(4330,4359,0,'x','','/usr/share/asterisk/sounds/letters/x.gsm',1),(4331,4360,0,'ascii125','','/usr/share/asterisk/sounds/letters/ascii125.gsm',1),(4332,4361,0,'v','','/usr/share/asterisk/sounds/letters/v.gsm',1),(4333,4362,0,'g','','/usr/share/asterisk/sounds/letters/g.gsm',1),(4334,4363,0,'n','','/usr/share/asterisk/sounds/letters/n.gsm',1),(4335,4364,0,'ascii59','','/usr/share/asterisk/sounds/letters/ascii59.gsm',1),(4336,4365,0,'ascii41','','/usr/share/asterisk/sounds/letters/ascii41.gsm',1),(4337,4366,0,'w','','/usr/share/asterisk/sounds/letters/w.gsm',1),(4338,4367,0,'m','','/usr/share/asterisk/sounds/letters/m.gsm',1),(4339,4368,0,'u','','/usr/share/asterisk/sounds/letters/u.gsm',1),(4340,4369,0,'ascii63','','/usr/share/asterisk/sounds/letters/ascii63.gsm',1),(4341,4370,0,'i','','/usr/share/asterisk/sounds/letters/i.gsm',1),(4342,4371,0,'r','','/usr/share/asterisk/sounds/letters/r.gsm',1),(4343,4372,0,'ascii58','','/usr/share/asterisk/sounds/letters/ascii58.gsm',1),(4344,4373,0,'ascii37','','/usr/share/asterisk/sounds/letters/ascii37.gsm',1),(4345,4374,0,'ascii126','','/usr/share/asterisk/sounds/letters/ascii126.gsm',1),(4346,4375,0,'ascii60','','/usr/share/asterisk/sounds/letters/ascii60.gsm',1),(4347,4376,0,'a','','/usr/share/asterisk/sounds/letters/a.gsm',1),(4348,4377,0,'t','','/usr/share/asterisk/sounds/letters/t.gsm',1),(4349,4378,0,'spy-mgcp','','/usr/share/asterisk/sounds/spy-mgcp.gsm',1),(4350,4379,0,'spy-zap','','/usr/share/asterisk/sounds/spy-zap.gsm',1),(4351,4380,0,'Hold Time','The estimated hold time is currently.','/usr/share/asterisk/sounds/queue-holdtime.gsm',1),(4352,4381,0,'conf-lockednow','','/usr/share/asterisk/sounds/conf-lockednow.gsm',1),(4353,4382,0,'vm-saved','','/usr/share/asterisk/sounds/vm-saved.gsm',1),(4354,4383,0,'conf-errormenu','','/usr/share/asterisk/sounds/conf-errormenu.gsm',1),(4355,4384,0,'spy-skinny','','/usr/share/asterisk/sounds/spy-skinny.gsm',1),(4356,4385,0,'Logged Off','Agent logged off.','/usr/share/asterisk/sounds/agent-loggedoff.gsm',1),(4357,4386,0,'vm-nonumber','','/usr/share/asterisk/sounds/vm-nonumber.gsm',1),(4358,4387,0,'spy-iax2','','/usr/share/asterisk/sounds/spy-iax2.gsm',1),(4359,4388,0,'minutes','','/usr/share/asterisk/sounds/minutes.gsm',1),(4360,4389,0,'vm-deleted','','/usr/share/asterisk/sounds/vm-deleted.gsm',1),(4361,4390,0,'Minutes','Minutes.','/usr/share/asterisk/sounds/queue-minutes.gsm',1),(4362,4391,0,'conf-usermenu','','/usr/share/asterisk/sounds/conf-usermenu.gsm',1),(4364,4393,0,'vm-tocallnum','','/usr/share/asterisk/sounds/vm-tocallnum.gsm',1),(4365,4394,0,'privacy-incorrect','','/usr/share/asterisk/sounds/privacy-incorrect.gsm',1),(4366,4395,0,'conf-placeintoconf','','/usr/share/asterisk/sounds/conf-placeintoconf.gsm',1),(4367,4396,0,'Thank You','Thank You.','/usr/share/asterisk/sounds/auth-thankyou.gsm',1),(4368,4397,0,'Monkeys','','/usr/share/asterisk/sounds/tt-monkeys.gsm',1),(4369,4398,0,'vm-goodbye','','/usr/share/asterisk/sounds/vm-goodbye.gsm',1),(4370,4399,0,'vm-extension','','/usr/share/asterisk/sounds/vm-extension.gsm',1),(4371,4400,0,'conf-kicked','','/usr/share/asterisk/sounds/conf-kicked.gsm',1),(4372,4401,0,'pbx-invalidpark','','/usr/share/asterisk/sounds/pbx-invalidpark.gsm',1),(4373,4402,0,'vm-torerecord','','/usr/share/asterisk/sounds/vm-torerecord.gsm',1),(4374,4403,0,'vm-sorry','','/usr/share/asterisk/sounds/vm-sorry.gsm',1),(4375,4404,0,'vm-tocancelmsg','','/usr/share/asterisk/sounds/vm-tocancelmsg.gsm',1),(4376,4405,0,'vm-starmain','','/usr/share/asterisk/sounds/vm-starmain.gsm',1),(4377,4406,0,'vm-msgsaved','','/usr/share/asterisk/sounds/vm-msgsaved.gsm',1),(4378,4407,0,'vm-star-cancel','','/usr/share/asterisk/sounds/vm-star-cancel.gsm',1),(4379,4408,0,'record_mode','','/usr/share/asterisk/sounds/dictate/record_mode.gsm',1),(4380,4409,0,'forhelp','','/usr/share/asterisk/sounds/dictate/forhelp.gsm',1),(4381,4410,0,'both_help','','/usr/share/asterisk/sounds/dictate/both_help.gsm',1),(4382,4411,0,'enter_filename','','/usr/share/asterisk/sounds/dictate/enter_filename.gsm',1),(4383,4412,0,'playback','','/usr/share/asterisk/sounds/dictate/playback.gsm',1),(4384,4413,0,'playback_mode','','/usr/share/asterisk/sounds/dictate/playback_mode.gsm',1),(4385,4414,0,'record','','/usr/share/asterisk/sounds/dictate/record.gsm',1),(4386,4415,0,'play_help','','/usr/share/asterisk/sounds/dictate/play_help.gsm',1),(4387,4416,0,'paused','','/usr/share/asterisk/sounds/dictate/paused.gsm',1),(4388,4417,0,'truncating_audio','','/usr/share/asterisk/sounds/dictate/truncating_audio.gsm',1),(4389,4418,0,'record_help','','/usr/share/asterisk/sounds/dictate/record_help.gsm',1),(4390,4419,0,'pause','','/usr/share/asterisk/sounds/dictate/pause.gsm',1),(4391,4420,0,'conf-unlockednow','','/usr/share/asterisk/sounds/conf-unlockednow.gsm',1),(4392,4421,0,'vm-intro','','/usr/share/asterisk/sounds/vm-intro.gsm',1),(4393,4422,0,'vm-incorrect-mailbox','','/usr/share/asterisk/sounds/vm-incorrect-mailbox.gsm',1),(4394,4423,0,'Calls Waiting','Waiting to speak to a representative.','/usr/share/asterisk/sounds/queue-callswaiting.gsm',1),(4395,4424,0,'vm-msginstruct','','/usr/share/asterisk/sounds/vm-msginstruct.gsm',1),(4396,4425,0,'vm-and','','/usr/share/asterisk/sounds/vm-and.gsm',1),(4397,4426,0,'vm-toforward','','/usr/share/asterisk/sounds/vm-toforward.gsm',1),(4398,4427,0,'New Extension','Please enter a new extension followed by pound.','/usr/share/asterisk/sounds/agent-newlocation.gsm',1),(4399,4428,0,'vm-isonphone','','/usr/share/asterisk/sounds/vm-isonphone.gsm',1),(4400,4429,0,'vm-isunavail','','/usr/share/asterisk/sounds/vm-isunavail.gsm',1),(4401,4430,0,'You Are Next','Your call is now first in line and will be answered by the next available representative.','/usr/share/asterisk/sounds/queue-youarenext.gsm',1),(4402,4431,0,'priv-recordintro','','/usr/share/asterisk/sounds/priv-recordintro.gsm',1),(4403,4432,0,'vm-options','','/usr/share/asterisk/sounds/vm-options.gsm',1),(4404,4433,0,'vm-delete','','/usr/share/asterisk/sounds/vm-delete.gsm',1),(4405,4434,0,'conf-adminmenu','','/usr/share/asterisk/sounds/conf-adminmenu.gsm',1),(4406,4435,0,'vm-minutes','','/usr/share/asterisk/sounds/vm-minutes.gsm',1),(4407,4436,0,'conf-getchannel','','/usr/share/asterisk/sounds/conf-getchannel.gsm',1),(4408,4437,0,'vm-first','','/usr/share/asterisk/sounds/vm-first.gsm',1),(4409,4438,0,'priv-callee-options','','/usr/share/asterisk/sounds/priv-callee-options.gsm',1),(4410,4439,0,'vm-from-extension','','/usr/share/asterisk/sounds/vm-from-extension.gsm',1),(4411,4440,0,'vm-review','','/usr/share/asterisk/sounds/vm-review.gsm',1),(4412,4441,0,'conf-userswilljoin','','/usr/share/asterisk/sounds/conf-userswilljoin.gsm',1),(4413,4442,0,'conf-otherinparty','','/usr/share/asterisk/sounds/conf-otherinparty.gsm',1),(4414,4443,0,'conf-invalid','','/usr/share/asterisk/sounds/conf-invalid.gsm',1),(4415,4444,0,'hours','','/usr/share/asterisk/sounds/hours.gsm',1),(4416,4445,0,'vm-repeat','','/usr/share/asterisk/sounds/vm-repeat.gsm',1),(4418,4447,0,'beeperr','','/usr/share/asterisk/sounds/beeperr.gsm',1),(4419,4448,0,'vm-message','','/usr/share/asterisk/sounds/vm-message.gsm',1),(4420,4449,0,'vm-rec-unv','','/usr/share/asterisk/sounds/vm-rec-unv.gsm',1),(4421,4450,0,'seconds','','/usr/share/asterisk/sounds/seconds.gsm',1),(4423,4452,0,'vm-passchanged','','/usr/share/asterisk/sounds/vm-passchanged.gsm',1),(4424,4453,0,'spy-iax','','/usr/share/asterisk/sounds/spy-iax.gsm',1),(4425,4454,0,'vm-no','','/usr/share/asterisk/sounds/vm-no.gsm',1),(4426,4455,0,'conf-unmuted','','/usr/share/asterisk/sounds/conf-unmuted.gsm',1),(4427,4456,0,'conf-locked','','/usr/share/asterisk/sounds/conf-locked.gsm',1),(4428,4457,0,'vm-tempgreeting','','/usr/share/asterisk/sounds/vm-tempgreeting.gsm',1),(4429,4458,0,'Incorrect','Password incorrect. Please enter your password followed by the pound key.','/usr/share/asterisk/sounds/auth-incorrect.gsm',1),(4430,4459,0,'status','','/usr/share/asterisk/sounds/followme/status.gsm',1),(4431,4460,0,'call-from','','/usr/share/asterisk/sounds/followme/call-from.gsm',1),(4432,4461,0,'sorry','','/usr/share/asterisk/sounds/followme/sorry.gsm',1),(4433,4462,0,'options','','/usr/share/asterisk/sounds/followme/options.gsm',1),(4434,4463,0,'pls-hold-while-try','','/usr/share/asterisk/sounds/followme/pls-hold-while-try.gsm',1),(4435,4464,0,'no-recording','','/usr/share/asterisk/sounds/followme/no-recording.gsm',1),(4436,4465,0,'vm-savemessage','','/usr/share/asterisk/sounds/vm-savemessage.gsm',1),(4437,4466,0,'vm-newuser','','/usr/share/asterisk/sounds/vm-newuser.gsm',1),(4438,4467,0,'conf-muted','','/usr/share/asterisk/sounds/conf-muted.gsm',1),(4439,4468,0,'vm-rec-busy','','/usr/share/asterisk/sounds/vm-rec-busy.gsm',1),(4440,4469,0,'No More Entries','There are no more compatible entires in the directory.','/usr/share/asterisk/sounds/dir-nomore.gsm',1),(4441,4470,0,'dir-multi3','','/usr/share/asterisk/sounds/dir-multi3.gsm',1),(4442,4471,0,'conf-hasjoin','','/usr/share/asterisk/sounds/conf-hasjoin.gsm',1),(4443,4472,0,'vm-Work','','/usr/share/asterisk/sounds/vm-Work.gsm',1),(4444,4473,0,'vm-calldiffnum','','/usr/share/asterisk/sounds/vm-calldiffnum.gsm',1),(4445,4474,0,'vm-rec-name','','/usr/share/asterisk/sounds/vm-rec-name.gsm',1),(4446,4475,0,'vm-tocallback','','/usr/share/asterisk/sounds/vm-tocallback.gsm',1),(4447,4476,0,'vm-reenterpassword','','/usr/share/asterisk/sounds/vm-reenterpassword.gsm',1),(4448,4477,0,'vm-for','','/usr/share/asterisk/sounds/vm-for.gsm',1),(4449,4478,0,'pbx-invalid','','/usr/share/asterisk/sounds/pbx-invalid.gsm',1),(4450,4479,0,'Weasles','Weasels have eaten our phone system.','/usr/share/asterisk/sounds/tt-weasels.gsm',1),(4451,4480,0,'Password','Please enter your password followed by the pound key.','/usr/share/asterisk/sounds/agent-pass.gsm',1),(4452,4481,0,'vm-reachoper','','/usr/share/asterisk/sounds/vm-reachoper.gsm',1),(4454,4483,0,'vm-password','','/usr/share/asterisk/sounds/vm-password.gsm',1),(4456,4485,0,'vm-savedto','','/usr/share/asterisk/sounds/vm-savedto.gsm',1),(4458,4487,0,'vm-Cust2','','/usr/share/asterisk/sounds/vm-Cust2.gsm',1),(4459,4488,0,'screen-callee-options','','/usr/share/asterisk/sounds/screen-callee-options.gsm',1),(4460,4489,0,'dir-multi1','','/usr/share/asterisk/sounds/dir-multi1.gsm',1),(4461,4490,0,'vm-incorrect','','/usr/share/asterisk/sounds/vm-incorrect.gsm',1),(4462,4491,0,'vm-enter-num-to-call','','/usr/share/asterisk/sounds/vm-enter-num-to-call.gsm',1),(4463,4492,0,'queue-quantity1','','/usr/share/asterisk/sounds/queue-quantity1.gsm',1),(4464,4493,0,'vm-INBOX','','/usr/share/asterisk/sounds/vm-INBOX.gsm',1),(4465,4494,0,'vm-forward','','/usr/share/asterisk/sounds/vm-forward.gsm',1),(4466,4495,0,'vm-from','','/usr/share/asterisk/sounds/vm-from.gsm',1),(4467,4496,0,'vm-mailboxfull','','/usr/share/asterisk/sounds/vm-mailboxfull.gsm',1),(4468,4497,0,'vm-toenternumber','','/usr/share/asterisk/sounds/vm-toenternumber.gsm',1),(4469,4498,0,'conf-thereare','','/usr/share/asterisk/sounds/conf-thereare.gsm',1),(4470,4499,0,'vm-opts','','/usr/share/asterisk/sounds/vm-opts.gsm',1),(4471,4500,0,'vm-leavemsg','','/usr/share/asterisk/sounds/vm-leavemsg.gsm',1),(4472,4501,0,'vm-Cust1','','/usr/share/asterisk/sounds/vm-Cust1.gsm',1),(4473,4502,0,'4','','/usr/share/asterisk/sounds/silence/4.gsm',1),(4474,4503,0,'8','','/usr/share/asterisk/sounds/silence/8.gsm',1),(4475,4504,0,'10','','/usr/share/asterisk/sounds/silence/10.gsm',1),(4476,4505,0,'7','','/usr/share/asterisk/sounds/silence/7.gsm',1),(4477,4506,0,'6','','/usr/share/asterisk/sounds/silence/6.gsm',1),(4478,4507,0,'3','','/usr/share/asterisk/sounds/silence/3.gsm',1),(4479,4508,0,'2','','/usr/share/asterisk/sounds/silence/2.gsm',1),(4480,4509,0,'5','','/usr/share/asterisk/sounds/silence/5.gsm',1),(4481,4510,0,'1','','/usr/share/asterisk/sounds/silence/1.gsm',1),(4482,4511,0,'9','','/usr/share/asterisk/sounds/silence/9.gsm',1),(4483,4512,0,'pbx-transfer','','/usr/share/asterisk/sounds/pbx-transfer.gsm',1),(4484,4513,0,'conf-userwilljoin','','/usr/share/asterisk/sounds/conf-userwilljoin.gsm',1),(4485,4514,0,'vm-newpassword','','/usr/share/asterisk/sounds/vm-newpassword.gsm',1),(4486,4515,0,'vm-Cust5','','/usr/share/asterisk/sounds/vm-Cust5.gsm',1),(4487,4516,0,'vm-login','','/usr/share/asterisk/sounds/vm-login.gsm',1),(4488,4517,0,'Monkeys Have','They have been carried away by monkeys.','/usr/share/asterisk/sounds/tt-monkeysintro.gsm',1),(4489,4518,0,'vm-theperson','','/usr/share/asterisk/sounds/vm-theperson.gsm',1),(4490,4519,0,'ss-noservice','','/usr/share/asterisk/sounds/ss-noservice.gsm',1),(4491,4520,0,'beep','','/usr/share/asterisk/sounds/beep.gsm',1),(4492,4521,0,'vm-Friends','','/usr/share/asterisk/sounds/vm-Friends.gsm',1),(4493,4522,0,'Introduction (Firstname)','Welcome to the directory. Please enter the first three letters of your party\'s first name. Use the 7 key for Q and the 9 key for Z.','/usr/share/asterisk/sounds/dir-intro-fn.gsm',1),(4494,4523,0,'vm-messages','','/usr/share/asterisk/sounds/vm-messages.gsm',1),(4496,4525,0,'vm-dialout','','/usr/share/asterisk/sounds/vm-dialout.gsm',1),(4497,4526,0,'vm-next','','/usr/share/asterisk/sounds/vm-next.gsm',1),(4498,4527,0,'l_p','','/usr/share/asterisk/sounds/phonetic/l_p.gsm',1),(4499,4528,0,'g_p','','/usr/share/asterisk/sounds/phonetic/g_p.gsm',1),(4500,4529,0,'j_p','','/usr/share/asterisk/sounds/phonetic/j_p.gsm',1),(4501,4530,0,'q_p','','/usr/share/asterisk/sounds/phonetic/q_p.gsm',1),(4502,4531,0,'n_p','','/usr/share/asterisk/sounds/phonetic/n_p.gsm',1),(4503,4532,0,'t_p','','/usr/share/asterisk/sounds/phonetic/t_p.gsm',1),(4504,4533,0,'a_p','','/usr/share/asterisk/sounds/phonetic/a_p.gsm',1),(4505,4534,0,'m_p','','/usr/share/asterisk/sounds/phonetic/m_p.gsm',1),(4506,4535,0,'h_p','','/usr/share/asterisk/sounds/phonetic/h_p.gsm',1),(4507,4536,0,'d_p','','/usr/share/asterisk/sounds/phonetic/d_p.gsm',1),(4508,4537,0,'p_p','','/usr/share/asterisk/sounds/phonetic/p_p.gsm',1),(4509,4538,0,'o_p','','/usr/share/asterisk/sounds/phonetic/o_p.gsm',1),(4510,4539,0,'w_p','','/usr/share/asterisk/sounds/phonetic/w_p.gsm',1),(4511,4540,0,'r_p','','/usr/share/asterisk/sounds/phonetic/r_p.gsm',1),(4512,4541,0,'b_p','','/usr/share/asterisk/sounds/phonetic/b_p.gsm',1),(4513,4542,0,'i_p','','/usr/share/asterisk/sounds/phonetic/i_p.gsm',1),(4514,4543,0,'c_p','','/usr/share/asterisk/sounds/phonetic/c_p.gsm',1),(4515,4544,0,'x_p','','/usr/share/asterisk/sounds/phonetic/x_p.gsm',1),(4516,4545,0,'s_p','','/usr/share/asterisk/sounds/phonetic/s_p.gsm',1),(4517,4546,0,'v_p','','/usr/share/asterisk/sounds/phonetic/v_p.gsm',1),(4518,4547,0,'y_p','','/usr/share/asterisk/sounds/phonetic/y_p.gsm',1),(4519,4548,0,'f_p','','/usr/share/asterisk/sounds/phonetic/f_p.gsm',1),(4520,4549,0,'z_p','','/usr/share/asterisk/sounds/phonetic/z_p.gsm',1),(4521,4550,0,'9_p','','/usr/share/asterisk/sounds/phonetic/9_p.gsm',1),(4522,4551,0,'k_p','','/usr/share/asterisk/sounds/phonetic/k_p.gsm',1),(4523,4552,0,'u_p','','/usr/share/asterisk/sounds/phonetic/u_p.gsm',1),(4524,4553,0,'e_p','','/usr/share/asterisk/sounds/phonetic/e_p.gsm',1),(4525,4554,0,'vm-press','','/usr/share/asterisk/sounds/vm-press.gsm',1),(4526,4555,0,'vm-forwardoptions','','/usr/share/asterisk/sounds/vm-forwardoptions.gsm',1),(4527,4556,0,'vm-last','','/usr/share/asterisk/sounds/vm-last.gsm',1),(4528,4557,0,'dir-multi9','','/usr/share/asterisk/sounds/dir-multi9.gsm',1),(4529,4558,0,'dir-multi2','','/usr/share/asterisk/sounds/dir-multi2.gsm',1),(4530,4559,0,'vm-duration','','/usr/share/asterisk/sounds/vm-duration.gsm',1),(4531,4560,0,'vm-undeleted','','/usr/share/asterisk/sounds/vm-undeleted.gsm',1),(4532,4561,0,'queue-quantity2','','/usr/share/asterisk/sounds/queue-quantity2.gsm',1),(4533,4562,0,'privacy-prompt','','/usr/share/asterisk/sounds/privacy-prompt.gsm',1),(4534,4563,0,'Seconds','Seconds.','/usr/share/asterisk/sounds/queue-seconds.gsm',1),(4535,4564,0,'conf-noempty','','/usr/share/asterisk/sounds/conf-noempty.gsm',1),(4536,4565,0,'vm-Old','','/usr/share/asterisk/sounds/vm-Old.gsm',1),(4537,4566,0,'vm-then-pound','','/usr/share/asterisk/sounds/vm-then-pound.gsm',1),(4553,4263,0,'Unu','Unu','/var/lib/asterisk/sounds/custom//telesoft-web-4553.wav',2),(4552,4576,0,'Announcement 111','Announcement','/var/lib/asterisk/sounds/custom//telesoft-web-4552.wav',1),(4554,4167,0,'vm-mismatch-ro','Test ro','/var/lib/asterisk/sounds/custom//telesoft-web-4554.wav',2); /*!40000 ALTER TABLE `soundfiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `soundfolders` -- DROP TABLE IF EXISTS `soundfolders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `soundfolders` ( `pk_soundfolder` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `description` text NOT NULL, `type` enum('User','System') NOT NULL DEFAULT 'User', `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_soundfolder`) ) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `soundfolders` -- LOCK TABLES `soundfolders` WRITE; /*!40000 ALTER TABLE `soundfolders` DISABLE KEYS */; INSERT INTO `soundfolders` VALUES (1,'Unsorted','','System','2008-09-02 15:28:00'),(2,'Conference','','System','2008-09-02 15:28:00'),(8,'Digits','','System','2008-09-08 15:43:47'),(9,'Agent','','System','2008-09-08 19:55:58'),(10,'Authentication','','System','2008-09-08 19:56:12'),(11,'Call Queues','','System','2008-09-08 19:56:29'),(12,'Days','','System','2008-09-08 19:56:53'),(13,'Directory','','System','2008-09-08 19:57:11'),(14,'Voicemail','','System','2008-09-08 19:57:32'),(18,'Humor','','System','2009-06-02 16:32:07'),(16,'Months','','System','2008-09-08 21:55:50'),(19,'IVR','','System','2009-06-02 16:32:21'),(20,'Letters','','System','2009-06-02 16:32:36'),(21,'Miscellaneous','','System','2009-06-02 16:32:51'),(22,'Phonetic','','System','2009-06-02 16:33:31'),(23,'Privacy','','System','2009-06-02 16:41:03'); /*!40000 ALTER TABLE `soundfolders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `soundlanguages` -- DROP TABLE IF EXISTS `soundlanguages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `soundlanguages` ( `pk_soundlanguage` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `type` enum('User','System') NOT NULL DEFAULT 'User', `default` tinyint(1) NOT NULL, `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_soundlanguage`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `soundlanguages` -- LOCK TABLES `soundlanguages` WRITE; /*!40000 ALTER TABLE `soundlanguages` DISABLE KEYS */; INSERT INTO `soundlanguages` VALUES (1,'English','System',0,'2008-09-09 21:00:00'); /*!40000 ALTER TABLE `soundlanguages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `soundpacks` -- DROP TABLE IF EXISTS `soundpacks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `soundpacks` ( `pk_soundpack` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, PRIMARY KEY (`pk_soundpack`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `soundpacks` -- LOCK TABLES `soundpacks` WRITE; /*!40000 ALTER TABLE `soundpacks` DISABLE KEYS */; INSERT INTO `soundpacks` VALUES (1,'Default Sounds'); /*!40000 ALTER TABLE `soundpacks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status_extensions` -- DROP TABLE IF EXISTS `status_extensions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `status_extensions` ( `extension` varchar(10) NOT NULL, `useragent` varchar(255) NOT NULL, `ipaddress` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, PRIMARY KEY (`extension`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status_extensions` -- LOCK TABLES `status_extensions` WRITE; /*!40000 ALTER TABLE `status_extensions` DISABLE KEYS */; INSERT INTO `status_extensions` VALUES ('1001','sflphone/0.9.8~rc1','192.168.0.2','1'),('1002','','','0'),('1003','','','0'),('1004','','','0'),('1005','','','0'); /*!40000 ALTER TABLE `status_extensions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status_trunks` -- DROP TABLE IF EXISTS `status_trunks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `status_trunks` ( `pk_trunk` int(11) NOT NULL, `type` varchar(255) NOT NULL, `latency` int(11) NOT NULL, `status` varchar(255) DEFAULT NULL, `host` varchar(255) NOT NULL, PRIMARY KEY (`pk_trunk`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status_trunks` -- LOCK TABLES `status_trunks` WRITE; /*!40000 ALTER TABLE `status_trunks` DISABLE KEYS */; /*!40000 ALTER TABLE `status_trunks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_codecs` -- DROP TABLE IF EXISTS `template_codecs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_codecs` ( `fk_template` int(10) unsigned NOT NULL, `fk_codec` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_template`,`fk_codec`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_codecs` -- LOCK TABLES `template_codecs` WRITE; /*!40000 ALTER TABLE `template_codecs` DISABLE KEYS */; INSERT INTO `template_codecs` VALUES (1,1),(1,2),(1,9); /*!40000 ALTER TABLE `template_codecs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_features` -- DROP TABLE IF EXISTS `template_features`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_features` ( `fk_template` int(10) unsigned NOT NULL, `fk_feature` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_template`,`fk_feature`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_features` -- LOCK TABLES `template_features` WRITE; /*!40000 ALTER TABLE `template_features` DISABLE KEYS */; INSERT INTO `template_features` VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6); /*!40000 ALTER TABLE `template_features` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_groups` -- DROP TABLE IF EXISTS `template_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_groups` ( `fk_group` int(10) unsigned NOT NULL, `fk_template` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_group`,`fk_template`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_groups` -- LOCK TABLES `template_groups` WRITE; /*!40000 ALTER TABLE `template_groups` DISABLE KEYS */; INSERT INTO `template_groups` VALUES (76,1); /*!40000 ALTER TABLE `template_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `template_outroutes` -- DROP TABLE IF EXISTS `template_outroutes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `template_outroutes` ( `fk_template` int(10) unsigned NOT NULL, `fk_outroute` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_template`,`fk_outroute`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `template_outroutes` -- LOCK TABLES `template_outroutes` WRITE; /*!40000 ALTER TABLE `template_outroutes` DISABLE KEYS */; INSERT INTO `template_outroutes` VALUES (1,1); /*!40000 ALTER TABLE `template_outroutes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `templates` -- DROP TABLE IF EXISTS `templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `templates` ( `pk_template` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(32) NOT NULL, `firstname_editable` tinyint(1) NOT NULL, `lastname_editable` tinyint(1) NOT NULL, `password_editable` tinyint(1) NOT NULL, `email_editable` tinyint(1) NOT NULL, `fk_nattype` int(10) unsigned NOT NULL DEFAULT '1', `fk_dtmfmode` int(10) unsigned NOT NULL DEFAULT '1', `ivrdial` tinyint(1) NOT NULL DEFAULT '1', `datecreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `protected` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`pk_template`), KEY `FK_NATType` (`fk_nattype`), KEY `FK_DTMFMode` (`fk_dtmfmode`) ) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `templates` -- LOCK TABLES `templates` WRITE; /*!40000 ALTER TABLE `templates` DISABLE KEYS */; INSERT INTO `templates` VALUES (1,'Default',1,1,1,1,2,1,1,'2008-06-09 14:08:01',1); /*!40000 ALTER TABLE `templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `timeframe_intervals` -- DROP TABLE IF EXISTS `timeframe_intervals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `timeframe_intervals` ( `pk_interval` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_timeframe` int(10) unsigned NOT NULL, `startdate` date DEFAULT NULL, `enddate` date DEFAULT NULL, `startday` mediumint(9) DEFAULT NULL, `endday` mediumint(9) DEFAULT NULL, `starttime` varchar(50) NOT NULL, `starttimemode` enum('AM','PM') NOT NULL, `endtime` varchar(50) NOT NULL, `endtimemode` enum('AM','PM') NOT NULL, `orderdummy` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`pk_interval`) ) ENGINE=MyISAM AUTO_INCREMENT=92 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `timeframe_intervals` -- LOCK TABLES `timeframe_intervals` WRITE; /*!40000 ALTER TABLE `timeframe_intervals` DISABLE KEYS */; INSERT INTO `timeframe_intervals` VALUES (91,22,'0000-00-00','0000-00-00',1,5,'9:00','AM','5:00','PM','2010-03-26 22:15:41'); /*!40000 ALTER TABLE `timeframe_intervals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `timeframes` -- DROP TABLE IF EXISTS `timeframes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `timeframes` ( `pk_timeframe` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `fk_extension` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`pk_timeframe`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `timeframes` -- LOCK TABLES `timeframes` WRITE; /*!40000 ALTER TABLE `timeframes` DISABLE KEYS */; INSERT INTO `timeframes` VALUES (22,'Working Hours',0); /*!40000 ALTER TABLE `timeframes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `timezones` -- DROP TABLE IF EXISTS `timezones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `timezones` ( `name` varchar(30) NOT NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `timezones` -- LOCK TABLES `timezones` WRITE; /*!40000 ALTER TABLE `timezones` DISABLE KEYS */; INSERT INTO `timezones` VALUES ('Africa/Abidjan'),('Africa/Accra'),('Africa/Addis_Ababa'),('Africa/Algiers'),('Africa/Asmara'),('Africa/Asmera'),('Africa/Bamako'),('Africa/Bangui'),('Africa/Banjul'),('Africa/Bissau'),('Africa/Blantyre'),('Africa/Brazzaville'),('Africa/Bujumbura'),('Africa/Cairo'),('Africa/Casablanca'),('Africa/Ceuta'),('Africa/Conakry'),('Africa/Dakar'),('Africa/Dar_es_Salaam'),('Africa/Djibouti'),('Africa/Douala'),('Africa/El_Aaiun'),('Africa/Freetown'),('Africa/Gaborone'),('Africa/Harare'),('Africa/Johannesburg'),('Africa/Kampala'),('Africa/Khartoum'),('Africa/Kigali'),('Africa/Kinshasa'),('Africa/Lagos'),('Africa/Libreville'),('Africa/Lome'),('Africa/Luanda'),('Africa/Lubumbashi'),('Africa/Lusaka'),('Africa/Malabo'),('Africa/Maputo'),('Africa/Maseru'),('Africa/Mbabane'),('Africa/Mogadishu'),('Africa/Monrovia'),('Africa/Nairobi'),('Africa/Ndjamena'),('Africa/Niamey'),('Africa/Nouakchott'),('Africa/Ouagadougou'),('Africa/Porto-Novo'),('Africa/Sao_Tome'),('Africa/Timbuktu'),('Africa/Tripoli'),('Africa/Tunis'),('Africa/Windhoek'),('America/Adak'),('America/Anchorage'),('America/Anguilla'),('America/Antigua'),('America/Araguaina'),('America/Argentina/Buenos_Aires'),('America/Argentina/Catamarca'),('America/Argentina/ComodRivadav'),('America/Argentina/Cordoba'),('America/Argentina/Jujuy'),('America/Argentina/La_Rioja'),('America/Argentina/Mendoza'),('America/Argentina/Rio_Gallegos'),('America/Argentina/Salta'),('America/Argentina/San_Juan'),('America/Argentina/San_Luis'),('America/Argentina/Tucuman'),('America/Argentina/Ushuaia'),('America/Aruba'),('America/Asuncion'),('America/Atikokan'),('America/Atka'),('America/Bahia'),('America/Barbados'),('America/Belem'),('America/Belize'),('America/Blanc-Sablon'),('America/Boa_Vista'),('America/Bogota'),('America/Boise'),('America/Buenos_Aires'),('America/Cambridge_Bay'),('America/Campo_Grande'),('America/Cancun'),('America/Caracas'),('America/Catamarca'),('America/Cayenne'),('America/Cayman'),('America/Chicago'),('America/Chihuahua'),('America/Coral_Harbour'),('America/Cordoba'),('America/Costa_Rica'),('America/Cuiaba'),('America/Curacao'),('America/Danmarkshavn'),('America/Dawson'),('America/Dawson_Creek'),('America/Denver'),('America/Detroit'),('America/Dominica'),('America/Edmonton'),('America/Eirunepe'),('America/El_Salvador'),('America/Ensenada'),('America/Fortaleza'),('America/Fort_Wayne'),('America/Glace_Bay'),('America/Godthab'),('America/Goose_Bay'),('America/Grand_Turk'),('America/Grenada'),('America/Guadeloupe'),('America/Guatemala'),('America/Guayaquil'),('America/Guyana'),('America/Halifax'),('America/Havana'),('America/Hermosillo'),('America/Indiana/Indianapolis'),('America/Indiana/Knox'),('America/Indiana/Marengo'),('America/Indiana/Petersburg'),('America/Indiana/Tell_City'),('America/Indiana/Vevay'),('America/Indiana/Vincennes'),('America/Indiana/Winamac'),('America/Indianapolis'),('America/Inuvik'),('America/Iqaluit'),('America/Jamaica'),('America/Jujuy'),('America/Juneau'),('America/Kentucky/Louisville'),('America/Kentucky/Monticello'),('America/Knox_IN'),('America/La_Paz'),('America/Lima'),('America/Los_Angeles'),('America/Louisville'),('America/Maceio'),('America/Managua'),('America/Manaus'),('America/Marigot'),('America/Martinique'),('America/Mazatlan'),('America/Mendoza'),('America/Menominee'),('America/Merida'),('America/Mexico_City'),('America/Miquelon'),('America/Moncton'),('America/Monterrey'),('America/Montevideo'),('America/Montreal'),('America/Montserrat'),('America/Nassau'),('America/New_York'),('America/Nipigon'),('America/Nome'),('America/Noronha'),('America/North_Dakota/Center'),('America/North_Dakota/New_Salem'),('America/Panama'),('America/Pangnirtung'),('America/Paramaribo'),('America/Phoenix'),('America/Port-au-Prince'),('America/Porto_Acre'),('America/Porto_Velho'),('America/Port_of_Spain'),('America/Puerto_Rico'),('America/Rainy_River'),('America/Rankin_Inlet'),('America/Recife'),('America/Regina'),('America/Resolute'),('America/Rio_Branco'),('America/Rosario'),('America/Santarem'),('America/Santiago'),('America/Santo_Domingo'),('America/Sao_Paulo'),('America/Scoresbysund'),('America/Shiprock'),('America/St_Barthelemy'),('America/St_Johns'),('America/St_Kitts'),('America/St_Lucia'),('America/St_Thomas'),('America/St_Vincent'),('America/Swift_Current'),('America/Tegucigalpa'),('America/Thule'),('America/Thunder_Bay'),('America/Tijuana'),('America/Toronto'),('America/Tortola'),('America/Vancouver'),('America/Virgin'),('America/Whitehorse'),('America/Winnipeg'),('America/Yakutat'),('America/Yellowknife'),('Antarctica/Casey'),('Antarctica/Davis'),('Antarctica/DumontDUrville'),('Antarctica/Mawson'),('Antarctica/McMurdo'),('Antarctica/Palmer'),('Antarctica/Rothera'),('Antarctica/South_Pole'),('Antarctica/Syowa'),('Antarctica/Vostok'),('Arctic/Longyearbyen'),('Asia/Aden'),('Asia/Almaty'),('Asia/Amman'),('Asia/Anadyr'),('Asia/Aqtau'),('Asia/Aqtobe'),('Asia/Ashgabat'),('Asia/Ashkhabad'),('Asia/Baghdad'),('Asia/Bahrain'),('Asia/Baku'),('Asia/Bangkok'),('Asia/Beirut'),('Asia/Bishkek'),('Asia/Brunei'),('Asia/Calcutta'),('Asia/Choibalsan'),('Asia/Chongqing'),('Asia/Chungking'),('Asia/Colombo'),('Asia/Dacca'),('Asia/Damascus'),('Asia/Dhaka'),('Asia/Dili'),('Asia/Dubai'),('Asia/Dushanbe'),('Asia/Gaza'),('Asia/Harbin'),('Asia/Hong_Kong'),('Asia/Hovd'),('Asia/Ho_Chi_Minh'),('Asia/Irkutsk'),('Asia/Istanbul'),('Asia/Jakarta'),('Asia/Jayapura'),('Asia/Jerusalem'),('Asia/Kabul'),('Asia/Kamchatka'),('Asia/Karachi'),('Asia/Kashgar'),('Asia/Kathmandu'),('Asia/Katmandu'),('Asia/Kolkata'),('Asia/Krasnoyarsk'),('Asia/Kuala_Lumpur'),('Asia/Kuching'),('Asia/Kuwait'),('Asia/Macao'),('Asia/Macau'),('Asia/Magadan'),('Asia/Makassar'),('Asia/Manila'),('Asia/Muscat'),('Asia/Nicosia'),('Asia/Novosibirsk'),('Asia/Omsk'),('Asia/Oral'),('Asia/Phnom_Penh'),('Asia/Pontianak'),('Asia/Pyongyang'),('Asia/Qatar'),('Asia/Qyzylorda'),('Asia/Rangoon'),('Asia/Riyadh'),('Asia/Riyadh87'),('Asia/Riyadh88'),('Asia/Riyadh89'),('Asia/Saigon'),('Asia/Sakhalin'),('Asia/Samarkand'),('Asia/Seoul'),('Asia/Shanghai'),('Asia/Singapore'),('Asia/Taipei'),('Asia/Tashkent'),('Asia/Tbilisi'),('Asia/Tehran'),('Asia/Tel_Aviv'),('Asia/Thimbu'),('Asia/Thimphu'),('Asia/Tokyo'),('Asia/Ujung_Pandang'),('Asia/Ulaanbaatar'),('Asia/Ulan_Bator'),('Asia/Urumqi'),('Asia/Vientiane'),('Asia/Vladivostok'),('Asia/Yakutsk'),('Asia/Yekaterinburg'),('Asia/Yerevan'),('Atlantic/Azores'),('Atlantic/Bermuda'),('Atlantic/Canary'),('Atlantic/Cape_Verde'),('Atlantic/Faeroe'),('Atlantic/Faroe'),('Atlantic/Jan_Mayen'),('Atlantic/Madeira'),('Atlantic/Reykjavik'),('Atlantic/South_Georgia'),('Atlantic/Stanley'),('Atlantic/St_Helena'),('Australia/ACT'),('Australia/Adelaide'),('Australia/Brisbane'),('Australia/Broken_Hill'),('Australia/Canberra'),('Australia/Currie'),('Australia/Darwin'),('Australia/Eucla'),('Australia/Hobart'),('Australia/LHI'),('Australia/Lindeman'),('Australia/Lord_Howe'),('Australia/Melbourne'),('Australia/North'),('Australia/NSW'),('Australia/Perth'),('Australia/Queensland'),('Australia/South'),('Australia/Sydney'),('Australia/Tasmania'),('Australia/Victoria'),('Australia/West'),('Australia/Yancowinna'),('Brazil/Acre'),('Brazil/DeNoronha'),('Brazil/East'),('Brazil/West'),('Canada/Atlantic'),('Canada/Central'),('Canada/East-Saskatchewan'),('Canada/Eastern'),('Canada/Mountain'),('Canada/Newfoundland'),('Canada/Pacific'),('Canada/Saskatchewan'),('Canada/Yukon'),('Chile/Continental'),('Chile/EasterIsland'),('Europe/Amsterdam'),('Europe/Andorra'),('Europe/Athens'),('Europe/Belfast'),('Europe/Belgrade'),('Europe/Berlin'),('Europe/Bratislava'),('Europe/Brussels'),('Europe/Bucharest'),('Europe/Budapest'),('Europe/Chisinau'),('Europe/Copenhagen'),('Europe/Dublin'),('Europe/Gibraltar'),('Europe/Guernsey'),('Europe/Helsinki'),('Europe/Isle_of_Man'),('Europe/Istanbul'),('Europe/Jersey'),('Europe/Kaliningrad'),('Europe/Kiev'),('Europe/Lisbon'),('Europe/Ljubljana'),('Europe/London'),('Europe/Luxembourg'),('Europe/Madrid'),('Europe/Malta'),('Europe/Mariehamn'),('Europe/Minsk'),('Europe/Monaco'),('Europe/Moscow'),('Europe/Nicosia'),('Europe/Oslo'),('Europe/Paris'),('Europe/Podgorica'),('Europe/Prague'),('Europe/Riga'),('Europe/Rome'),('Europe/Samara'),('Europe/San_Marino'),('Europe/Sarajevo'),('Europe/Simferopol'),('Europe/Skopje'),('Europe/Sofia'),('Europe/Stockholm'),('Europe/Tallinn'),('Europe/Tirane'),('Europe/Tiraspol'),('Europe/Uzhgorod'),('Europe/Vaduz'),('Europe/Vatican'),('Europe/Vienna'),('Europe/Vilnius'),('Europe/Volgograd'),('Europe/Warsaw'),('Europe/Zagreb'),('Europe/Zaporozhye'),('Europe/Zurich'),('Indian/Antananarivo'),('Indian/Chagos'),('Indian/Christmas'),('Indian/Cocos'),('Indian/Comoro'),('Indian/Kerguelen'),('Indian/Mahe'),('Indian/Maldives'),('Indian/Mauritius'),('Indian/Mayotte'),('Indian/Reunion'),('Mexico/BajaNorte'),('Mexico/BajaSur'),('Mexico/General'),('Pacific/Apia'),('Pacific/Auckland'),('Pacific/Chatham'),('Pacific/Easter'),('Pacific/Efate'),('Pacific/Enderbury'),('Pacific/Fakaofo'),('Pacific/Fiji'),('Pacific/Funafuti'),('Pacific/Galapagos'),('Pacific/Gambier'),('Pacific/Guadalcanal'),('Pacific/Guam'),('Pacific/Honolulu'),('Pacific/Johnston'),('Pacific/Kiritimati'),('Pacific/Kosrae'),('Pacific/Kwajalein'),('Pacific/Majuro'),('Pacific/Marquesas'),('Pacific/Midway'),('Pacific/Nauru'),('Pacific/Niue'),('Pacific/Norfolk'),('Pacific/Noumea'),('Pacific/Pago_Pago'),('Pacific/Palau'),('Pacific/Pitcairn'),('Pacific/Ponape'),('Pacific/Port_Moresby'),('Pacific/Rarotonga'),('Pacific/Saipan'),('Pacific/Samoa'),('Pacific/Tahiti'),('Pacific/Tarawa'),('Pacific/Tongatapu'),('Pacific/Truk'),('Pacific/Wake'),('Pacific/Wallis'),('Pacific/Yap'),('US/Alaska'),('US/Aleutian'),('US/Arizona'),('US/Central'),('US/East-Indiana'),('US/Eastern'),('US/Hawaii'),('US/Indiana-Starke'),('US/Michigan'),('US/Mountain'),('US/Pacific'),('US/Samoa'); /*!40000 ALTER TABLE `timezones` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2010-09-27 9:21:07