0byt3m1n1
Path:
/
data
/
0
/
0
/
103
/
39
/
103365
/
meta
/
104819
/
mysql.backup
/
[
Home
]
File: tiki.mysql3.bak.sql
-- MySQL dump 10.11 -- -- Host: mysql3 Database: tiki -- ------------------------------------------------------ -- Server version 4.1.22 /*!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 `galaxia_activities` -- DROP TABLE IF EXISTS `galaxia_activities`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_activities` ( `activityId` int(14) NOT NULL auto_increment, `name` varchar(80) default NULL, `normalized_name` varchar(80) default NULL, `pId` int(14) NOT NULL default '0', `type` enum('start','end','split','switch','join','activity','standalone') default NULL, `isAutoRouted` char(1) default NULL, `flowNum` int(10) default NULL, `isInteractive` char(1) default NULL, `lastModif` int(14) default NULL, `description` text, `expirationTime` int(6) unsigned NOT NULL default '0', PRIMARY KEY (`activityId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_activities` -- LOCK TABLES `galaxia_activities` WRITE; /*!40000 ALTER TABLE `galaxia_activities` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_activities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_activity_roles` -- DROP TABLE IF EXISTS `galaxia_activity_roles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_activity_roles` ( `activityId` int(14) NOT NULL default '0', `roleId` int(14) NOT NULL default '0', PRIMARY KEY (`activityId`,`roleId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_activity_roles` -- LOCK TABLES `galaxia_activity_roles` WRITE; /*!40000 ALTER TABLE `galaxia_activity_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_activity_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_instance_activities` -- DROP TABLE IF EXISTS `galaxia_instance_activities`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_instance_activities` ( `instanceId` int(14) NOT NULL default '0', `activityId` int(14) NOT NULL default '0', `started` int(14) NOT NULL default '0', `ended` int(14) NOT NULL default '0', `user` varchar(40) default NULL, `status` enum('running','completed') default NULL, PRIMARY KEY (`instanceId`,`activityId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_instance_activities` -- LOCK TABLES `galaxia_instance_activities` WRITE; /*!40000 ALTER TABLE `galaxia_instance_activities` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_instance_activities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_instance_comments` -- DROP TABLE IF EXISTS `galaxia_instance_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_instance_comments` ( `cId` int(14) NOT NULL auto_increment, `instanceId` int(14) NOT NULL default '0', `user` varchar(40) default NULL, `activityId` int(14) default NULL, `hash` varchar(32) default NULL, `title` varchar(250) default NULL, `comment` text, `activity` varchar(80) default NULL, `timestamp` int(14) default NULL, PRIMARY KEY (`cId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_instance_comments` -- LOCK TABLES `galaxia_instance_comments` WRITE; /*!40000 ALTER TABLE `galaxia_instance_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_instance_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_instances` -- DROP TABLE IF EXISTS `galaxia_instances`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_instances` ( `instanceId` int(14) NOT NULL auto_increment, `pId` int(14) NOT NULL default '0', `started` int(14) default NULL, `name` varchar(200) default 'No Name', `owner` varchar(200) default NULL, `nextActivity` int(14) default NULL, `nextUser` varchar(200) default NULL, `ended` int(14) default NULL, `status` enum('active','exception','aborted','completed') default NULL, `properties` longblob, PRIMARY KEY (`instanceId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_instances` -- LOCK TABLES `galaxia_instances` WRITE; /*!40000 ALTER TABLE `galaxia_instances` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_instances` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_processes` -- DROP TABLE IF EXISTS `galaxia_processes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_processes` ( `pId` int(14) NOT NULL auto_increment, `name` varchar(80) default NULL, `isValid` char(1) default NULL, `isActive` char(1) default NULL, `version` varchar(12) default NULL, `description` text, `lastModif` int(14) default NULL, `normalized_name` varchar(80) default NULL, PRIMARY KEY (`pId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_processes` -- LOCK TABLES `galaxia_processes` WRITE; /*!40000 ALTER TABLE `galaxia_processes` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_processes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_roles` -- DROP TABLE IF EXISTS `galaxia_roles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_roles` ( `roleId` int(14) NOT NULL auto_increment, `pId` int(14) NOT NULL default '0', `lastModif` int(14) default NULL, `name` varchar(80) default NULL, `description` text, PRIMARY KEY (`roleId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_roles` -- LOCK TABLES `galaxia_roles` WRITE; /*!40000 ALTER TABLE `galaxia_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_transitions` -- DROP TABLE IF EXISTS `galaxia_transitions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_transitions` ( `pId` int(14) NOT NULL default '0', `actFromId` int(14) NOT NULL default '0', `actToId` int(14) NOT NULL default '0', PRIMARY KEY (`actFromId`,`actToId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_transitions` -- LOCK TABLES `galaxia_transitions` WRITE; /*!40000 ALTER TABLE `galaxia_transitions` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_transitions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_user_roles` -- DROP TABLE IF EXISTS `galaxia_user_roles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_user_roles` ( `pId` int(14) NOT NULL default '0', `roleId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', PRIMARY KEY (`roleId`,`user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_user_roles` -- LOCK TABLES `galaxia_user_roles` WRITE; /*!40000 ALTER TABLE `galaxia_user_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_user_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galaxia_workitems` -- DROP TABLE IF EXISTS `galaxia_workitems`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `galaxia_workitems` ( `itemId` int(14) NOT NULL auto_increment, `instanceId` int(14) NOT NULL default '0', `orderId` int(14) NOT NULL default '0', `activityId` int(14) NOT NULL default '0', `properties` longblob, `started` int(14) default NULL, `ended` int(14) default NULL, `user` varchar(40) default NULL, PRIMARY KEY (`itemId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `galaxia_workitems` -- LOCK TABLES `galaxia_workitems` WRITE; /*!40000 ALTER TABLE `galaxia_workitems` DISABLE KEYS */; /*!40000 ALTER TABLE `galaxia_workitems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messu_archive` -- DROP TABLE IF EXISTS `messu_archive`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `messu_archive` ( `msgId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `user_from` varchar(40) NOT NULL default '', `user_to` text, `user_cc` text, `user_bcc` text, `subject` varchar(255) default NULL, `body` text, `hash` varchar(32) default NULL, `replyto_hash` varchar(32) default NULL, `date` int(14) default NULL, `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, `priority` int(2) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `messu_archive` -- LOCK TABLES `messu_archive` WRITE; /*!40000 ALTER TABLE `messu_archive` DISABLE KEYS */; /*!40000 ALTER TABLE `messu_archive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messu_messages` -- DROP TABLE IF EXISTS `messu_messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `messu_messages` ( `msgId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `user_from` varchar(200) NOT NULL default '', `user_to` text, `user_cc` text, `user_bcc` text, `subject` varchar(255) default NULL, `body` text, `hash` varchar(32) default NULL, `replyto_hash` varchar(32) default NULL, `date` int(14) default NULL, `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, `priority` int(2) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `messu_messages` -- LOCK TABLES `messu_messages` WRITE; /*!40000 ALTER TABLE `messu_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `messu_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messu_sent` -- DROP TABLE IF EXISTS `messu_sent`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `messu_sent` ( `msgId` int(14) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `user_from` varchar(40) NOT NULL default '', `user_to` text, `user_cc` text, `user_bcc` text, `subject` varchar(255) default NULL, `body` text, `hash` varchar(32) default NULL, `replyto_hash` varchar(32) default NULL, `date` int(14) default NULL, `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, `priority` int(2) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `messu_sent` -- LOCK TABLES `messu_sent` WRITE; /*!40000 ALTER TABLE `messu_sent` DISABLE KEYS */; /*!40000 ALTER TABLE `messu_sent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sessions` ( `sesskey` varchar(32) NOT NULL default '', `expiry` int(11) unsigned NOT NULL default '0', `expireref` varchar(64) default NULL, `data` text NOT NULL, PRIMARY KEY (`sesskey`), KEY `expiry` (`expiry`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sessions` -- LOCK TABLES `sessions` WRITE; /*!40000 ALTER TABLE `sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_actionlog` -- DROP TABLE IF EXISTS `tiki_actionlog`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_actionlog` ( `action` varchar(255) NOT NULL default '', `lastModif` int(14) default NULL, `pageName` varchar(200) default NULL, `user` varchar(40) default NULL, `ip` varchar(15) default NULL, `comment` varchar(200) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_actionlog` -- LOCK TABLES `tiki_actionlog` WRITE; /*!40000 ALTER TABLE `tiki_actionlog` DISABLE KEYS */; INSERT INTO `tiki_actionlog` VALUES ('Created',1154639566,'HomePage','admin','0.0.0.0','Tiki initialization'),('created tag: VivaTest',1154640002,'HomePage','admin','66.80.242.3',''),('Updated',1154640347,'HomePage','admin','66.80.242.3',''),('Updated',1154641867,'HomePage','smackey','66.80.242.3',''),('Updated',1154642097,'HomePage','shannon','66.80.242.3',''),('Updated',1154642249,'HomePage','admin','66.80.242.3',''),('Created',1154642307,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154642670,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Created',1154642723,'Pre-Show','admin','66.80.242.3',''),('Removed',1154642737,'Pre-Show','admin','66.80.242.3',''),('Updated',1154642762,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154642782,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154643157,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154643308,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154644970,'HomePage','shannon','66.80.242.3',''),('Updated',1154644975,'HomePage','shannon','66.80.242.3',''),('Updated',1154645033,'HomePage','admin','66.80.242.3',''),('Created',1154646850,'Production Team Status','admin','66.80.242.3',''),('Updated',1154646967,'HomePage','admin','66.80.242.3',''),('Updated',1154647085,'Production Team Status','admin','66.80.242.3',''),('Updated',1154647171,'Production Team Status','admin','66.80.242.3',''),('Updated',1154647568,'Production Team Status','smackey','66.80.242.3',''),('Updated',1154647692,'Production Team Status','rsizemore','66.80.242.3',''),('Updated',1154647753,'Production Team Status','rsizemore','66.80.242.3',''),('Updated',1154647788,'Production Team Status','rsizemore','66.80.242.3',''),('Updated',1154647819,'Production Team Status','rsizemore','66.80.242.3',''),('Updated',1154693902,'Production Team Status','admin','66.80.242.3',''),('Updated',1154693980,'Production Team Status','admin','66.80.242.3',''),('Updated',1154694938,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154695104,'AOL Webcast Project Wiki','admin','66.80.242.3',''),('Updated',1154695214,'Production Team Status','admin','66.80.242.3',''),('Updated',1155757250,'HomePage','admin','72.254.174.85',''),('Created',1155757414,'AVAYA Sales Conference','admin','72.254.174.85',''),('Updated',1156439687,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1156440380,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156440812,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156441136,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156442101,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156442224,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156442609,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156442983,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1156445398,'August 24 Meeting With Evan','admin','66.80.242.3',''),('Updated',1157632844,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1157633062,'September 7 Phone Conference','admin','66.80.242.3',''),('Updated',1157633233,'September 7 Phone Conference','admin','66.80.242.3',''),('Updated',1157633298,'September 7 Phone Conference','admin','66.80.242.3',''),('Updated',1157633489,'September 7 Phone Conference','admin','66.80.242.3',''),('Updated',1157633982,'September 7 Phone Conference','admin','66.80.242.3',''),('Updated',1157634817,'September 7 Phone Conference','admin','66.80.242.3',''),('Updated',1157730719,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1157734146,'Global Integrated Services Creative Session','admin','66.80.242.3',''),('Updated',1157734244,'Global Integrated Services Creative Session','admin','66.80.242.3',''),('Updated',1158161020,'AVAYA Sales Conference','admin','66.80.242.3',''),('Updated',1158161067,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1158161099,'August 16 Meeting to determine responsibilities','admin','66.80.242.3',''),('Updated',1158161886,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1158173965,'Leadership Meeting','admin','66.80.242.3',''),('Updated',1158246511,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1158247002,'General Session','admin','66.80.242.3',''),('Updated',1158247120,'General Session','admin','66.80.242.3',''),('Updated',1158247245,'General Session','admin','66.80.242.3',''),('Created',1158247262,'Production Task List','admin','66.80.242.3',''),('Updated',1158791847,'Leadership Meeting','admin','66.80.242.3',''),('Updated',1158791912,'AVAYA Sales Conference','admin','66.80.242.3',''),('Updated',1158791935,'AVAYA Sales Conference','admin','66.80.242.3',''),('Updated',1158791949,'AVAYA Sales Conference','admin','66.80.242.3',''),('Created',1158792212,'Task Lists','admin','66.80.242.3',''),('Updated',1158792282,'Task Lists','admin','66.80.242.3',''),('Updated',1158792302,'Task Lists','admin','66.80.242.3',''),('Created',1158792316,'Lorne Sept18','admin','66.80.242.3',''),('Updated',1158792359,'Task Lists','admin','66.80.242.3',''),('Created',1158792370,'Lorne Sept 18','admin','66.80.242.3',''),('Created',1158792394,'Steve Sept 18','admin','66.80.242.3',''),('Created',1158792418,'Steve Sept 15','admin','66.80.242.3',''),('Updated',1158938089,'Task Lists','admin','66.80.242.3',''),('Created',1158938155,'Lorne Sept 20','admin','66.80.242.3',''),('Updated',1158938199,'Lorne Sept 20','admin','66.80.242.3',''),('Updated',1158938231,'Steve Sept 18','admin','66.80.242.3',''),('Updated',1158938244,'Steve Sept 18','admin','66.80.242.3',''),('Updated',1158948906,'Task Lists','admin','66.80.242.3',''),('Created',1158949018,'Lorne Sept 13','admin','66.80.242.3',''),('Updated',1165267945,'HomePage','smackey','66.80.242.3',''),('Updated',1165268150,'HomePage','admin','66.80.242.3',''),('Created',1165268187,'Projects','admin','66.80.242.3',''),('Created',1165268276,'Active','admin','66.80.242.3',''),('Created',1165268312,'King Pharmaceuticals Leadership 24 Jan 07','admin','66.80.242.3',''),('Created',1165268539,'Proposal Phone Conference 4 Dec 06','admin','66.80.242.3',''),('Updated',1165268779,'HomePage','admin','66.80.242.3',''),('Created',1165270399,'Completed','admin','66.80.242.3',''),('Updated',1165270467,'HomePage','admin','66.80.242.3',''),('Created',1165270483,'Operations','admin','66.80.242.3',''),('Created',1165270514,'Checklists','admin','66.80.242.3',''),('Updated',1165270753,'King Pharmaceuticals Leadership 24 Jan 07','smackey','66.80.242.3',''),('Created',1165271879,'Creative Proposal 1 Dec 06','smackey','66.80.242.3',''),('Updated',1165271938,'King Pharmaceuticals Leadership 24 Jan 07','smackey','66.80.242.3',''),('Created',1165272080,'Production Phone Conference 4 Dec 06','smackey','66.80.242.3',''),('Updated',1165417844,'King Pharmaceuticals Leadership 24 Jan 07','birey','66.80.242.3',''),('Created',1165418216,'Creative Proposal 5 Dec 06','birey','66.80.242.3',''),('Updated',1165418625,'Creative Proposal 5 Dec 06','birey','66.80.242.3',''),('Updated',1165418954,'King Pharmaceuticals Leadership 24 Jan 07','birey','66.80.242.3',''),('Created',1165421139,'Preliminary Budget Estimate 6 Dec 06','birey','66.80.242.3','Preliminary budget corresponding to items proposed in Creative Proposal 2'),('Updated',1165421505,'King Pharmaceuticals Leadership 24 Jan 07','birey','66.80.242.3',''),('Updated',1165422161,'King Pharmaceuticals Leadership 24 Jan 07','birey','66.80.242.3',''),('Updated',1165603666,'HomePage','smackey','66.80.242.3',''),('Created',1165603727,'Training','smackey','66.80.242.3',''),('Created',1165605243,'Video','smackey','66.80.242.3',''),('Created',1165606337,'Compression Best Practices','smackey','66.80.242.3',''),('Updated',1165606514,'Compression Best Practices','smackey','66.80.242.3',''),('Updated',1165606581,'Video','smackey','66.80.242.3',''),('Updated',1165606598,'Video','smackey','66.80.242.3',''),('Created',1165606627,'Audio','smackey','66.80.242.3',''),('Updated',1165607025,'Compression Best Practices','smackey','66.80.242.3',''),('Updated',1165607057,'Compression Best Practices','smackey','66.80.242.3',''),('Created',1165607725,'Soundtrack Pro Primer','smackey','66.80.242.3',''),('Updated',1165607773,'Soundtrack Pro Primer','smackey','66.80.242.3',''),('Updated',1165865198,'Production Team Status','smackey','66.80.242.3',''),('Updated',1165866140,'Production Team Status','smackey','66.80.242.3',''),('Updated',1166040874,'Video','jzastrow','66.80.242.3',''),('Updated',1166040897,'Video','jzastrow','66.80.242.3',''),('Updated',1166040919,'Video','jzastrow','66.80.242.3',''),('Updated',1166040941,'Video','jzastrow','66.80.242.3',''),('Created',1166041051,'Julies Production Tips','jzastrow','66.80.242.3',''),('Updated',1166041174,'Julies Production Tips','jzastrow','66.80.242.3',''),('Updated',1166041175,'Julies Production Tips','jzastrow','66.80.242.3',''),('Updated',1166041235,'Compression Best Practices','jzastrow','66.80.242.3',''),('Updated',1166460652,'Production Team Status','smackey','66.80.242.3',''),('Updated',1166460954,'Production Team Status','smackey','66.80.242.3',''),('Updated',1166482918,'Production Team Status','smackey','66.80.242.3',''),('Updated',1166559851,'Operations','birey','66.80.242.3',''),('Created',1166559897,'SOPs','birey','66.80.242.3',''),('Created',1166560736,'Digital File Naming Conventions','birey','66.80.242.3',''),('Updated',1170266595,'Active','smackey','66.80.242.3',''),('Updated',1170266622,'Completed','smackey','66.80.242.3',''),('Created',1170266664,'AIPAC Policy Conference 11 March 07','smackey','66.80.242.3',''),('Created',1170266704,'Status Meetings','smackey','66.80.242.3',''),('Created',1170266806,'30 Jan','smackey','66.80.242.3',''),('Updated',1170266906,'30 Jan','smackey','66.80.242.3',''),('Updated',1191871596,'Active','smackey','66.80.242.3',''),('Created',1191877870,'AIPAC National Summit 2007','smackey','66.80.242.3',''),('Updated',1191877924,'AIPAC National Summit 2007','smackey','66.80.242.3',''),('Created',1191877959,'AIPAC NS 07 Random Input','smackey','66.80.242.3',''),('Created',1191878034,'AIPAC NS 8-Oct-07','smackey','66.80.242.3',''),('Updated',1191878247,'AIPAC NS 8-Oct-07','smackey','66.80.242.3',''),('Updated',1191878332,'AIPAC NS 8-Oct-07','smackey','66.80.242.3',''); /*!40000 ALTER TABLE `tiki_actionlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_article_types` -- DROP TABLE IF EXISTS `tiki_article_types`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_article_types` ( `type` varchar(50) NOT NULL default '', `use_ratings` char(1) default NULL, `show_pre_publ` char(1) default NULL, `show_post_expire` char(1) default 'y', `heading_only` char(1) default NULL, `allow_comments` char(1) default 'y', `show_image` char(1) default 'y', `show_avatar` char(1) default NULL, `show_author` char(1) default 'y', `show_pubdate` char(1) default 'y', `show_expdate` char(1) default NULL, `show_reads` char(1) default 'y', `show_size` char(1) default 'y', `show_topline` char(1) default 'n', `show_subtitle` char(1) default 'n', `show_linkto` char(1) default 'n', `show_image_caption` char(1) default 'n', `show_lang` char(1) default 'n', `creator_edit` char(1) default NULL, `comment_can_rate_article` char(1) default NULL, PRIMARY KEY (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_article_types` -- LOCK TABLES `tiki_article_types` WRITE; /*!40000 ALTER TABLE `tiki_article_types` DISABLE KEYS */; INSERT INTO `tiki_article_types` VALUES ('Article',NULL,NULL,'y',NULL,'y','y',NULL,'y','y',NULL,'y','y','n','n','n','n','n',NULL,NULL),('Review','y',NULL,'y',NULL,'y','y',NULL,'y','y',NULL,'y','y','n','n','n','n','n',NULL,NULL),('Event',NULL,NULL,'n',NULL,'y','y',NULL,'y','y',NULL,'y','y','n','n','n','n','n',NULL,NULL),('Classified',NULL,NULL,'n','y','n','y',NULL,'y','y',NULL,'y','y','n','n','n','n','n',NULL,NULL); /*!40000 ALTER TABLE `tiki_article_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_articles` -- DROP TABLE IF EXISTS `tiki_articles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_articles` ( `articleId` int(8) NOT NULL auto_increment, `topline` varchar(255) default NULL, `title` varchar(80) default NULL, `subtitle` varchar(255) default NULL, `linkto` varchar(255) default NULL, `lang` varchar(16) default NULL, `state` char(1) default 's', `authorName` varchar(60) default NULL, `topicId` int(14) default NULL, `topicName` varchar(40) default NULL, `size` int(12) default NULL, `useImage` char(1) default NULL, `image_name` varchar(80) default NULL, `image_caption` text, `image_type` varchar(80) default NULL, `image_size` int(14) default NULL, `image_x` int(4) default NULL, `image_y` int(4) default NULL, `image_data` longblob, `publishDate` int(14) default NULL, `expireDate` int(14) default NULL, `created` int(14) default NULL, `heading` text, `body` text, `hash` varchar(32) default NULL, `author` varchar(200) default NULL, `nbreads` int(14) default NULL, `votes` int(8) default NULL, `points` int(14) default NULL, `type` varchar(50) default NULL, `rating` decimal(3,2) default NULL, `isfloat` char(1) default NULL, PRIMARY KEY (`articleId`), KEY `title` (`title`), KEY `heading` (`heading`(255)), KEY `body` (`body`(255)), KEY `nbreads` (`nbreads`), KEY `author` (`author`(32)), FULLTEXT KEY `ft` (`title`,`heading`,`body`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_articles` -- LOCK TABLES `tiki_articles` WRITE; /*!40000 ALTER TABLE `tiki_articles` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_articles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_banners` -- DROP TABLE IF EXISTS `tiki_banners`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_banners` ( `bannerId` int(12) NOT NULL auto_increment, `client` varchar(200) NOT NULL default '', `url` varchar(255) default NULL, `title` varchar(255) default NULL, `alt` varchar(250) default NULL, `which` varchar(50) default NULL, `imageData` longblob, `imageType` varchar(200) default NULL, `imageName` varchar(100) default NULL, `HTMLData` text, `fixedURLData` varchar(255) default NULL, `textData` text, `fromDate` int(14) default NULL, `toDate` int(14) default NULL, `useDates` char(1) default NULL, `mon` char(1) default NULL, `tue` char(1) default NULL, `wed` char(1) default NULL, `thu` char(1) default NULL, `fri` char(1) default NULL, `sat` char(1) default NULL, `sun` char(1) default NULL, `hourFrom` varchar(4) default NULL, `hourTo` varchar(4) default NULL, `created` int(14) default NULL, `maxImpressions` int(8) default NULL, `impressions` int(8) default NULL, `clicks` int(8) default NULL, `zone` varchar(40) default NULL, PRIMARY KEY (`bannerId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_banners` -- LOCK TABLES `tiki_banners` WRITE; /*!40000 ALTER TABLE `tiki_banners` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_banning` -- DROP TABLE IF EXISTS `tiki_banning`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_banning` ( `banId` int(12) NOT NULL auto_increment, `mode` enum('user','ip') default NULL, `title` varchar(200) default NULL, `ip1` char(3) default NULL, `ip2` char(3) default NULL, `ip3` char(3) default NULL, `ip4` char(3) default NULL, `user` varchar(40) default NULL, `date_from` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `date_to` timestamp NOT NULL default '0000-00-00 00:00:00', `use_dates` char(1) default NULL, `created` int(14) default NULL, `message` text, PRIMARY KEY (`banId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_banning` -- LOCK TABLES `tiki_banning` WRITE; /*!40000 ALTER TABLE `tiki_banning` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_banning` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_banning_sections` -- DROP TABLE IF EXISTS `tiki_banning_sections`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_banning_sections` ( `banId` int(12) NOT NULL default '0', `section` varchar(100) NOT NULL default '', PRIMARY KEY (`banId`,`section`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_banning_sections` -- LOCK TABLES `tiki_banning_sections` WRITE; /*!40000 ALTER TABLE `tiki_banning_sections` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_banning_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_blog_activity` -- DROP TABLE IF EXISTS `tiki_blog_activity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_blog_activity` ( `blogId` int(8) NOT NULL default '0', `day` int(14) NOT NULL default '0', `posts` int(8) default NULL, PRIMARY KEY (`blogId`,`day`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_blog_activity` -- LOCK TABLES `tiki_blog_activity` WRITE; /*!40000 ALTER TABLE `tiki_blog_activity` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_blog_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_blog_posts` -- DROP TABLE IF EXISTS `tiki_blog_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_blog_posts` ( `postId` int(8) NOT NULL auto_increment, `blogId` int(8) NOT NULL default '0', `data` text, `data_size` int(11) unsigned NOT NULL default '0', `created` int(14) default NULL, `user` varchar(40) default NULL, `priv` char(1) default NULL, `trackbacks_to` text, `trackbacks_from` text, `title` varchar(80) default NULL, PRIMARY KEY (`postId`), KEY `data` (`data`(255)), KEY `blogId` (`blogId`), KEY `created` (`created`), FULLTEXT KEY `ft` (`data`,`title`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_blog_posts` -- LOCK TABLES `tiki_blog_posts` WRITE; /*!40000 ALTER TABLE `tiki_blog_posts` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_blog_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_blog_posts_images` -- DROP TABLE IF EXISTS `tiki_blog_posts_images`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_blog_posts_images` ( `imgId` int(14) NOT NULL auto_increment, `postId` int(14) NOT NULL default '0', `filename` varchar(80) default NULL, `filetype` varchar(80) default NULL, `filesize` int(14) default NULL, `data` longblob, PRIMARY KEY (`imgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_blog_posts_images` -- LOCK TABLES `tiki_blog_posts_images` WRITE; /*!40000 ALTER TABLE `tiki_blog_posts_images` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_blog_posts_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_blogs` -- DROP TABLE IF EXISTS `tiki_blogs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_blogs` ( `blogId` int(8) NOT NULL auto_increment, `created` int(14) default NULL, `lastModif` int(14) default NULL, `title` varchar(200) default NULL, `description` text, `user` varchar(40) default NULL, `public` char(1) default NULL, `posts` int(8) default NULL, `maxPosts` int(8) default NULL, `hits` int(8) default NULL, `activity` decimal(4,2) default NULL, `heading` text, `use_find` char(1) default NULL, `use_title` char(1) default NULL, `add_date` char(1) default NULL, `add_poster` char(1) default NULL, `allow_comments` char(1) default NULL, `show_avatar` char(1) default NULL, PRIMARY KEY (`blogId`), KEY `title` (`title`), KEY `description` (`description`(255)), KEY `hits` (`hits`), FULLTEXT KEY `ft` (`title`,`description`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_blogs` -- LOCK TABLES `tiki_blogs` WRITE; /*!40000 ALTER TABLE `tiki_blogs` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_calendar_categories` -- DROP TABLE IF EXISTS `tiki_calendar_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_calendar_categories` ( `calcatId` int(11) NOT NULL auto_increment, `calendarId` int(14) NOT NULL default '0', `name` varchar(255) NOT NULL default '', PRIMARY KEY (`calcatId`), UNIQUE KEY `catname` (`calendarId`,`name`(16)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_calendar_categories` -- LOCK TABLES `tiki_calendar_categories` WRITE; /*!40000 ALTER TABLE `tiki_calendar_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_calendar_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_calendar_items` -- DROP TABLE IF EXISTS `tiki_calendar_items`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_calendar_items` ( `calitemId` int(14) NOT NULL auto_increment, `calendarId` int(14) NOT NULL default '0', `start` int(14) NOT NULL default '0', `end` int(14) NOT NULL default '0', `locationId` int(14) default NULL, `categoryId` int(14) default NULL, `priority` enum('1','2','3','4','5','6','7','8','9') NOT NULL default '1', `status` enum('0','1','2') NOT NULL default '0', `url` varchar(255) default NULL, `lang` varchar(16) NOT NULL default 'en', `name` varchar(255) NOT NULL default '', `description` blob, `user` varchar(40) default NULL, `nlId` int(12) default NULL, `created` int(14) NOT NULL default '0', `lastmodif` int(14) NOT NULL default '0', PRIMARY KEY (`calitemId`), KEY `calendarId` (`calendarId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_calendar_items` -- LOCK TABLES `tiki_calendar_items` WRITE; /*!40000 ALTER TABLE `tiki_calendar_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_calendar_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_calendar_locations` -- DROP TABLE IF EXISTS `tiki_calendar_locations`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_calendar_locations` ( `callocId` int(14) NOT NULL auto_increment, `calendarId` int(14) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `description` blob, PRIMARY KEY (`callocId`), UNIQUE KEY `locname` (`calendarId`,`name`(16)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_calendar_locations` -- LOCK TABLES `tiki_calendar_locations` WRITE; /*!40000 ALTER TABLE `tiki_calendar_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_calendar_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_calendar_roles` -- DROP TABLE IF EXISTS `tiki_calendar_roles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_calendar_roles` ( `calitemId` int(14) NOT NULL default '0', `username` varchar(40) NOT NULL default '', `role` enum('0','1','2','3','6') NOT NULL default '0', PRIMARY KEY (`calitemId`,`username`(16),`role`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_calendar_roles` -- LOCK TABLES `tiki_calendar_roles` WRITE; /*!40000 ALTER TABLE `tiki_calendar_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_calendar_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_calendars` -- DROP TABLE IF EXISTS `tiki_calendars`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_calendars` ( `calendarId` int(14) NOT NULL auto_increment, `name` varchar(80) NOT NULL default '', `description` varchar(255) default NULL, `user` varchar(40) NOT NULL default '', `customlocations` enum('n','y') NOT NULL default 'n', `customcategories` enum('n','y') NOT NULL default 'n', `customlanguages` enum('n','y') NOT NULL default 'n', `custompriorities` enum('n','y') NOT NULL default 'n', `customparticipants` enum('n','y') NOT NULL default 'n', `customsubscription` enum('n','y') NOT NULL default 'n', `created` int(14) NOT NULL default '0', `lastmodif` int(14) NOT NULL default '0', `personal` enum('n','y') NOT NULL default 'n', PRIMARY KEY (`calendarId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_calendars` -- LOCK TABLES `tiki_calendars` WRITE; /*!40000 ALTER TABLE `tiki_calendars` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_calendars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_categories` -- DROP TABLE IF EXISTS `tiki_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_categories` ( `categId` int(12) NOT NULL auto_increment, `name` varchar(100) default NULL, `description` varchar(250) default NULL, `parentId` int(12) default NULL, `hits` int(8) default NULL, PRIMARY KEY (`categId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_categories` -- LOCK TABLES `tiki_categories` WRITE; /*!40000 ALTER TABLE `tiki_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_categorized_objects` -- DROP TABLE IF EXISTS `tiki_categorized_objects`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_categorized_objects` ( `catObjectId` int(12) NOT NULL auto_increment, `type` varchar(50) default NULL, `objId` varchar(255) default NULL, `description` text, `created` int(14) default NULL, `name` varchar(200) default NULL, `href` varchar(200) default NULL, `hits` int(8) default NULL, PRIMARY KEY (`catObjectId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_categorized_objects` -- LOCK TABLES `tiki_categorized_objects` WRITE; /*!40000 ALTER TABLE `tiki_categorized_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_categorized_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_category_objects` -- DROP TABLE IF EXISTS `tiki_category_objects`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_category_objects` ( `catObjectId` int(12) NOT NULL default '0', `categId` int(12) NOT NULL default '0', PRIMARY KEY (`catObjectId`,`categId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_category_objects` -- LOCK TABLES `tiki_category_objects` WRITE; /*!40000 ALTER TABLE `tiki_category_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_category_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_category_sites` -- DROP TABLE IF EXISTS `tiki_category_sites`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_category_sites` ( `categId` int(10) NOT NULL default '0', `siteId` int(14) NOT NULL default '0', PRIMARY KEY (`categId`,`siteId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_category_sites` -- LOCK TABLES `tiki_category_sites` WRITE; /*!40000 ALTER TABLE `tiki_category_sites` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_category_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_chart_items` -- DROP TABLE IF EXISTS `tiki_chart_items`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_chart_items` ( `itemId` int(14) NOT NULL auto_increment, `title` varchar(250) default NULL, `description` text, `chartId` int(14) NOT NULL default '0', `created` int(14) default NULL, `URL` varchar(250) default NULL, `votes` int(14) default NULL, `points` int(14) default NULL, `average` decimal(4,2) default NULL, PRIMARY KEY (`itemId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_chart_items` -- LOCK TABLES `tiki_chart_items` WRITE; /*!40000 ALTER TABLE `tiki_chart_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_chart_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_charts` -- DROP TABLE IF EXISTS `tiki_charts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_charts` ( `chartId` int(14) NOT NULL auto_increment, `title` varchar(250) default NULL, `description` text, `hits` int(14) default NULL, `singleItemVotes` char(1) default NULL, `singleChartVotes` char(1) default NULL, `suggestions` char(1) default NULL, `autoValidate` char(1) default NULL, `topN` int(6) default NULL, `maxVoteValue` int(4) default NULL, `frequency` int(14) default NULL, `showAverage` char(1) default NULL, `isActive` char(1) default NULL, `showVotes` char(1) default NULL, `useCookies` char(1) default NULL, `lastChart` int(14) default NULL, `voteAgainAfter` int(14) default NULL, `created` int(14) default NULL, PRIMARY KEY (`chartId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_charts` -- LOCK TABLES `tiki_charts` WRITE; /*!40000 ALTER TABLE `tiki_charts` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_charts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_charts_rankings` -- DROP TABLE IF EXISTS `tiki_charts_rankings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_charts_rankings` ( `chartId` int(14) NOT NULL default '0', `itemId` int(14) NOT NULL default '0', `position` int(14) NOT NULL default '0', `timestamp` int(14) NOT NULL default '0', `lastPosition` int(14) NOT NULL default '0', `period` int(14) NOT NULL default '0', `rvotes` int(14) NOT NULL default '0', `raverage` decimal(4,2) NOT NULL default '0.00', PRIMARY KEY (`chartId`,`itemId`,`period`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_charts_rankings` -- LOCK TABLES `tiki_charts_rankings` WRITE; /*!40000 ALTER TABLE `tiki_charts_rankings` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_charts_rankings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_charts_votes` -- DROP TABLE IF EXISTS `tiki_charts_votes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_charts_votes` ( `user` varchar(40) NOT NULL default '', `itemId` int(14) NOT NULL default '0', `timestamp` int(14) default NULL, `chartId` int(14) default NULL, PRIMARY KEY (`user`,`itemId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_charts_votes` -- LOCK TABLES `tiki_charts_votes` WRITE; /*!40000 ALTER TABLE `tiki_charts_votes` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_charts_votes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_chat_channels` -- DROP TABLE IF EXISTS `tiki_chat_channels`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_chat_channels` ( `channelId` int(8) NOT NULL auto_increment, `name` varchar(30) default NULL, `description` varchar(250) default NULL, `max_users` int(8) default NULL, `mode` char(1) default NULL, `moderator` varchar(200) default NULL, `active` char(1) default NULL, `refresh` int(6) default NULL, PRIMARY KEY (`channelId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_chat_channels` -- LOCK TABLES `tiki_chat_channels` WRITE; /*!40000 ALTER TABLE `tiki_chat_channels` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_chat_channels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_chat_messages` -- DROP TABLE IF EXISTS `tiki_chat_messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_chat_messages` ( `messageId` int(8) NOT NULL auto_increment, `channelId` int(8) NOT NULL default '0', `data` varchar(255) default NULL, `poster` varchar(200) NOT NULL default 'anonymous', `timestamp` int(14) default NULL, PRIMARY KEY (`messageId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_chat_messages` -- LOCK TABLES `tiki_chat_messages` WRITE; /*!40000 ALTER TABLE `tiki_chat_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_chat_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_chat_users` -- DROP TABLE IF EXISTS `tiki_chat_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_chat_users` ( `nickname` varchar(200) NOT NULL default '', `channelId` int(8) NOT NULL default '0', `timestamp` int(14) default NULL, PRIMARY KEY (`nickname`,`channelId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_chat_users` -- LOCK TABLES `tiki_chat_users` WRITE; /*!40000 ALTER TABLE `tiki_chat_users` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_chat_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_comments` -- DROP TABLE IF EXISTS `tiki_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_comments` ( `threadId` int(14) NOT NULL auto_increment, `object` varchar(255) NOT NULL default '', `objectType` varchar(32) NOT NULL default '', `parentId` int(14) default NULL, `userName` varchar(40) default NULL, `commentDate` int(14) default NULL, `hits` int(8) default NULL, `type` char(1) default NULL, `points` decimal(8,2) default NULL, `votes` int(8) default NULL, `average` decimal(8,4) default NULL, `title` varchar(100) default NULL, `data` text, `hash` varchar(32) default NULL, `user_ip` varchar(15) default NULL, `summary` varchar(240) default NULL, `smiley` varchar(80) default NULL, `message_id` varchar(250) default NULL, `in_reply_to` varchar(250) default NULL, `comment_rating` tinyint(2) default NULL, PRIMARY KEY (`threadId`), KEY `title` (`title`), KEY `data` (`data`(255)), KEY `object` (`object`), KEY `hits` (`hits`), KEY `tc_pi` (`parentId`), FULLTEXT KEY `ft` (`title`,`data`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_comments` -- LOCK TABLES `tiki_comments` WRITE; /*!40000 ALTER TABLE `tiki_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_content` -- DROP TABLE IF EXISTS `tiki_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_content` ( `contentId` int(8) NOT NULL auto_increment, `description` text, PRIMARY KEY (`contentId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_content` -- LOCK TABLES `tiki_content` WRITE; /*!40000 ALTER TABLE `tiki_content` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_content_templates` -- DROP TABLE IF EXISTS `tiki_content_templates`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_content_templates` ( `templateId` int(10) NOT NULL auto_increment, `content` longblob, `name` varchar(200) default NULL, `created` int(14) default NULL, PRIMARY KEY (`templateId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_content_templates` -- LOCK TABLES `tiki_content_templates` WRITE; /*!40000 ALTER TABLE `tiki_content_templates` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_content_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_content_templates_sections` -- DROP TABLE IF EXISTS `tiki_content_templates_sections`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_content_templates_sections` ( `templateId` int(10) NOT NULL default '0', `section` varchar(250) NOT NULL default '', PRIMARY KEY (`templateId`,`section`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_content_templates_sections` -- LOCK TABLES `tiki_content_templates_sections` WRITE; /*!40000 ALTER TABLE `tiki_content_templates_sections` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_content_templates_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_cookies` -- DROP TABLE IF EXISTS `tiki_cookies`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_cookies` ( `cookieId` int(10) NOT NULL auto_increment, `cookie` text, PRIMARY KEY (`cookieId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_cookies` -- LOCK TABLES `tiki_cookies` WRITE; /*!40000 ALTER TABLE `tiki_cookies` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_cookies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_copyrights` -- DROP TABLE IF EXISTS `tiki_copyrights`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_copyrights` ( `copyrightId` int(12) NOT NULL auto_increment, `page` varchar(200) default NULL, `title` varchar(200) default NULL, `year` int(11) default NULL, `authors` varchar(200) default NULL, `copyright_order` int(11) default NULL, `userName` varchar(40) default NULL, PRIMARY KEY (`copyrightId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_copyrights` -- LOCK TABLES `tiki_copyrights` WRITE; /*!40000 ALTER TABLE `tiki_copyrights` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_copyrights` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_directory_categories` -- DROP TABLE IF EXISTS `tiki_directory_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_directory_categories` ( `categId` int(10) NOT NULL auto_increment, `parent` int(10) default NULL, `name` varchar(240) default NULL, `description` text, `childrenType` char(1) default NULL, `sites` int(10) default NULL, `viewableChildren` int(4) default NULL, `allowSites` char(1) default NULL, `showCount` char(1) default NULL, `editorGroup` varchar(200) default NULL, `hits` int(12) default NULL, PRIMARY KEY (`categId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_directory_categories` -- LOCK TABLES `tiki_directory_categories` WRITE; /*!40000 ALTER TABLE `tiki_directory_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_directory_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_directory_search` -- DROP TABLE IF EXISTS `tiki_directory_search`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_directory_search` ( `term` varchar(250) NOT NULL default '', `hits` int(14) default NULL, PRIMARY KEY (`term`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_directory_search` -- LOCK TABLES `tiki_directory_search` WRITE; /*!40000 ALTER TABLE `tiki_directory_search` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_directory_search` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_directory_sites` -- DROP TABLE IF EXISTS `tiki_directory_sites`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_directory_sites` ( `siteId` int(14) NOT NULL auto_increment, `name` varchar(240) default NULL, `description` text, `url` varchar(255) default NULL, `country` varchar(255) default NULL, `hits` int(12) default NULL, `isValid` char(1) default NULL, `created` int(14) default NULL, `lastModif` int(14) default NULL, `cache` longblob, `cache_timestamp` int(14) default NULL, PRIMARY KEY (`siteId`), FULLTEXT KEY `ft` (`name`,`description`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_directory_sites` -- LOCK TABLES `tiki_directory_sites` WRITE; /*!40000 ALTER TABLE `tiki_directory_sites` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_directory_sites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_download` -- DROP TABLE IF EXISTS `tiki_download`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_download` ( `id` int(11) NOT NULL auto_increment, `object` varchar(255) NOT NULL default '', `userId` int(8) NOT NULL default '0', `type` varchar(20) NOT NULL default '', `date` int(14) NOT NULL default '0', `IP` varchar(50) NOT NULL default '', PRIMARY KEY (`id`), KEY `object` (`object`,`userId`,`type`), KEY `userId` (`userId`), KEY `type` (`type`), KEY `date` (`date`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_download` -- LOCK TABLES `tiki_download` WRITE; /*!40000 ALTER TABLE `tiki_download` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_download` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_drawings` -- DROP TABLE IF EXISTS `tiki_drawings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_drawings` ( `drawId` int(12) NOT NULL auto_increment, `version` int(8) default NULL, `name` varchar(250) default NULL, `filename_draw` varchar(250) default NULL, `filename_pad` varchar(250) default NULL, `timestamp` int(14) default NULL, `user` varchar(40) default NULL, PRIMARY KEY (`drawId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_drawings` -- LOCK TABLES `tiki_drawings` WRITE; /*!40000 ALTER TABLE `tiki_drawings` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_drawings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_dsn` -- DROP TABLE IF EXISTS `tiki_dsn`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_dsn` ( `dsnId` int(12) NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `dsn` varchar(255) default NULL, PRIMARY KEY (`dsnId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_dsn` -- LOCK TABLES `tiki_dsn` WRITE; /*!40000 ALTER TABLE `tiki_dsn` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_dsn` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_dynamic_variables` -- DROP TABLE IF EXISTS `tiki_dynamic_variables`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_dynamic_variables` ( `name` varchar(40) NOT NULL default '', `data` text, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_dynamic_variables` -- LOCK TABLES `tiki_dynamic_variables` WRITE; /*!40000 ALTER TABLE `tiki_dynamic_variables` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_dynamic_variables` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_eph` -- DROP TABLE IF EXISTS `tiki_eph`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_eph` ( `ephId` int(12) NOT NULL auto_increment, `title` varchar(250) default NULL, `isFile` char(1) default NULL, `filename` varchar(250) default NULL, `filetype` varchar(250) default NULL, `filesize` varchar(250) default NULL, `data` longblob, `textdata` longblob, `publish` int(14) default NULL, `hits` int(10) default NULL, PRIMARY KEY (`ephId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_eph` -- LOCK TABLES `tiki_eph` WRITE; /*!40000 ALTER TABLE `tiki_eph` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_eph` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_extwiki` -- DROP TABLE IF EXISTS `tiki_extwiki`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_extwiki` ( `extwikiId` int(12) NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `extwiki` varchar(255) default NULL, PRIMARY KEY (`extwikiId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_extwiki` -- LOCK TABLES `tiki_extwiki` WRITE; /*!40000 ALTER TABLE `tiki_extwiki` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_extwiki` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_faq_questions` -- DROP TABLE IF EXISTS `tiki_faq_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_faq_questions` ( `questionId` int(10) NOT NULL auto_increment, `faqId` int(10) default NULL, `position` int(4) default NULL, `question` text, `answer` text, PRIMARY KEY (`questionId`), KEY `faqId` (`faqId`), KEY `question` (`question`(255)), KEY `answer` (`answer`(255)), FULLTEXT KEY `ft` (`question`,`answer`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_faq_questions` -- LOCK TABLES `tiki_faq_questions` WRITE; /*!40000 ALTER TABLE `tiki_faq_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_faq_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_faqs` -- DROP TABLE IF EXISTS `tiki_faqs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_faqs` ( `faqId` int(10) NOT NULL auto_increment, `title` varchar(200) default NULL, `description` text, `created` int(14) default NULL, `questions` int(5) default NULL, `hits` int(8) default NULL, `canSuggest` char(1) default NULL, PRIMARY KEY (`faqId`), KEY `title` (`title`), KEY `description` (`description`(255)), KEY `hits` (`hits`), FULLTEXT KEY `ft` (`title`,`description`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_faqs` -- LOCK TABLES `tiki_faqs` WRITE; /*!40000 ALTER TABLE `tiki_faqs` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_faqs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_featured_links` -- DROP TABLE IF EXISTS `tiki_featured_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_featured_links` ( `url` varchar(200) NOT NULL default '', `title` varchar(200) default NULL, `description` text, `hits` int(8) default NULL, `position` int(6) default NULL, `type` char(1) default NULL, PRIMARY KEY (`url`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_featured_links` -- LOCK TABLES `tiki_featured_links` WRITE; /*!40000 ALTER TABLE `tiki_featured_links` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_featured_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_file_galleries` -- DROP TABLE IF EXISTS `tiki_file_galleries`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_file_galleries` ( `galleryId` int(14) NOT NULL auto_increment, `name` varchar(80) NOT NULL default '', `description` text, `created` int(14) default NULL, `visible` char(1) default NULL, `lastModif` int(14) default NULL, `user` varchar(40) default NULL, `hits` int(14) default NULL, `votes` int(8) default NULL, `points` decimal(8,2) default NULL, `maxRows` int(10) default NULL, `public` char(1) default NULL, `show_id` char(1) default NULL, `show_icon` char(1) default NULL, `show_name` char(1) default NULL, `show_size` char(1) default NULL, `show_description` char(1) default NULL, `max_desc` int(8) default NULL, `show_created` char(1) default NULL, `show_dl` char(1) default NULL, PRIMARY KEY (`galleryId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_file_galleries` -- LOCK TABLES `tiki_file_galleries` WRITE; /*!40000 ALTER TABLE `tiki_file_galleries` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_file_galleries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_file_handlers` -- DROP TABLE IF EXISTS `tiki_file_handlers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_file_handlers` ( `mime_type` varchar(64) default NULL, `cmd` varchar(238) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_file_handlers` -- LOCK TABLES `tiki_file_handlers` WRITE; /*!40000 ALTER TABLE `tiki_file_handlers` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_file_handlers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_files` -- DROP TABLE IF EXISTS `tiki_files`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_files` ( `fileId` int(14) NOT NULL auto_increment, `galleryId` int(14) NOT NULL default '0', `name` varchar(200) NOT NULL default '', `description` text, `created` int(14) default NULL, `filename` varchar(80) default NULL, `filesize` int(14) default NULL, `filetype` varchar(250) default NULL, `data` longblob, `user` varchar(40) default NULL, `downloads` int(14) default NULL, `votes` int(8) default NULL, `points` decimal(8,2) default NULL, `path` varchar(255) default NULL, `reference_url` varchar(250) default NULL, `is_reference` char(1) default NULL, `hash` varchar(32) default NULL, `search_data` longtext, `lastModif` int(14) default NULL, `lastModifUser` varchar(200) default NULL, PRIMARY KEY (`fileId`), KEY `name` (`name`), KEY `description` (`description`(255)), KEY `downloads` (`downloads`), FULLTEXT KEY `ft` (`name`,`description`,`search_data`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_files` -- LOCK TABLES `tiki_files` WRITE; /*!40000 ALTER TABLE `tiki_files` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_forum_attachments` -- DROP TABLE IF EXISTS `tiki_forum_attachments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_forum_attachments` ( `attId` int(14) NOT NULL auto_increment, `threadId` int(14) NOT NULL default '0', `qId` int(14) NOT NULL default '0', `forumId` int(14) default NULL, `filename` varchar(250) default NULL, `filetype` varchar(250) default NULL, `filesize` int(12) default NULL, `data` longblob, `dir` varchar(200) default NULL, `created` int(14) default NULL, `path` varchar(250) default NULL, PRIMARY KEY (`attId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_forum_attachments` -- LOCK TABLES `tiki_forum_attachments` WRITE; /*!40000 ALTER TABLE `tiki_forum_attachments` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_forum_attachments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_forum_reads` -- DROP TABLE IF EXISTS `tiki_forum_reads`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_forum_reads` ( `user` varchar(40) NOT NULL default '', `threadId` int(14) NOT NULL default '0', `forumId` int(14) default NULL, `timestamp` int(14) default NULL, PRIMARY KEY (`user`,`threadId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_forum_reads` -- LOCK TABLES `tiki_forum_reads` WRITE; /*!40000 ALTER TABLE `tiki_forum_reads` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_forum_reads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_forums` -- DROP TABLE IF EXISTS `tiki_forums`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_forums` ( `forumId` int(8) NOT NULL auto_increment, `name` varchar(200) default NULL, `description` text, `created` int(14) default NULL, `lastPost` int(14) default NULL, `threads` int(8) default NULL, `comments` int(8) default NULL, `controlFlood` char(1) default NULL, `floodInterval` int(8) default NULL, `moderator` varchar(200) default NULL, `hits` int(8) default NULL, `mail` varchar(200) default NULL, `useMail` char(1) default NULL, `section` varchar(200) default NULL, `usePruneUnreplied` char(1) default NULL, `pruneUnrepliedAge` int(8) default NULL, `usePruneOld` char(1) default NULL, `pruneMaxAge` int(8) default NULL, `topicsPerPage` int(6) default NULL, `topicOrdering` varchar(100) default NULL, `threadOrdering` varchar(100) default NULL, `att` varchar(80) default NULL, `att_store` varchar(4) default NULL, `att_store_dir` varchar(250) default NULL, `att_max_size` int(12) default NULL, `ui_level` char(1) default NULL, `forum_password` varchar(32) default NULL, `forum_use_password` char(1) default NULL, `moderator_group` varchar(200) default NULL, `approval_type` varchar(20) default NULL, `outbound_address` varchar(250) default NULL, `outbound_mails_for_inbound_mails` char(1) default NULL, `outbound_mails_reply_link` char(1) default NULL, `outbound_from` varchar(250) default NULL, `inbound_pop_server` varchar(250) default NULL, `inbound_pop_port` int(4) default NULL, `inbound_pop_user` varchar(200) default NULL, `inbound_pop_password` varchar(80) default NULL, `topic_smileys` char(1) default NULL, `ui_avatar` char(1) default NULL, `ui_flag` char(1) default NULL, `ui_posts` char(1) default NULL, `ui_email` char(1) default NULL, `ui_online` char(1) default NULL, `topic_summary` char(1) default NULL, `show_description` char(1) default NULL, `topics_list_replies` char(1) default NULL, `topics_list_reads` char(1) default NULL, `topics_list_pts` char(1) default NULL, `topics_list_lastpost` char(1) default NULL, `topics_list_author` char(1) default NULL, `vote_threads` char(1) default NULL, `forum_last_n` int(2) default '0', PRIMARY KEY (`forumId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_forums` -- LOCK TABLES `tiki_forums` WRITE; /*!40000 ALTER TABLE `tiki_forums` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_forums` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_forums_queue` -- DROP TABLE IF EXISTS `tiki_forums_queue`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_forums_queue` ( `qId` int(14) NOT NULL auto_increment, `object` varchar(32) default NULL, `parentId` int(14) default NULL, `forumId` int(14) default NULL, `timestamp` int(14) default NULL, `user` varchar(40) default NULL, `title` varchar(240) default NULL, `data` text, `type` varchar(60) default NULL, `hash` varchar(32) default NULL, `topic_smiley` varchar(80) default NULL, `topic_title` varchar(240) default NULL, `summary` varchar(240) default NULL, PRIMARY KEY (`qId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_forums_queue` -- LOCK TABLES `tiki_forums_queue` WRITE; /*!40000 ALTER TABLE `tiki_forums_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_forums_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_forums_reported` -- DROP TABLE IF EXISTS `tiki_forums_reported`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_forums_reported` ( `threadId` int(12) NOT NULL default '0', `forumId` int(12) NOT NULL default '0', `parentId` int(12) NOT NULL default '0', `user` varchar(40) default NULL, `timestamp` int(14) default NULL, `reason` varchar(250) default NULL, PRIMARY KEY (`threadId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_forums_reported` -- LOCK TABLES `tiki_forums_reported` WRITE; /*!40000 ALTER TABLE `tiki_forums_reported` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_forums_reported` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_friends` -- DROP TABLE IF EXISTS `tiki_friends`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_friends` ( `user` char(40) NOT NULL default '', `friend` char(40) NOT NULL default '', PRIMARY KEY (`user`,`friend`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_friends` -- LOCK TABLES `tiki_friends` WRITE; /*!40000 ALTER TABLE `tiki_friends` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_friends` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_friendship_requests` -- DROP TABLE IF EXISTS `tiki_friendship_requests`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_friendship_requests` ( `userFrom` char(40) NOT NULL default '', `userTo` char(40) NOT NULL default '', `tstamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`userFrom`,`userTo`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_friendship_requests` -- LOCK TABLES `tiki_friendship_requests` WRITE; /*!40000 ALTER TABLE `tiki_friendship_requests` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_friendship_requests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_galleries` -- DROP TABLE IF EXISTS `tiki_galleries`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_galleries` ( `galleryId` int(14) NOT NULL auto_increment, `name` varchar(80) NOT NULL default '', `description` text, `created` int(14) default NULL, `lastModif` int(14) default NULL, `visible` char(1) default NULL, `geographic` char(1) default NULL, `theme` varchar(60) default NULL, `user` varchar(40) default NULL, `hits` int(14) default NULL, `maxRows` int(10) default NULL, `rowImages` int(10) default NULL, `thumbSizeX` int(10) default NULL, `thumbSizeY` int(10) default NULL, `public` char(1) default NULL, `sortorder` varchar(20) NOT NULL default 'created', `sortdirection` varchar(4) NOT NULL default 'desc', `galleryimage` varchar(20) NOT NULL default 'first', `parentgallery` int(14) NOT NULL default '-1', `showname` char(1) NOT NULL default 'y', `showimageid` char(1) NOT NULL default 'n', `showdescription` char(1) NOT NULL default 'n', `showcreated` char(1) NOT NULL default 'n', `showuser` char(1) NOT NULL default 'n', `showhits` char(1) NOT NULL default 'y', `showxysize` char(1) NOT NULL default 'y', `showfilesize` char(1) NOT NULL default 'n', `showfilename` char(1) NOT NULL default 'n', `defaultscale` varchar(10) NOT NULL default 'o', PRIMARY KEY (`galleryId`), KEY `name` (`name`), KEY `description` (`description`(255)), KEY `hits` (`hits`), FULLTEXT KEY `ft` (`name`,`description`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_galleries` -- LOCK TABLES `tiki_galleries` WRITE; /*!40000 ALTER TABLE `tiki_galleries` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_galleries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_galleries_scales` -- DROP TABLE IF EXISTS `tiki_galleries_scales`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_galleries_scales` ( `galleryId` int(14) NOT NULL default '0', `scale` int(11) NOT NULL default '0', PRIMARY KEY (`galleryId`,`scale`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_galleries_scales` -- LOCK TABLES `tiki_galleries_scales` WRITE; /*!40000 ALTER TABLE `tiki_galleries_scales` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_galleries_scales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_games` -- DROP TABLE IF EXISTS `tiki_games`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_games` ( `gameName` varchar(200) NOT NULL default '', `hits` int(8) default NULL, `votes` int(8) default NULL, `points` int(8) default NULL, PRIMARY KEY (`gameName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_games` -- LOCK TABLES `tiki_games` WRITE; /*!40000 ALTER TABLE `tiki_games` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_games` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_group_inclusion` -- DROP TABLE IF EXISTS `tiki_group_inclusion`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_group_inclusion` ( `groupName` varchar(255) NOT NULL default '', `includeGroup` varchar(255) NOT NULL default '', PRIMARY KEY (`groupName`(30),`includeGroup`(30)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_group_inclusion` -- LOCK TABLES `tiki_group_inclusion` WRITE; /*!40000 ALTER TABLE `tiki_group_inclusion` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_group_inclusion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_history` -- DROP TABLE IF EXISTS `tiki_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_history` ( `pageName` varchar(160) NOT NULL default '', `version` int(8) NOT NULL default '0', `version_minor` int(8) NOT NULL default '0', `lastModif` int(14) default NULL, `description` varchar(200) default NULL, `user` varchar(40) default NULL, `ip` varchar(15) default NULL, `comment` varchar(200) default NULL, `data` longblob, PRIMARY KEY (`pageName`,`version`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_history` -- LOCK TABLES `tiki_history` WRITE; /*!40000 ALTER TABLE `tiki_history` DISABLE KEYS */; INSERT INTO `tiki_history` VALUES ('HomePage',1,0,1154639566,'','admin','0.0.0.0','Tiki initialization',''),('HomePage',2,0,1154640347,'','admin','66.80.242.3','','Hello world.\r\n(:mrgreen:)'),('HomePage',3,0,1154641867,'','smackey','66.80.242.3','','Hello world - this is me editing the original post.\r\n(:mrgreen:)\r\n\r\nLet\'s play the name game here --> smackey --> [http://www.NotavivaVineyards.com/weblog/|Check out my blog!] (:rolleyes:)'),('HomePage',4,0,1154642097,'','shannon','66.80.242.3','','Hello world - this is me editing the original post.\r\n(:mrgreen:)\r\n\r\nLet\'s play the name game here --> smackey --> [http://www.NotavivaVineyards.com/weblog/|Check out my blog!] (:rolleyes:)\r\n\r\nHi this is Shannon (actually Stephen pretending to be Shannon...) and I thought I\'d check out this Wiki thing too. (:lol:)'),('AOL Webcast',1,0,1154642307,'','admin','66.80.242.3','','This is VIVA Productions first legitimate project Wiki. It has been created to log project requirements for AOL Webcasts.'),('AOL Webcast',2,0,1154642670,'','admin','66.80.242.3','','This is VIVA Productions first legitimate project Wiki. It has been created to log project requirements for AOL Webcasts.\r\n\r\nLoad-in Day Completion Checklist\r\n- Audio system assembled and set\r\n- Lighting system assembled and ready for focus\r\n- Video system assembled and set\r\n\r\nPre-Show Tech Rehearsal Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- Tech flows distributed\r\n- Cue-to-cue executed flawlessly\r\n\r\nShow Standby Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- House music playing\r\n- Walk-in lighting/video/graphics look'),('AOL Webcast',3,0,1154642762,'','admin','66.80.242.3','','This is VIVA Productions first legitimate project Wiki. It has been created to log project requirements for AOL Webcasts.\r\n\r\nLoad-in Day Completion Checklist\r\n- Audio system assembled and set\r\n- Lighting system assembled and ready for focus\r\n- Video system assembled and set\r\n\r\nPreShow Tech Rehearsal Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- Tech flows distributed\r\n- Cue-to-cue executed flawlessly\r\n\r\nShow Standby Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- House music playing\r\n- Walk-in lighting/video/graphics look'),('AOL Webcast',4,0,1154642782,'','admin','66.80.242.3','','This is VIVA Productions first legitimate project Wiki. It has been created to log project requirements for AOL Webcasts.\r\n\r\nLoad-in Day Completion Checklist\r\n- Audio system assembled and set\r\n- Lighting system assembled and ready for focus\r\n- Video system assembled and set\r\n\r\nTech Rehearsal Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- Tech flows distributed\r\n- Cue-to-cue executed flawlessly\r\n\r\nShow Standby Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- House music playing\r\n- Walk-in lighting/video/graphics look'),('AOL Webcast',5,0,1154643157,'','admin','66.80.242.3','','This is VIVA Productions first legitimate project Wiki. It has been created to log project requirements for AOL Webcasts.\r\n\r\nLoad-in Day Completion Checklist\r\n*Audio system assembled and set\r\n*Lighting system assembled and ready for focus\r\n*Video system assembled and set\r\n\r\nTech Rehearsal Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- Tech flows distributed\r\n- Cue-to-cue executed flawlessly\r\n\r\nShow Standby Checklist\r\n- Audio system check\r\n- Lighting system check\r\n- Video system check\r\n- House music playing\r\n- Walk-in lighting/video/graphics look'),('HomePage',5,0,1154642249,'','admin','66.80.242.3','','Hello world - this is me editing the original post.\r\n(:mrgreen:)\r\n\r\nLet\'s play the name game here --> smackey --> [http://www.NotavivaVineyards.com/weblog/|Check out my blog!] (:rolleyes:)\r\n\r\nHi this is Shannon (actually Stephen pretending to be Shannon...) and I thought I\'d check out this Wiki thing too. (:lol:)\r\n\r\nHi this is Admin again, and I\'m adding a link to an ((AOL Webcast Project Wiki))'),('HomePage',6,0,1154644975,'','shannon','66.80.242.3','','Hello world - this is me editing the original post.\r\n(:mrgreen:)\r\n\r\nLet\'s play the name game here --> smackey --> [http://www.NotavivaVineyards.com/weblog/|Check out my blog!] (:rolleyes:)\r\n\r\nHi this is Shannon (actually Stephen pretending to be Shannon...) and I thought I\'d check out this Wiki thing too. (:lol:)\r\n\r\nHi this is Admin again, and I\'m adding a link to an ((AOL Webcast Project Wiki))\r\n\r\nHello there Stephens...it\'s the real Shannon. I\'m sitting here with your little boy Tristan. He\'s beyond exhausted at this point'),('HomePage',7,0,1154645033,'','admin','66.80.242.3','','Hello world - this is me editing the original post.\r\n(:mrgreen:)\r\n\r\nLet\'s play the name game here --> smackey --> [http://www.NotavivaVineyards.com/weblog/|Check out my blog!] (:rolleyes:)\r\n\r\nHi this is Shannon (actually Stephen pretending to be Shannon...) and I thought I\'d check out this Wiki thing too. (:lol:)\r\n\r\nHi this is Admin again, and I\'m adding a link to an ((AOL Webcast Project Wiki))\r\n\r\nHello there Stephens...it\'s the real Shannon. I\'m sitting here with your little boy Tristan. He\'s beyond exhausted at this point\r\n\r\n-------------------------------------------------\r\nVIVA Productions Wiki\r\n\r\n((Production Team Status))'),('Production Team Status',1,0,1154646850,'','admin','66.80.242.3','','-=Production Team Status=-\r\n\r\n!Post Production\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected based - "too jewy" ???\r\n\r\n!Event Production\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\n\r\n!Event Planning\r\n\r\n__MED Week__'),('Production Team Status',2,0,1154647085,'','admin','66.80.242.3','','-=Escalations=-\r\n\r\n-=Post Production=-\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected based - "too jewy" ???\r\n\r\n-=Event Production=-\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',3,0,1154647171,'','admin','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk.\r\n\r\n-=Post Production=-\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected based - "too jewy" ???\r\n\r\n-=Event Production=-\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',4,0,1154647568,'','smackey','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Post Production=-\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" ??? Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',5,0,1154647692,'','rsizemore','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Post Production=-\r\n__AOL All-Hands 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" ??? Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',6,0,1154647753,'','rsizemore','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Post Production=-\r\n__AOL AllHands 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" ??? Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',7,0,1154647788,'','rsizemore','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Post Production=-\r\n__AOL 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" ??? Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',8,0,1154647819,'','rsizemore','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Post Production=-\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" ??? Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__AOL 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',9,0,1154693902,'','admin','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" ??? Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__AOL 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('AOL Webcast',6,0,1154643308,'','admin','66.80.242.3','','This is VIVA Productions first legitimate project Wiki. It has been created to log project requirements for AOL Webcasts.\r\n\r\nLoad-in Day Completion Checklist\r\n*Audio system assembled and set\r\n**PA EQ\r\n**Mic (Lav/HH) EQ\r\n**VOG\r\n**Video Playback\r\n**Intercom\r\n*Lighting system assembled and ready for focus\r\n*Video system assembled and set\r\n\r\nTech Rehearsal Checklist\r\n*Audio system check\r\n*Lighting system check\r\n*Video system check\r\n*Tech flows distributed\r\n*Cue-to-cue executed flawlessly\r\n\r\nShow Standby Checklist\r\n*Audio system check\r\n*Lighting system check\r\n*Video system check\r\n*House music playing\r\n*Walk-in lighting/video/graphics look'),('AOL Webcast',7,0,1154694938,'','admin','66.80.242.3','','-=Required from client=-\r\n*Budget approval\r\n*Powerpoint presentation\r\n*Music playlist\r\n**Walk-in\r\n**Play-ups\r\n**Walk-out\r\n*Set confirmation\r\n**Podium\r\n**Drape\r\n**Gobos\r\n**Set pieces (Squards)\r\n*PIP Image\r\n\r\nLoad-in Day Completion Checklist\r\n*Audio system assembled and set\r\n**PA EQ\r\n**Mic (Lav/HH) EQ\r\n**VOG\r\n**Video Playback\r\n**Intercom\r\n*Lighting system assembled and ready for focus\r\n**Lekos with gobos focused\r\n**Curtain uplighting checked in room and on camera\r\n*Video system assembled and set\r\n**Cameras\r\n**PIP\r\n*Webcast system assembled and set\r\n**PPT uploaded to AOL/VIVA servers\r\n**Encoders (main and b/u) tested\r\n**Slide push tested\r\n\r\nTech Rehearsal Checklist\r\n*Audio system check\r\n*Lighting system check\r\n*Video system check\r\n*Tech flows distributed\r\n*Cue-to-cue executed flawlessly\r\n\r\nShow Standby Checklist\r\n*Audio system check\r\n*Lighting system check\r\n*Video system check\r\n*House music playing\r\n*Walk-in lighting/video/graphics look'),('Production Team Status',10,0,1154693980,'','admin','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" (:eek:) Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__AOL 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity.\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16.\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('HomePage',8,0,1154646967,'','admin','66.80.242.3','','VIVA Productions Wiki\r\n\r\n((Production Team Status))\r\n\r\n((AOL Webcast))'),('AVAYA Sales Conference',1,0,1155757414,'','admin','72.254.174.85','','*10/7 Management Meeting Set\r\n**Sheraton New Orleans\r\n**Grand Ballroom\r\n**500 at crescent rounds\r\n**5 – midnight\r\n*10/9 Opening General Session\r\n*10/9 Cisco Mandatory Sales Breakout\r\n*10/9 Business Partner 3:30pm – 5pm\r\n**1,000 theater Business Partners (largest subgroup) 550\r\n**Alliance Partners 100\r\n**DevConnect Members 250\r\n**2pm – 3:15pm then take a break\r\n**3:30pm – 5pm business partner meeting in auditorium\r\n*10/10 Tech Conference Opening General Session\r\n**Auditorium\r\n** 293-296\r\n**1,000 theater\r\n**Morning\r\n*10/11 Closing General Session 8am-11am\r\n**Immediately following meet n greet with Lou Gerstner\r\n**11-12\r\n**Room 383\r\n**Need room layout\r\n**Highboys and tables\r\n**Photo backdrop\r\n*10/11 Sales Team Breakout SAO\r\n**2pm-5pm\r\n**293-296\r\n**840 theater\r\n*10/11 Sales Team Breakout NA\r\n**2pm-5pm\r\n**393-396\r\n**740 theater\r\n*10/12 Tech Conference Closing Session\r\n**Sheraton Grand Ballroom\r\n**1,870 theater\r\n\r\nFour Green Rooms – one may be used as a server room, need to follow up – Roger will measure to see which would suffice – no way can we sacrifice a room.\r\n\r\n*Larger breakouts\r\n**Where there is a need for a room producer, we should be involved\r\n**SAO (Strategic Accounts Organization) big meeting\r\n**NA (North America) big meeting\r\n**Sunday Executive meeting\r\n***Needs a producer\r\n***IMAG\r\n***225\r\n***Rounds \r\n***Co-vision (facilitator at every table)\r\n***AVAYA brought laptops\r\n***Immediately following will be a “new-hire” reception\r\n**Jack’s Meeting\r\n***Thursday Arrive\r\n***Friday all day show\r\n***Saturday half day show\r\n***Some people will stay through conference\r\n***250 possibly up to 450\r\n***Needs producer, working directly with house AV\r\n\r\nCan we get the auditorium on Thursday 10/5?\r\n'),('August 24 Meeting With Evan',1,0,1156440380,'','admin','66.80.242.3','','*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP\r\n*Leadership meeting is the larger group 435 people\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away'),('August 24 Meeting With Evan',2,0,1156440812,'','admin','66.80.242.3','','*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact'),('August 24 Meeting With Evan',3,0,1156441136,'','admin','66.80.242.3','','*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP\r\n\r\n-=Sunday=-\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact\r\n\r\n-=Monday=-\r\n*Need rehearsal times for both Partners meetings\r\n'),('August 24 Meeting With Evan',4,0,1156442101,'','admin','66.80.242.3','','*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP\r\n\r\n-=Sunday=-\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact\r\n\r\n-=Monday=-\r\n*Need rehearsal times for both Partners meetings\r\n*DevConnect (250) and Alliance (250)\r\n\r\n-=Tuesday=-\r\n*Cisco Breakout - video only'),('August 24 Meeting With Evan',5,0,1156442224,'','admin','66.80.242.3','','*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP\r\n\r\n-=Sunday=-\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact\r\n\r\n-=Monday=-\r\n*Need rehearsal times for both Partners meetings\r\n*DevConnect (250) and Alliance (250)\r\n\r\n-=Tuesday=-\r\n*Cisco Breakout - video only\r\n*Expo - still need to coordinate with Mike who is designing entertainment, etc.\r\n\r\n-=Wednesday=-\r\n*On-site closing video\r\n*Law group doing Habitat for Humanity on Tuesday, needs to be shot for closing video'),('August 24 Meeting With Evan',6,0,1156442609,'','admin','66.80.242.3','','*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP\r\n\r\n-=Sunday=-\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact\r\n\r\n-=Monday=-\r\n*Need rehearsal times for both Partners meetings\r\n*DevConnect (250) and Alliance (250)\r\n\r\n-=Tuesday=-\r\n*Cisco Breakout - video only\r\n*Expo - still need to coordinate with Mike who is designing entertainment, etc.\r\n\r\n-=Wednesday=-\r\n*On-site closing video\r\n*Law group doing Habitat for Humanity on Tuesday, needs to be shot for closing video\r\n*Leave the SAO and NA skill clinics in place for now, in case we need to support\r\n\r\n-=Thursday=-\r\n*SMBS will be an all-day event\r\n**Will be a produced session\r\n**Need a contact right away\r\n*Global Integrated Sales (GIS) - contact Janelle\r\n'),('August 24 Meeting With Evan',7,0,1156442983,'','admin','66.80.242.3','','-=General=-\r\n*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP (:eek:)\r\n*Need separate budgets for SMBS, GIS, SAO and NA general sessions\r\n\r\n-=Sunday=-\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact\r\n\r\n-=Monday=-\r\n*Need rehearsal times for both Partners meetings\r\n*DevConnect (250) and Alliance (250)\r\n\r\n-=Tuesday=-\r\n*Cisco Breakout - video only\r\n*Expo - still need to coordinate with Mike who is designing entertainment, etc.\r\n\r\n-=Wednesday=-\r\n*On-site closing video\r\n*Law group doing Habitat for Humanity on Tuesday, needs to be shot for closing video\r\n*Leave the SAO and NA skill clinics in place for now, in case we need to support\r\n\r\n-=Thursday=-\r\n*SMBS will be an all-day event in the auditorium\r\n**Will be a produced session\r\n**Need a contact right away\r\n*Global Integrated Sales (GIS) - contact Janelle\r\n*SAO and NA removed\r\n'),('AVAYA Sales Conference',2,0,1156439687,'','admin','66.80.242.3','','*10/7 Management Meeting Set\r\n**Sheraton New Orleans\r\n**Grand Ballroom\r\n**500 at crescent rounds\r\n**5 – midnight\r\n*10/9 Opening General Session\r\n*10/9 Cisco Mandatory Sales Breakout\r\n*10/9 Business Partner 3:30pm – 5pm\r\n**1,000 theater Business Partners (largest subgroup) 550\r\n**Alliance Partners 100\r\n**DevConnect Members 250\r\n**2pm – 3:15pm then take a break\r\n**3:30pm – 5pm business partner meeting in auditorium\r\n*10/10 Tech Conference Opening General Session\r\n**Auditorium\r\n** 293-296\r\n**1,000 theater\r\n**Morning\r\n*10/11 Closing General Session 8am-11am\r\n**Immediately following meet n greet with Lou Gerstner\r\n**11-12\r\n**Room 383\r\n**Need room layout\r\n**Highboys and tables\r\n**Photo backdrop\r\n*10/11 Sales Team Breakout SAO\r\n**2pm-5pm\r\n**293-296\r\n**840 theater\r\n*10/11 Sales Team Breakout NA\r\n**2pm-5pm\r\n**393-396\r\n**740 theater\r\n*10/12 Tech Conference Closing Session\r\n**Sheraton Grand Ballroom\r\n**1,870 theater\r\n\r\nFour Green Rooms – one may be used as a server room, need to follow up – Roger will measure to see which would suffice – no way can we sacrifice a room.\r\n\r\n*Larger breakouts\r\n**Where there is a need for a room producer, we should be involved\r\n**SAO (Strategic Accounts Organization) big meeting\r\n**NA (North America) big meeting\r\n**Sunday Executive meeting\r\n***Needs a producer\r\n***IMAG\r\n***225\r\n***Rounds \r\n***Co-vision (facilitator at every table)\r\n***AVAYA brought laptops\r\n***Immediately following will be a “new-hire” reception\r\n**Jack’s Meeting\r\n***Thursday Arrive\r\n***Friday all day show\r\n***Saturday half day show\r\n***Some people will stay through conference\r\n***250 possibly up to 450\r\n***Needs producer, working directly with house AV\r\n\r\nCan we get the auditorium on Thursday 10/5?\r\n\r\n\r\n\r\n((August 24 Meeting With Evan))'),('September 7 Phone Conference',1,0,1157633062,'','admin','66.80.242.3','','-=Charitable Events=-\r\n*300 people going to City Park on Sunday\r\n*Law Conference going with Habitat for Humanity on Tuesday\r\nWill VIVA be required to film these events for press release?'),('September 7 Phone Conference',2,0,1157633233,'','admin','66.80.242.3','','-=Charitable Events=-\r\n*300 people going to City Park on Sunday\r\n*Law Conference going with Habitat for Humanity on Tuesday\r\nWill VIVA be required to film these events for press release (:question:)\r\n\r\nEvan:\r\nWhat is the flow?\r\nWho are the speakers?\r\n\r\nJA:\r\nWe have Charlie, need to have Karen (to talk about technology direction)\r\nNeed to find a way to have Mickey and Fran talking as a team\r\n*Can try to do in the kitchen\r\n*Their message TBD'),('September 7 Phone Conference',3,0,1157633298,'','admin','66.80.242.3','','-=Charitable Events=-\r\n*300 people going to City Park on Sunday\r\n*Law Conference going with Habitat for Humanity on Tuesday\r\nWill VIVA be required to film these events for press release (:question:)\r\n\r\n-=Program=-\r\n\r\nEvan:\r\nWhat is the flow?\r\nWho are the speakers?\r\n\r\nJA:\r\nWe have Charlie, need to have Karen (to talk about technology direction)\r\nNeed to find a way to have Mickey and Fran talking as a team\r\n*Can try to do in the kitchen\r\n*Their message TBD but will be based on Power of One and the Ten Principles'),('September 7 Phone Conference',4,0,1157633489,'','admin','66.80.242.3','','-=Charitable Events=-\r\n*300 people going to City Park on Sunday\r\n*Law Conference going with Habitat for Humanity on Tuesday\r\nWill VIVA be required to film these events for press release (:question:)\r\n\r\n-=Program=-\r\n\r\nEvan:\r\nWhat is the flow?\r\nWho are the speakers?\r\n\r\nJA:\r\nWe have Charlie, need to have Karen (to talk about technology direction)\r\nNeed to find a way to have Mickey and Fran talking as a team\r\n*Can try to do in the kitchen\r\n*Their message TBD but will be based on Power of One and the Ten Principles\r\n__Wednesday__\r\n*Gerstner is an hour (9:45-10:45)\r\n*Closing with Charlie (gives call to action) and JA'),('September 7 Phone Conference',5,0,1157633982,'','admin','66.80.242.3','','-=Charitable Events=-\r\n*300 people going to City Park on Sunday\r\n*Law Conference going with Habitat for Humanity on Tuesday\r\nWill VIVA be required to film these events for press release (:question:)\r\n\r\n-=Program=-\r\n\r\nEvan:\r\nWhat is the flow?\r\nWho are the speakers?\r\n\r\nJA:\r\nWe have Charlie, need to have Karen (to talk about technology direction)\r\nNeed to find a way to have Mickey and Fran talking as a team\r\n*Can try to do in the kitchen\r\n*Their message TBD but will be based on Power of One and the Ten Principles\r\n__Wednesday__\r\n*Gerstner is an hour (9:45-10:45)\r\n*Closing with Charlie (gives call to action) and JA\r\n*Can Mickey and Fran do something fun with the cooking theme?\r\n\r\n__Monday__\r\nOpening\r\nCharlie welcome\r\nLou welcome\r\nMike speech\r\nBREAK\r\nMickey/Fran\r\nAVAYA chef\r\nMarketing update\r\nCharlie speech\r\n\r\n--Due to pending layoffs, the AVAYA build isn\'t feeling appropriate\r\n'),('AVAYA Sales Conference',3,0,1157632844,'','admin','66.80.242.3','','*10/7 Management Meeting Set\r\n**Sheraton New Orleans\r\n**Grand Ballroom\r\n**500 at crescent rounds\r\n**5 – midnight\r\n*10/9 Opening General Session\r\n*10/9 Cisco Mandatory Sales Breakout\r\n*10/9 Business Partner 3:30pm – 5pm\r\n**1,000 theater Business Partners (largest subgroup) 550\r\n**Alliance Partners 100\r\n**DevConnect Members 250\r\n**2pm – 3:15pm then take a break\r\n**3:30pm – 5pm business partner meeting in auditorium\r\n*10/10 Tech Conference Opening General Session\r\n**Auditorium\r\n** 293-296\r\n**1,000 theater\r\n**Morning\r\n*10/11 Closing General Session 8am-11am\r\n**Immediately following meet n greet with Lou Gerstner\r\n**11-12\r\n**Room 383\r\n**Need room layout\r\n**Highboys and tables\r\n**Photo backdrop\r\n*10/11 Sales Team Breakout SAO\r\n**2pm-5pm\r\n**293-296\r\n**840 theater\r\n*10/11 Sales Team Breakout NA\r\n**2pm-5pm\r\n**393-396\r\n**740 theater\r\n*10/12 Tech Conference Closing Session\r\n**Sheraton Grand Ballroom\r\n**1,870 theater\r\n\r\nFour Green Rooms – one may be used as a server room, need to follow up – Roger will measure to see which would suffice – no way can we sacrifice a room.\r\n\r\n*Larger breakouts\r\n**Where there is a need for a room producer, we should be involved\r\n**SAO (Strategic Accounts Organization) big meeting\r\n**NA (North America) big meeting\r\n**Sunday Executive meeting\r\n***Needs a producer\r\n***IMAG\r\n***225\r\n***Rounds \r\n***Co-vision (facilitator at every table)\r\n***AVAYA brought laptops\r\n***Immediately following will be a “new-hire” reception\r\n**Jack’s Meeting\r\n***Thursday Arrive\r\n***Friday all day show\r\n***Saturday half day show\r\n***Some people will stay through conference\r\n***250 possibly up to 450\r\n***Needs producer, working directly with house AV\r\n\r\nCan we get the auditorium on Thursday 10/5?\r\n\r\n\r\n\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))'),('Global Integrated Services Creative Session',1,0,1157734146,'','admin','66.80.242.3','','-=Creative Session=-\r\n"Call to Action" has been the historical theme - last year was "Let\'s Grow For It" and "Game On"\r\nWe\'ll need to work on PPT templates, opening video (with Exec sound bytes?) and maybe an onsite video\r\n\r\nNew driver is INNOVATION - how can they leverage innovation for profitable returns\r\n*Organic growth\r\n*Process efficiencies\r\n\r\nCreative solution must drive energy\r\n\r\nraise the bar\r\n\r\nFinesse\r\nMomentum\r\nPace\r\nAction\r\nAchieve\r\nEmpower\r\nInnovate\r\nPrecision\r\nAccurate\r\nRecharge\r\nReenergize\r\nEndurance\r\nProfit\r\n\r\nPower Synonyms\r\n*generate\r\n*control\r\n*command\r\n*energize\r\n\r\n*Innovate to Generate\r\n**Light bulbs\r\n**Money\r\n**Wireframes morphing\r\n**New Ideas Create More Profit\r\n***Many other industries making processes more efficient to generate profit\r\n*Charge Ahead\r\n**Lightning bolt / energy\r\n**Future metaphors\r\n**Group moving as one\r\n*Get Plugged In\r\n**Connect\r\n**Energize\r\n**Visuals\r\n***Electrical Plug\r\n***Salesman plugged to client\r\n***"Power of One" logo embodied in a plu\r\n*Transform Your Thinking\r\n**Muscle to the brain\r\n**Clenched fist morphing into the thinker'),('AVAYA Sales Conference',4,0,1157730719,'','admin','66.80.242.3','','*10/7 Management Meeting Set\r\n**Sheraton New Orleans\r\n**Grand Ballroom\r\n**500 at crescent rounds\r\n**5 – midnight\r\n*10/9 Opening General Session\r\n*10/9 Cisco Mandatory Sales Breakout\r\n*10/9 Business Partner 3:30pm – 5pm\r\n**1,000 theater Business Partners (largest subgroup) 550\r\n**Alliance Partners 100\r\n**DevConnect Members 250\r\n**2pm – 3:15pm then take a break\r\n**3:30pm – 5pm business partner meeting in auditorium\r\n*10/10 Tech Conference Opening General Session\r\n**Auditorium\r\n** 293-296\r\n**1,000 theater\r\n**Morning\r\n*10/11 Closing General Session 8am-11am\r\n**Immediately following meet n greet with Lou Gerstner\r\n**11-12\r\n**Room 383\r\n**Need room layout\r\n**Highboys and tables\r\n**Photo backdrop\r\n*10/11 Sales Team Breakout SAO\r\n**2pm-5pm\r\n**293-296\r\n**840 theater\r\n*10/11 Sales Team Breakout NA\r\n**2pm-5pm\r\n**393-396\r\n**740 theater\r\n*10/12 Tech Conference Closing Session\r\n**Sheraton Grand Ballroom\r\n**1,870 theater\r\n\r\nFour Green Rooms – one may be used as a server room, need to follow up – Roger will measure to see which would suffice – no way can we sacrifice a room.\r\n\r\n*Larger breakouts\r\n**Where there is a need for a room producer, we should be involved\r\n**SAO (Strategic Accounts Organization) big meeting\r\n**NA (North America) big meeting\r\n**Sunday Executive meeting\r\n***Needs a producer\r\n***IMAG\r\n***225\r\n***Rounds \r\n***Co-vision (facilitator at every table)\r\n***AVAYA brought laptops\r\n***Immediately following will be a “new-hire” reception\r\n**Jack’s Meeting\r\n***Thursday Arrive\r\n***Friday all day show\r\n***Saturday half day show\r\n***Some people will stay through conference\r\n***250 possibly up to 450\r\n***Needs producer, working directly with house AV\r\n\r\nCan we get the auditorium on Thursday 10/5?\r\n\r\n\r\n\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))'),('AVAYA Sales Conference',5,0,1158161020,'','admin','66.80.242.3','','-=Meeting Notes=-\r\n\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))'),('AVAYA Sales Conference',6,0,1158161067,'','admin','66.80.242.3','','-=Meeting Notes=-\r\n\r\n((August 16 Meeting to determine responsibilities))\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))'),('AVAYA Sales Conference',7,0,1158161886,'','admin','66.80.242.3','','-=Meeting Notes=-\r\n\r\n((August 16 Meeting to determine responsibilities))\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))\r\n\r\n((Leadership Meeting))'),('General Session',1,0,1158247002,'','admin','66.80.242.3','','((Production To-Do List))\r\n \r\n\r\n'),('General Session',2,0,1158247120,'','admin','66.80.242.3','','((Production ToDo List))\r\n \r\n\r\n'),('Leadership Meeting',1,0,1158173965,'','admin','66.80.242.3','','-=Sept 8 Conference Call=-\r\n\r\n*CoVision by 3 pm no other network operating in the room\r\n*Offsite rehearsal location???\r\n*2 radios if possible\r\n*Rehearsals between 6-9\r\n*Lou, Mike, Charlie (will rehearse a bit) Lou/Mike not so much\r\n*Advance with Josh, determine T1 need\r\n*Electric drop to each round\r\n*6 chairs per round\r\n*480, maybe slightly more - 80 table rounds\r\n*AVAYA IT person taken care of by Deb\r\n\r\n-=CoVision Email Thread=-\r\n\r\nJosh, \r\n\r\nWill any of your servers need Internet access? If not, then it sounds like you will have a self contained network setup as last year. If you need Internet connectivity, we need to know immediately how network drops/IP Addresses you will need to the Internet. Thank you. \r\n\r\nRegards,\r\nJohn Tuck --------------------------------------------------------------------------------\r\n\r\nFrom: Josh Kaufman [mailto:joshk@covision.com] \r\nSent: Wednesday, September 13, 2006 10:32 AM\r\nTo: D\'Anton, Melissa A (Melissa)\r\nCc: Pang, Kiang S (Alex); Tuck, John R, Jr (John); smackey@getviva.com\r\nSubject: Re: GS&M Managers Meeting: Technical Requirements for CoVision Process\r\n\r\n My cell phone is (415) 531-5937. I\'m on the west coast and ask that people not call before 11am Eastern unless there is an emergency. I will, though, be on the east coast starting tomorrow for two weeks (Ohio & New York).\r\n\r\nHere\'s the email I sent to Deb:\r\n\r\nIdeally, we would setup the network and servers sometime the day before, afternoon is fine. This setup entails a 6 x 30" table, off to the side or in the back of the room. On the table will be two laptop servers and an ethernet switch. From the switch I will run ethernet cables out into the room to three different places, where I will put wirless access points.\r\n\r\nSo, we would need to have the server table with power, as I described above, available at the 3:00 timeslot. If I understand correctly, they are not using the whole room the day before, so this may be possible? At that time, I will setup one access point at the server table. After 6:00, I will run ethernet out to the two remaining access points and our network/server setup will be complete.\r\n\r\nThe question really is when and where do our participants comes with their laptops to get connected and test the network. I would prefer that we schedule them the afternoon before the meeting as we did last year. Would it be possible to do this in the part of the room that is separated by the airwall? If not, then maybe we have to schedule them for Saturday evening, after 7:30 or 8:00, but I\'m not sure how realistic it is to expect them to come then. So, I think our best shot is to figure out how to setup the server table and one access point the afternoon before so we can start to do laptop tests.\r\n\r\nOther than power drops to the server table and other wireless turned off, there are no other requirements.\r\n\r\n--JK\r\n\r\n\r\nOn Sep 13, 2006, at 6:36 AM, D\'Anton, Melissa A ((Melissa)) wrote:\r\n\r\nThanks Josh. Can you please "resend" us the email that you sent to Deb in regards to your technical requirements? I do not have it electronically and would like to share it with the Avaya IT contacts. Also, Alex and John have some questions that they need answered prior to the meeting next week. Can they try you on your cell for some information?\r\n\r\nThanks,\r\nMelissa\r\n'),('AVAYA Sales Conference',8,0,1158246511,'','admin','66.80.242.3','','-=Meeting Notes=-\r\n\r\n((August 16 Meeting to determine responsibilities))\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))\r\n\r\n((Leadership Meeting))\r\n((General Session))'),('AVAYA Sales Conference',9,0,1158791912,'','admin','66.80.242.3','','-=Meeting Notes=-\r\n\r\n((August 16 Meeting to determine responsibilities))\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))\r\n\r\n((Leadership Meeting))\r\n((General Session))\r\n\r\n((To-Do Lists))'),('AVAYA Sales Conference',10,0,1158791935,'','admin','66.80.242.3','','-=Meeting Notes=-\r\n\r\n((August 16 Meeting to determine responsibilities))\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))\r\n\r\n((Leadership Meeting))\r\n((General Session))\r\n\r\n((ToDo Lists))'),('Task Lists',1,0,1158792212,'','admin','66.80.242.3','','EXECUTIVE LEADERSHIP - SUNDAY PRODUCTION \r\n Room Layout Rich \r\n Proudciton Schedule ~~#FF0000:Steve ~~\r\n Contact List ~~#FF0000:Ben/Hillarie ~~\r\n Security Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Hotel Requests ~~#FF0000:Rich ~~\r\n Power \r\n Staging \r\n Seating \r\n Truck Schedule \r\n Confirm AV ~~#FF0000:Steve/Rich/Lorne~~ \r\n PPT ~~#FF0000:Ray Kivinski~~ \r\n Confirm Details with Lori/Jack Feeney ~~#FF0000:Steve ~~\r\n Meal Requests ~~#FF0000:Steve/Ben ~~\r\n Set Elements: Gobos/Signs/Etc ~~#FF0000:Steve/Lorne~~ \r\n Kerwyn - Details ~~#FF0000:Steve/Rich ~~\r\n Viva Computers / Equipment List ~~#FF0000:Rich/Ben ~~\r\n Tech Flow \r\n Spealer Rehearsal Room / Schedule \r\n \r\nGENERAL SESSION PRODUTION \r\n CAD - Room Layout (Stage/ Backstage / Camera Pos / FOH / Etc.) ~~#FF0000:Rich ~~\r\n Production Schedule ~~#FF0000:Steve ~~\r\n Rehearsal Schedule \r\n Security Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Meal Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Contact List ~~#FF0000:Ben/Hillarie~~ \r\n PPT ~~#FF0000:Manfred/Carlos~~ \r\n Wide Screen Graphic / Animations ~~#FF0000:Manfred/Matthew~~ \r\n Gobos ~~#FF0000:Steve ~~\r\n Convention Center ~~#FF0000:Steve ~~\r\n Truck Schedule \r\n Power \r\n Lifts / Fork Lifts \r\n Drape \r\n Set Elements ~~#FF0000:Lorne/Steve/Rich~~ \r\n Stage ~~#FF0000:Lorne/Steve/Rich ~~\r\n Seating ~~#FF0000:Rich ~~\r\n Lighting Plot Rich/MIG \r\n Production Office Supplies ~~#FF0000:Hillarie ~~\r\n Viva Computers / Equipment List ~~#FF0000:Rich/Ben ~~\r\n Tech Flow ~~#FF0000:Lorne/Emily/Ben~~ \r\n Music \r\n \r\nLOU GERSTNER \r\n Send Balance \r\n Amenity for Room - Coordinate with Lori \r\n Make Arrangements for VIP Reception \r\n Change Time? \r\n Finalize Flight Arrangements \r\n \r\nOPENING ACT \r\n Choir \r\n Video- Treatment \r\n Edit Video \r\n Song Lyrics / Talk To Kurt \r\n "Script" \r\n \r\nAVAYA IRON CHEF \r\n Live Script \r\n Producutcion Schedule for Shoot \r\n Crew / Gear Shoot \r\n Props for Shoot \r\n Post-Production Schedule \r\n Emeril \r\n Alton Brown \r\n Set Elements \r\n Find Judges - Shoot or Live? \r\n \r\nStudio Shoot \r\n Book Talent \r\n Book Studio \r\n Graphics for Plasmas \r\n Book Crew: DP, Audio, Gaffer, Prompter \r\n Tape Stock, Hard Drives \r\n \r\nCUSTOMER VIDEOS \r\n Allstate \r\n Shoot on Thursday? Crew? \r\n Script \r\n Whirlpool \r\n Get approval from Avaya \r\n Modify Script per Evan (once rights are approved) \r\n InterMountain Healthcare \r\n Script \r\n TWC \r\n Script \r\n \r\n \r\nBEAT CISCO VIDEOS \r\n Production Schedule \r\n Editing \r\n \r\n \r\nCLOSING / ON-SITE VIDEO \r\n Crew & Gear \r\n Tape Stock \r\n Hard Drives \r\n Production Schedule \r\n \r\n \r\nBUSINESS PARTNERS VIDEO \r\n Shooting Plan \r\n Editing Plan \r\n Treatment \r\n \r\n \r\nEXPO \r\n Qoute for Lighting \r\n Entertainment \r\n \r\nPARTNERS MEETING \r\n PPT \r\n Widescreen \r\n Production Schedule \r\n Rehearsals, etc \r\n \r\nBUSINSESS PARTNERS MEETING \r\n PPT \r\n Widescreen \r\n Production Schedule \r\n Rehearsals, etc \r\n Video?? \r\n \r\nTECHNICAL CONFERENCE GENERAL SESSION \r\n PPT \r\n Production Schedule \r\n Rehearsals, etc \r\n \r\nMANDATORY BREAKOUTS \r\n PPT \r\n Production Schedule \r\n Rehearsals, etc \r\n'),('Task Lists',2,0,1158792282,'','admin','66.80.242.3','','((Lorne 9/18))'),('Task Lists',3,0,1158792302,'','admin','66.80.242.3','','((Lorne Sept18))'),('Task Lists',4,0,1158792359,'','admin','66.80.242.3','','((Lorne Sept 18))\r\n((Steve Sept 18))\r\n((Steve Sept 15))'),('Lorne Sept 20',1,0,1158938155,'','admin','66.80.242.3','','Status of these items?\r\n \r\nCarpet\r\nX Gobos\r\nX Camera Gear for Joe D (ENG Package with light DSR-250)\r\nX DVCam Decks for General Session (need 4 DSR45s)\r\n http://www.digitalsystemsrentals.com/dsr45.shtml\r\n http://www.verrents.com/vtrs.php\r\nHard Drives for Editing\r\nX PC Formatted Hard Drive for Transfer to DDR (USB &Firewire)\r\nX Tape Stock\r\nX DVD-R Stock (We should pre-print these)\r\nX Local Labor - Final Estimate\r\nX Location of confidence screens\r\n \r\nCAD for Conv Ctr (including backstage rooms)\r\nX Layout for Managers Meeting\r\nHotel Request for Managers Meeting (have we spoken to the hotel)\r\nCertificates of insurance for Conv Ctr & Hotel (may need for VER too)\r\nContact Lists\r\nX Security Schedules\r\nX Production Schedules\r\nX Rehearsal Schedules\r\nOrder furniture for VIP reception / Backdrops for photos\r\nPhotographer ?? Need to confirm\r\n \r\nX Quote for Lighting for Expo + rigging requirements if needed\r\n \r\nTalk to Kurt Yeager about sessions - ~~#FF0000:Ben/Lorne~~\r\n \r\n '),('Steve Sept 18',1,0,1158792394,'','admin','66.80.242.3','','X Tell Tim no rehearsals on Saturday\r\n- Meals\r\nX Security\r\nX Adjust labor call to fit new schedule\r\nX confirm new Monday schedule\r\n- hotel AC drops for Leadership Meeting\r\n- NEED CAMERAMEN!!! - sent request\r\nX NEED TD!!!\r\nX Windows hard drive\r\nX DVD-R\r\nX Tape stock\r\nX Joe D Camera\r\n- Ear monitors - sent request\r\nX Snakes?\r\n- Stage carpet - sent two RFPs\r\nX Bishop\r\n - (2) Po1 (2) Avaya both in movers\r\n- Sheraton hotel sheet w/ power, stage\r\n- Sub agreements'),('Steve Sept 18',2,0,1158938231,'','admin','66.80.242.3','','X Tell Tim no rehearsals on Saturday\r\n- Meals\r\nX Security\r\nX Adjust labor call to fit new schedule\r\nX confirm new Monday schedule\r\n- hotel AC drops for Leadership Meeting\r\nX NEED CAMERAMEN!!! - sent request\r\nX NEED TD!!!\r\nX Windows hard drive\r\nX DVD-R\r\nX Tape stock\r\nX Joe D Camera\r\n- Ear monitors - sent request\r\nX Snakes?\r\n- Stage carpet - sent two RFPs\r\nX Bishop\r\n - (2) Po1 (2) Avaya both in movers\r\n- Sheraton hotel sheet w/ power, stage\r\n- Sub agreements'),('Task Lists',5,0,1158938089,'','admin','66.80.242.3','','((Lorne Sept 20))\r\n((Lorne Sept 18))\r\n((Steve Sept 18))\r\n((Steve Sept 15))'),('HomePage',9,0,1155757250,'','admin','72.254.174.85','','VIVA Productions Wiki\r\n\r\n((Production Team Status))\r\n\r\n((AOL Webcast))\r\n\r\n((AVAYA Sales Conference))'),('HomePage',10,0,1165267945,'','smackey','66.80.242.3','','VIVA Productions Wiki\r\n\r\n((Production Team Status))\r\n\r\n((Projects - Active))\r\n\r\n((AOL Webcast Process))\r\n\r\n((AVAYA Sales Conference))'),('HomePage',11,0,1165268150,'','admin','66.80.242.3','','VIVA Productions Wiki (:mrgreen:)\r\n\r\n((Production Team Status))\r\n\r\n((Projects)) (:cool:)\r\n\r\n((AOL Webcast))\r\n\r\n((AVAYA Sales Conference))'),('HomePage',12,0,1165268779,'','admin','66.80.242.3','','(:mrgreen:) VIVA Productions Wiki \r\n\r\n(:rolleyes:) ((Production Team Status))\r\n\r\n(:cool:) ((Projects)) \r\n\r\n(:idea:) ((AOL Webcast))\r\n\r\n(:biggrin:) ((AVAYA Sales Conference))'),('King Pharmaceuticals Leadership 24 Jan 07',1,0,1165268312,'','admin','66.80.242.3','','((Proposal Phone Conference 4 Dec 06))'),('King Pharmaceuticals Leadership 24 Jan 07',2,0,1165270753,'','smackey','66.80.242.3','','((Creative Proposal 1 Dec 06))\r\n\r\n((Proposal Phone Conference 4 Dec 06))'),('King Pharmaceuticals Leadership 24 Jan 07',3,0,1165271938,'','smackey','66.80.242.3','','((Creative Proposal 1 Dec 06))\r\n((Production Phone Conference 4 Dec 06))\r\n((Proposal Phone Conference 4 Dec 06))'),('Creative Proposal 5 Dec 06',1,0,1165418216,'','birey','66.80.242.3','','__Second Annual King Leadership Conference__\r\n__January 24 – 26, 2007__\r\n__Braselton, GA__\r\n__Chateau Élan, Winery & Resort__\r\n__Creative Concepts (Revision 2) - December 6, 2006__\r\n\r\n\r\n__Creative Approach: “Building our Future: It Starts with You”__Alt: Building Leadership\r\nAlt: Building Performance\r\n\r\n__Theme Rationale: __\r\nKing is a young company with an entrepreneurial spirit. Executives recognize the importance of establishing a high performance culture that values strong leadership. With future-focused vision, King aims to put new leadership and accountability practices/attitudes in place to inspire peak performance. This effort will require that everyone in the organization work together to build a better future – one piece at a time. This conference must create a call to action among King’s top 100 leaders to take ownership, take action, and take the first steps in building a high performance future. \r\n\r\n__Opening Sequence: Building Leadership Piece by Piece__\r\nAttendees enter the room and hear subtle sounds of construction. Slow moving lights highlight the stage set. The backdrop is an abstract “skyline” and the top edges of the buildings form the outline of K–I–N–G. \r\n\r\nWhen everyone is seated, lights cut to black. The sounds of drills, hammers, and saws come together in an energizing original song. The song escalates and lights come up full as a group of rhythmic performers in construction costumes take the stage. Close up shots of their performance show on IMAG screens. Some carry pieces of pipe, others different sized metal-frame boxes. In perfect choreography with the music, the performers start building something onstage…\r\n\r\nA performer places a large box center stage. At the instant the box is set in place, a video image starts playing within it. Performers stack more boxes on and around it. Within the boxes they see video footage of famous leaders saying inspirational, powerful quotations (Sports leaders, political leaders, social leaders, etc). The soundtrack is infused with the sound of their voices. The audience sees imagery that motivates them to be great leaders, footage that inspires them to peak performance, visuals that makes them proud to be a part of King Pharmaceuticals. The choreography continues as the performers build a large video wall onstage - literally assembling the building blocks of leadership and peak performance before the audiences’ eyes. When the final box is placed, the entire video wall comes to life with the King Pharmaceuticals Logo. Music and video crescendo in a high-energy montage about leadership and peak performance – perhaps also incorporating prerecorded interview bytes from King Executives. \r\n\r\nWhen the video concludes, Brian Markison comes to stage to drive home the message that everyone in the audience must work together to build a leadership and high performance culture, piece by piece. This will be a perfect segue into his discussion about objectives for 2007. \r\n\r\n__Proposed Video/Animated Elements:__\r\nAfter such a high-energy conference opening, VIVA proposes the creation of various video elements to help maintain high energy throughout the conference. We envision a few “major content” video, and several small “bumpers” or “vignettes” inserted between presenters. These video elements will help deliver thematic messages – and will be designed to preview or introduce content and dynamically introduce speakers.\r\n\r\nVIVA proposes a "Sports News Style” format for these videos and bumpers. Imagine the slick, branded look and feel of an ESPN news show. The set itself would incorporate King branding. Custom graphics on plasma display monitors will reinforce brand positioning. This approach incorporates a pre-taped “On-Camera Host” delivering scripted lines that introduce each conference sessions, presenters, and other core content. For example:\r\n\r\n__* Year in Review Video: (3-5 minutes) __\r\nThe “On-Camera Host” introduces the leading news story: King Pharmaceutical’s Year in Review. This upbeat, narrated package succinctly highlights King’s greatest successes in 2006. We envision incorporating pre-taped sound bytes from key “players” within the King organization. The piece would be post-produced with high-energy music, custom graphics and animations, and b-roll assets that support story points (b-roll to be provided by client, if possible). \r\n\r\n__* (5) Leadership Videos Vignettes (:30 second to 1 minute each)__\r\nTalking heads? No thanks. These motivational vignettes will highlight the five functions and ten practices of exemplary Leadership at King. These could be played between speakers or sessions to help create a common “language of leadership” for all in attendance. These videos will be produced in a crisp, clean style that can live beyond the conference - either as individual vignettes or linked together in a 3-5 minute leadership message video. This piece will also incorporate original graphics/animations, VO narration, and stock music.\r\n\r\n__* “Our Difference is You” Video (3-4 minutes)__\r\nWe envision that this video is the kick-off element of Day 2 or 3. This substantive, proud, and powerful piece will strengthen employee brand positioning, emphasizing the core message that King Pharmaceuticals’ greatest competitive advantage is its people and the creativity, discipline and personal commitment they bring to the business each day. A vital part of this video is actual sound bytes from King employees, talking about how they make a difference in patient’s lives, business relationships, and their communities. These interviews will be shot on-location at King’s offices in an engaging style. The video will use graphics, music, VO, and custom b-roll of King’s offices, products, and facilities to strengthen the power of the story. This piece will be able to stand on it’s own beyond the conference.\r\n\r\n\r\n\r\n\r\n\r\n__* Closing Video: (2-3 minutes)__\r\nAfter CEO call to action and tool-kit sendoff, we propose the inclusion of an on-site closing candids video as a tool to further inspire and motivate attendees. (also for web positing or distribution on DVD). The closing video will include on-site footage of conference attendees and what they experienced over the course of the event. It will be shot and edited in a way that shows energy and excitement, and highlights key content. At the finale, the video will recap the “Top 10 things” every attendee must do to build King’s future, be a leader, and drive performance. Pre-produced graphics will help powerfully deliver these messages. This video will be cut to a reprise of the original song from the opening act. \r\n\r\n__Interactivity:__\r\nAttendees will retain more conference information if presentations are kept interactive and engaging. To liven up content so that the audience stays engaged in the message, VIVA proposes inclusion of the below interactive technologies:\r\n\r\n__* Audience Response System:__\r\nAfter the energy of day one, it will be critical to maintain high interest during the EVP presentations on day 2. This content is vital, so we propose the addition of interactivity through individual audience response systems for each attendee. Not only does this technology demand interactivity, it also boosts message retention and delivers sophisticated data capture and polling abilities that could prove valuable to executive leadership. \r\n\r\nARS technology allows you to do live polling and quizzing of the audience, as well as game show applications. Many different result graphs can be immediately displayed, including bar charts, pencil graphs, and pie charts. ARS has capability for multiple choice questions, priority ranking applications that allow you to poll your audience to prioritize listings, and X-Y Mapping to assess multiple issues against multiple criteria with the results plotted on a scattergram. We could weave ARS throughout conference sessions – and the technology would prove particularly helpful on day 3 when you seek to codify conference lessons. \r\n\r\n__* Telestrator__\r\nAdditionally, presenters could make use of “sketchpad” technology, using a real time video telestrator that can be controlled with a drawing tablet or touch screen monitor. Using this tool, we can create live sporting event effects. For example, highlighting King’s key plays of 2006, showing penalties, key moments in execution, even highlighting audience members! \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nProposed Teambuilding Activities: \r\nAs discussed, the end of Day 1 presents a great opportunity for an interactive teambuilding activity to break the ice and set a tone of collaboration and teamwork for the remainder of the event. To support core messages and the conference theme, VIVA proposes the following teambuilding activities for consideration. These are but a small sampling of possible activities, and if none of these are appropriate we will be pleased to work with you to discover or create an activity to maximize your message.\r\n\r\nTinker Toy Triumph Tower:\r\nEmphasizing the importance of building teams to achieve high performance is the focus of this activity. Attendees divide into groups and are told to build the tallest possible structure out of the Tinker-toy sets they are provided. The catch is that after a 15 minute planning period, they only have 60 seconds to build – without any form of verbal communication! \r\n\r\nThrough the Uprights:\r\nThe weekend after this conference is the Super Bowl. With that in mind, another relevant team building activity challenges attendees to create a catapult with plastic spoons, springs, string, wood, connectors, and team decorations. The facilitator will explain that the catapult must propel a small plastic football through a set of goal posts in order to win the game. Teams will work together to create the machine that achieves the best performance. The team that communicates with each other and is able to utilize the best traits of their available resources will be victorious. The activity ends with a competition where the team whose catapult puts the ball through uprights from farthest away wins!\r\n\r\nRacecar Building:\r\nAs a real life metaphor for driving performance, consider an interactive experience in which attendees divide into groups and actually build their own racecars. Each group will receive a car-kit that includes: race instructions, tools, car components like wheels, PVC pipe, connectors, nuts & bolts, glue, heavy string, wood, tape, decorations, race uniforms, and more. A facilitator will give a brief activity overview and then release the teams to build their cars. Teams work together to figure out how to drive performance and gain the winning edge. Teamwork, innovation, problem solving, communication and leadership are critical to success. This 90-minute activity culminates in actual races between teams, and can be implemented in a ballroom setting. \r\n\r\nEvening Enhancement to Teambuilding:\r\nAlthough the evening dinners are intended to be a casual opportunity for guests to mix and mingle, these events also present another opportunity to reinforce messaging. Consider a brief (5-10 minute) wine tasting inspired by the property itself, in which a winemaker draws metaphors between cultivating grapes on a vineyard and cultivating leadership in your organization. This could be a tasteful way to keep the message at the forefront, even while attendees enjoy some relaxing social time.\r\n\r\n\r\nVIVA’s Production Services:\r\n\r\nPreproduction Management\r\nUpon receiving the green light from you to commence production, we will assign a project team to include a Senior Producer, Creative Director, Technical Director, and other skilled production personnel to match your needs. Our team will continually work by your side in a highly collaborative and creative process to meet and fulfill the goals of your event. With your team’s team input, we will begin the iterative process of set design until an exceptional set look is achieved. At this point, our staff will begin to implement a technical production plan, assemble optimum staff, create event schedules and timelines, and move into the production phase of your event. At all times, we will utilize our online FTP site to upload pictures and renderings of concepts in development for your team’s review. \r\n\r\nOn-Site Show Production\r\nWith the VIVA team in the director’s chair, your event will run with the seamless professionalism of a Broadway show. We provide only the most experienced staff to manage every detail of production from load-in to load-out. Our technical director will oversee every transition, every cue, and constantly monitor the pace and flow to make sure your production is flawless. In constant communication with the technical director, we utilize experienced stage managers to run rehearsals, assist presenters, and handle VIPs. This will ensure that speakers are where they are supposed to be at the right time. Together, our team will control what attendees see on the stage, as well as what goes on behind it. To assist in the flawless implementation of your program, our team of on-site Production and Technical Services crew will conduct daily “cue-to-cue” sessions, as a final “approval” on show flow and execution of each day’s program. We utilize a daily Project Cue Sheet to call the show— which is constantly updated throughout the on-site program to ensure the accuracy of all production and technical cues for each day’s events. \r\n\r\nThematic Graphics & Presentation Support:\r\nThe best events effectively execute a thematic graphic design that remains consistent through all visual media, including signage, name badges, conference materials, speaker PowerPoint slides, and more. To help King achieve powerful graphic unity, VIVA will be pleased to deliver graphics support services where needed and appropriate. Our team prides itself in offering unparalleled speaker support. After all, it is the message of your presenters that your audience has gathered to hear. Our award-winning graphic artists create compelling and powerful Theme Graphics and Speaker Support Graphics. Whether working from your speakers\' supplied slides, or creating completely original graphics to your specifications, our graphics professionals will add a visual edge to what your audience sees on screen. Moreover, we will provide a seasoned graphic artist/operator on-site. This way we are always prepared to produce, edit, and modify images and presentations on-site at the last minute. \r\n\r\nProfessional Speaker Support\r\nFor events such as this, To assist speakers and minimize chances for technical glitches, we will provide laser pointers, speaker timers, wired cue lights, and a wireless cue system that allows presenters to advance PowerPoint slides with the touch of a button. We will work with you to develop final theme graphics and then carry it through in every aspect of the meeting (video modules, graphic animation, signage, etc.) We look forward to working closely with you to arrive at the exact look you wish to achieve for the full range of your creative elements. VIVA proposed to record professional VOG introductions for all presenters to be played in concert with a walk-up/walk-out music sting. This adds to the professionalism, keeps the pace moving, and present confusion onstage. Also, we provide speaker timers and teleprompter support for those who want it.\r\n\r\n\r\nOriginal Song Composition & Other Audio Element \r\nOur team will produce and mix your custom music, sound effects, and other "audio elements" in our state-of-the-art digital audio production suite. We collaborate with you during pre-production on selection, refinements, and placement of audio elements within the meeting. All audio cues are then programmed for instant audio playback on demand during the General Sessions. Computerized cues can then be accessed either as planned, or "out of order" in case of last minute reshuffling of Conference speakers or impromptu on-stage appearances. Speaker Introductions will also be pre-recorded, mixed with music stings, and programmed accordingly after your review and approval. These audio elements will be synched with onscreen visuals of each upcoming speaker, to create a most impressive audio-visual introduction for your executive presenters. \r\n\r\n\r\n\r\n Preliminary Budget Estimate** \r\n\r\nThis budget is an estimate based on services outlined in this proposal. However, we can work with you to adjust the budget/services to meet your budget parameters. \r\n1) Pre-Production $5,520\r\n Coordination\r\n Planning\r\n Site Survey\r\n\r\n2) Graphic Pre-Production $4,000\r\n Design (Signage, PowerPoint, Etc.)\r\n Room CAD Layouts\r\n Screen Graphics Design\r\n Stage Set Design\r\n\r\n3) On-Site Production $18,825\r\n Event Project Manager / Overall On-Site Producer\r\n Technical Director\r\n Production Manager\r\n Expendables & Supplies\r\n Computers\r\n\r\n4) On-Site Graphics Support $4,000\r\n Graphics Designer / Operator\r\n Presentation Computers\r\n Supplies\r\n\r\n5) Estimated Travel $5,000\r\n Airfare\r\n Per Diem\r\n Tips, Misc. (Hotel Rooms provided by client)\r\n\r\n TOTAL……………………………………………….…. $37,345\r\n\r\nVIDEO PRODUCTION OPTIONS\r\n\r\n7) Opening Video $15,290\r\n Creative / Scripting\r\n Post Production\r\n Graphics\r\n (All footage provided by client)\r\n\r\n7) Year-In-Review Video $15,290\r\n Creative / Scripting\r\n Post Production\r\n Graphics\r\n (All footage provided by client)\r\n \r\n8) Closing Video $17,400\r\n Producer/DP (On-Site x 5 days)\r\n Editor / Producer & Edit Suite (x 5days)\r\n Animations\r\n Writing / Creative Design\r\n\r\n\r\nBUDGET ESTIMATE – AUDIO/VISUAL/SET/LIGHTING: (CENTENNIAL I-III)\r\n\r\n1) Set $19,000\r\n Customized Stage Set Rental\r\n Pipe & Drape\r\n Customized Podium Rentals\r\n Misc. Soft Goods\r\n \r\n2) Sound System $7,731\r\n Line Array Speaker System\r\n FOH Control Rack\r\n FOH Audio Console\r\n Podium Mics\r\n Wireless Mics (x6)\r\n Misc. Cables, Power Ditro, Expendables\r\n3) Lighting System $11,297\r\n 40 Convention Lights (500W)\r\n 24 Intelligent Lights\r\n Dimmers\r\n Lighting Console\r\n Trussing\r\n Rigging\r\n Custom Gobos\r\n Power Distribution\r\n \r\n4) Video System $15,873\r\n Four 12’x16’ FP Screens\r\n Four 10,000 lumen DLP Projectors\r\n Rigging\r\n Hi-Resolution Video Switch Rack\r\n Cables, Expendables\r\n (CAMERAS PROVIDED BY CLIENT)\r\n \r\n5) Estimated Hotel Expenses $14,000\r\n Room Lighting Remote\r\n Scissor Lift\r\n Electrical Service\r\n Rigging Points\r\n Chain Motors & Control\r\n Required Staff\r\n Security\r\n Riggers\r\n \r\n5) Estimated AV Labor $22,262\r\n Audio Engineer\r\n Audio Assistant\r\n Video Engineer\r\n Lighting Designer / Director\r\n\r\n\r\n\r\n\r\n TOTAL……………………………………………..…. $90,163\r\nBUDGET ESTIMATE – AUDIO/VISUAL/SET/LIGHTING: (CENTENNIAL IV)\r\n\r\n1) Set …………………………………………………………………………. $5,000\r\n Customized Stage Set Rental\r\n Pipe & Drape\r\n Customized Podium Rentals\r\n Misc. Soft Goods\r\n \r\n2) Sound System $4,862\r\n Line Array Speaker System\r\n FOH Control Rack\r\n FOH Audio Console\r\n Podium Mics\r\n Wireless Mics (x6)\r\n Misc. Cables, Power Ditro, Expendables\r\n \r\n3) Lighting System $7,377\r\n 32 Convention Lights (500W)\r\n 16 Intelligent Lights\r\n Dimmers\r\n Lighting Console\r\n Trussing\r\n Rigging\r\n Custom Gobos\r\n Power Distribution\r\n \r\n4) Video System $6,169\r\n Two 10.5’x14’ FP Screens\r\n Two 10,000 lumen DLP Projectors\r\n Rigging\r\n Hi-Resolution Video Switcher\r\n Cables, Expendables\r\n (CAMERAS PROVIDED BY CLIENT)\r\n5) Estimated Hotel Expenses $11,000\r\n Room Lighting Remote\r\n Scissor Lift\r\n Electrical Service\r\n Rigging Points\r\n Chain Motors & Control\r\n Required Staff\r\n Security\r\n Riggers\r\n \r\n5) Estimated AV Labor $10,400\r\n Audio Engineer\r\n Audio Assistant\r\n Video Engineer\r\n Lighting Designer / Director\r\n\r\n\r\n\r\nPage 1 of 11\r\n\r\n'),('King Pharmaceuticals Leadership 24 Jan 07',4,0,1165417844,'','birey','66.80.242.3','','((Creative Proposal 1 Dec 06))\r\n((Production Phone Conference 4 Dec 06))\r\n((Proposal Phone Conference 4 Dec 06))\r\n((Creative Proposal 5 Dec 06))'),('King Pharmaceuticals Leadership 24 Jan 07',5,0,1165418954,'','birey','66.80.242.3','','((Creative Proposal 1 Dec 06))\r\n((Production Phone Conference 4 Dec 06))\r\n((Proposal Phone Conference 4 Dec 06))\r\n((Creative Proposal 5 Dec 06))\r\n((Preliminary Budget Estimate 6 Dec 06))'),('King Pharmaceuticals Leadership 24 Jan 07',6,0,1165421505,'','birey','66.80.242.3','','((Creative Proposal 1 Dec 06|Inital Creative Proposal Submitted to Client))\r\n((Production Phone Conference 4 Dec 06|Notes regarding a/v production elements))\r\n((Proposal Phone Conference 4 Dec 06|Client feedback notes for Creative Proposal 1))\r\n((Creative Proposal 5 Dec 06|Revised Creative Proposal per client feedback))\r\n((Preliminary Budget Estimate 6 Dec 06|Itemized budget corresponding to production elements proposed in Creative Proposal 2))'),('HomePage',13,0,1165270467,'','admin','66.80.242.3','','(:mrgreen:) VIVA Productions Wiki \r\n\r\n(:rolleyes:) ((Production Team Status))\r\n\r\n(:cool:) ((Projects)) \r\n\r\n(:idea:) ((Operations))'),('Compression Best Practices',1,0,1165606337,'','smackey','66.80.242.3','','These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Chapter markers in Final Cut Pro (FCP)\r\n**Are frame-specific, which is an advantage over creating them in DVD Studio Pro because they would NOT be frame-specific\r\n*Out points - don\'t use the last frame, but rather insert a black slug to avoid compression artifacts at the end\r\n*Upon export, uncheck "Self-contained" and you will be creating a reference movie\r\n*MPEG2 = Standard DVD \r\n*DV format\r\n**DV is compressed during acquisition at a 5:1 ratio which is comparable to BetaCam SP\r\n**This can cause trouble with keys due to the excessive color info lost during the DV acquisition compression\r\n**Look at DV Garage, a $99 plugin from DV Map Blast which is a great keyer because it also looks at luminance information\r\n**Also look at FX Factory, which is a cost-effective keying and effects plug-in\r\n*All sources are subject to the global compression settings upon sequence import\r\n**Change sequence settings to "Animation" or "Uncompressed" which are lossless and therefore highest quality\r\n\r\n*"Export to Compressor" \r\n**Doesn\'t require rendering but sends source files and info\r\n**Use when you are integrating graphics etc. that way the compressor is using the original source files and not already-compressed files from the sequence\r\n*VBR = Variable Bit Rate encoder and can be 1-pass or 2-pass\r\n\r\n*Format vs. CODEC\r\n**Quicktime is an architecture i.e. an .MOV file is a format (container) and the codec is MP4, H.264 etc.\r\n**Similarly in graphics, a .PCT file is the container and .PNG is the codec\r\n\r\n*Quicktime 6 is usually MP4 and Quicktime 7 is usually H.264\r\n**MP4 actually refers to MPEG4 video part 2\r\n**H.264 actually refers to MPEG4 video part 10\r\n**H.264 offers the same quality at a much lower data rate but is much slower encoding due to extra processing\r\n\r\n*.RAW is a format\r\n\r\n*Audio\r\n**Dolby digital is much smaller than AIFF which gives you more room for video storage, thus you can use higher video bitrates by using the dolby file rather than the AIFF\r\n**You should keep the AIFF file anyway though because you may need to do additional edits\r\n\r\n*A compressor is actually "transcoding" not "encoding" because it is changing information from one type to another, however most people refer to compression as encoding\r\n*Enabling "Gamma Correction" in the filter may washout Mac viewing a but but will enhance PC viewing due to the differences in gamma settings between the two platforms\r\n\r\n*NEVER scale, only crop - the compressor actually creates 720x486 thus you need to crop 6 lines from the horizontal. \r\n**Do not use a 3/3 crop, rather 4/2, 2/4, or 0/6 if you can lose the six lines from the bottom\r\n\r\n*Store compression settings as a droplet, that way you don\'t have to launch compressor you can just use the droplet\r\n*Check out the Brian Gary book on the Apple Pro Training Series'),('Video',1,0,1165605243,'','smackey','66.80.242.3','','((Compression Best Practices))\r\nSummary:\r\nThis is a summary from the 2006 DV Expo Class\r\n\r\n((Soundtrack Pro Primer))\r\nSummary:\r\nThis is a summary from the 2006 DV Expo Class\r\n\r\n'),('Video',2,0,1165606581,'','smackey','66.80.242.3','','__((Compression Best Practices))__\r\nSummary:\r\nThis is a summary from the 2006 DV Expo Class\r\n\r\n\r\n'),('Compression Best Practices',2,0,1165606514,'','smackey','66.80.242.3','','These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Chapter markers in Final Cut Pro (FCP)\r\n**Are frame-specific, which is an advantage over creating them in DVD Studio Pro because they would NOT be frame-specific\r\n**Uses XML files to track placements\r\n*Out points - don\'t use the last frame, but rather insert a black slug to avoid compression artifacts at the end\r\n*Upon export, uncheck "Self-contained" and you will be creating a reference movie\r\n*MPEG2 = Standard DVD \r\n*DV format\r\n**DV is compressed during acquisition at a 5:1 ratio which is comparable to BetaCam SP\r\n**This can cause trouble with keys due to the excessive color info lost during the DV acquisition compression\r\n**Look at DV Garage, a $99 plugin from DV Map Blast which is a great keyer because it also looks at luminance information\r\n**Also look at FX Factory, which is a cost-effective keying and effects plug-in\r\n*All sources are subject to the global compression settings upon sequence import\r\n**Change sequence settings to "Animation" or "Uncompressed" which are lossless and therefore highest quality\r\n\r\n*"Export to Compressor" \r\n**Doesn\'t require rendering but sends source files and info\r\n**Use when you are integrating graphics etc. that way the compressor is using the original source files and not already-compressed files from the sequence\r\n*VBR = Variable Bit Rate encoder and can be 1-pass or 2-pass\r\n\r\n*Format vs. CODEC\r\n**Quicktime is an architecture i.e. an .MOV file is a format (container) and the codec is MP4, H.264 etc.\r\n**Similarly in graphics, a .PCT file is the container and .PNG is the codec\r\n\r\n*Quicktime 6 is usually MP4 and Quicktime 7 is usually H.264\r\n**MP4 actually refers to MPEG4 video part 2\r\n**H.264 actually refers to MPEG4 video part 10\r\n**H.264 offers the same quality at a much lower data rate but is much slower encoding due to extra processing\r\n\r\n*.RAW is a format\r\n\r\n*Audio\r\n**Dolby digital is much smaller than AIFF which gives you more room for video storage, thus you can use higher video bitrates by using the dolby file rather than the AIFF\r\n**You should keep the AIFF file anyway though because you may need to do additional edits\r\n\r\n*A compressor is actually "transcoding" not "encoding" because it is changing information from one type to another, however most people refer to compression as encoding\r\n*Enabling "Gamma Correction" in the filter may washout Mac viewing a but but will enhance PC viewing due to the differences in gamma settings between the two platforms\r\n\r\n*NEVER scale, only crop - the compressor actually creates 720x486 thus you need to crop 6 lines from the horizontal. \r\n**Do not use a 3/3 crop, rather 4/2, 2/4, or 0/6 if you can lose the six lines from the bottom\r\n\r\n*Store compression settings as a droplet, that way you don\'t have to launch compressor you can just use the droplet\r\n*Check out the Brian Gary book on the Apple Pro Training Series'),('Compression Best Practices',3,0,1165607025,'','smackey','66.80.242.3','','These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Chapter markers in Final Cut Pro (FCP)\r\n**(:arrow:) Are frame-specific, which is an advantage over creating them in DVD Studio Pro because they would NOT be frame-specific\r\n**Uses XML files to track placements\r\n*(:arrow:) Out points - don\'t use the last frame, but rather insert a black slug to avoid compression artifacts at the end\r\n*Upon export, uncheck "Self-contained" and you will be creating a reference movie\r\n*MPEG2 = Standard DVD \r\n*DV format\r\n**DV is compressed during acquisition at a 5:1 ratio which is comparable to BetaCam SP\r\n**This can cause trouble with keys due to the excessive color info lost during the DV acquisition compression\r\n**Look at DV Garage, a $99 plugin from DV Map Blast which is a great keyer because it also looks at luminance information\r\n**Also look at FX Factory, which is a cost-effective keying and effects plug-in\r\n*All sources are subject to the global compression settings upon sequence import\r\n**(:arrow:) Change sequence settings to "Animation" or "Uncompressed" which are lossless and therefore highest quality\r\n\r\n*"Export to Compressor" \r\n**Doesn\'t require rendering but sends source files and info\r\n**Use when you are integrating graphics etc. that way the compressor is using the original source files and not already-compressed files from the sequence\r\n*VBR = Variable Bit Rate encoder and can be 1-pass or 2-pass\r\n\r\n*Format vs. CODEC\r\n**Quicktime is an architecture i.e. an .MOV file is a format (container) and the codec is MP4, H.264 etc.\r\n**Similarly in graphics, a .PCT file is the container and .PNG is the codec\r\n\r\n*Quicktime 6 is usually MP4 and Quicktime 7 is usually H.264\r\n**MP4 actually refers to MPEG4 video part 2\r\n**H.264 actually refers to MPEG4 video part 10\r\n**H.264 offers the same quality at a much lower data rate but is much slower encoding due to extra processing\r\n\r\n*.RAW is a format\r\n\r\n*Audio\r\n**Dolby digital is much smaller than AIFF which gives you more room for video storage, thus you can use higher video bitrates by using the dolby file rather than the AIFF\r\n**You should keep the AIFF file anyway though because you may need to do additional edits\r\n\r\n*A compressor is actually "transcoding" not "encoding" because it is changing information from one type to another, however most people refer to compression as encoding\r\n*(:arrow:) Enabling "Gamma Correction" in the filter may washout Mac viewing a but but will enhance PC viewing due to the differences in gamma settings between the two platforms\r\n\r\n*(:arrow:) NEVER scale, only crop - the compressor actually creates 720x486 thus you need to crop 6 lines from the horizontal. \r\n**Do not use a 3/3 crop, rather 4/2, 2/4, or 0/6 if you can lose the six lines from the bottom\r\n\r\n*Store compression settings as a droplet, that way you don\'t have to launch compressor you can just use the droplet\r\n*Check out the Brian Gary book on the Apple Pro Training Series'),('Soundtrack Pro Primer',1,0,1165607725,'','smackey','66.80.242.3','','These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Look into DVD Training Series on Soundtrack Pro (STP)\r\n*Use STP for VO work w/ exported video from FCP\r\n*LogicPro - typically more recording engineer-intensive\r\n*GarageBand - used for loop editing\r\n\r\n__Soundtrack Pro__\r\n*Two parts - multitrack and waveform editor\r\n*As with all Apple applications it has moved to a non-destructive editing methodology\r\n*Create an "audio file project" which is XML information layered on top of the source\r\n*(:arrow:) When working in the waveform editor, check the end of the cut point to ensure you don\'t cut off any newly-added reverb tails\r\n*You can move audio effect up and down like layers in a graphics program to audition differences\r\n\r\n __Waveform Editing__\r\n*Creating Silence\r\n**(:arrow:) Adjust selection to "Zero Crossing" (outward)\r\n**(:arrow:) Usually not practical, so rather replace a pop/click with room tone\r\n*Set ambient nose print\r\n**Add ambient noise to cover pops\r\n*"Previous" button recalls former selections so you don\'t have to guess about previous in/out points\r\n\r\n(:exclaim:) Record room tone at the end of a shoot so you have proper ambience for subsequent sound design\r\n\r\n*Spectrum View - An FFT view of the waveform\r\n**Analysis Tool\r\n***First isolate the issue\r\n***Don\'t use "Clipped Signal" since it doesn\'t have a fix - use "Pops/Clicks"\r\n\r\n*Hum/noise fixing\r\n**(:arrow:) First adjust for Zero Cross\r\n**Process / Noise Print\r\n**Process / Reduce Noise\r\n**(:exclaim:) Fix hum/noise early in the main audio track before cutting, otherwise you have to fix multiple smaller files\r\n\r\n*Multitrack\r\n**Use busses to combine tracks for FX\r\n**Look into Mackie control surface, which can be used for automating mixes\r\n**'),('Production Team Status',11,0,1154695214,'','admin','66.80.242.3','','-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__MED Week__\r\nContinuing work on booth signage\r\n\r\n__AIPAC__\r\nCompleted additional stage concepts and presented to Jeremy. Designs were rejected due to being "too jewy" (:eek:) Work continues on creating additional designs.\r\n\r\n-=Event Production=-\r\n\r\n__AOL 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity \r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16 - Lorne/Steve attending\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__MED Week__'),('Production Team Status',12,0,1165865198,'','smackey','66.80.242.3','','-=Status for the Week of 27-Nov-2006=-\r\n\r\n-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__Avaya__\r\n*YIR video – delivered\r\n*Advisory – done/billed\r\n*EMEA – in revisions\r\n*Corporate video\r\n**Deliver elements\r\n**Modular, reusable pieces that can go in PPTs etc.\r\n*Customer case study video opportunities (from RGA)\r\n*Mashima Video Edit – awaiting Julie input\r\n*Law montage – done and shipped\r\n*Guy Clinch video – got a verbal from Guy\r\n*World Economic Forum video\r\n**VO today\r\n**Will be able to preview on Thursday\r\n*Achiever’s Club – 28-Feb\r\n\r\n__AIPAC__\r\n*Need brainstorming on video imagery for 2007 Policy Conference\r\n\r\n-=Event Production=-\r\n\r\n__AOL 3-August__\r\nUploaded segmented .WMV file. Received stats report from Roger.\r\n\r\n__MED Week__\r\nCompleted draft of hotel AV requirements.\r\n\r\n__AIPAC__\r\nNo activity \r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16 - Lorne/Steve attending\r\n\r\n__GE Healthcare - Cancun__\r\nCreated test Wiki to demonstrate collaborative Web capabilities. \r\n\r\n-=Event Planning=-\r\n\r\n__NOAA__\r\n*ESA – Wyndham, should sign contract today\r\n*Int’l GC – can invoice\r\n*SES – can invoice'),('Video',3,0,1165606598,'','smackey','66.80.242.3','','__((Compression Best Practices))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n\r\n\r\n'),('Video',4,0,1166040874,'','jzastrow','66.80.242.3','','__((Compression Best Practices))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n\r\n__((Julie\'s Production Tips))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n'),('Video',5,0,1166040897,'','jzastrow','66.80.242.3','','__((Compression Best Practices))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n\r\n((Julie\'s Production Tips))\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n'),('Video',6,0,1166040919,'','jzastrow','66.80.242.3','','__((Compression Best Practices))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n\r\n((Julie\'\'s Production Tips))\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n'),('Compression Best Practices',4,0,1165607057,'','smackey','66.80.242.3','','These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Chapter markers in Final Cut Pro (FCP)\r\n**(:arrow:) Are frame-specific, which is an advantage over creating them in DVD Studio Pro because they would NOT be frame-specific\r\n**Uses XML files to track placements\r\n*(:arrow:) Out points - don\'t use the last frame, but rather insert a black slug to avoid compression artifacts at the end\r\n*Upon export, uncheck "Self-contained" and you will be creating a reference movie\r\n*MPEG2 = Standard DVD \r\n*DV format\r\n**DV is compressed during acquisition at a 5:1 ratio which is comparable to BetaCam SP\r\n**This can cause trouble with keys due to the excessive color info lost during the DV acquisition compression\r\n**Look at DV Garage, a $99 plugin from DV Map Blast which is a great keyer because it also looks at luminance information\r\n**Also look at FX Factory, which is a cost-effective keying and effects plug-in\r\n*All sources are subject to the global compression settings upon sequence import\r\n**(:arrow:) Change sequence settings to "Animation" or "Uncompressed" which are lossless and therefore highest quality\r\n\r\n*"Export to Compressor" \r\n**Doesn\'t require rendering but sends source files and info\r\n**Use when you are integrating graphics etc. that way the compressor is using the original source files and not already-compressed files from the sequence\r\n*VBR = Variable Bit Rate encoder and can be 1-pass or 2-pass\r\n\r\n*Format vs. CODEC\r\n**Quicktime is an architecture i.e. an .MOV file is a format (container) and the codec is MP4, H.264 etc.\r\n**Similarly in graphics, a .PCT file is the container and .PNG is the codec\r\n\r\n*Quicktime 6 is usually MP4 and Quicktime 7 is usually H.264\r\n**MP4 actually refers to MPEG4 video part 2\r\n**H.264 actually refers to MPEG4 video part 10\r\n**H.264 offers the same quality at a much lower data rate but is much slower encoding due to extra processing\r\n\r\n*.RAW is a format\r\n\r\n*Audio\r\n**Dolby digital is much smaller than AIFF which gives you more room for video storage, thus you can use higher video bitrates by using the dolby file rather than the AIFF\r\n**(:arrow:) You should keep the AIFF file anyway though because you may need to do additional edits\r\n\r\n*A compressor is actually "transcoding" not "encoding" because it is changing information from one type to another, however most people refer to compression as encoding\r\n*(:arrow:) Enabling "Gamma Correction" in the filter may washout Mac viewing a but but will enhance PC viewing due to the differences in gamma settings between the two platforms\r\n\r\n*(:arrow:) NEVER scale, only crop - the compressor actually creates 720x486 thus you need to crop 6 lines from the horizontal. \r\n**Do not use a 3/3 crop, rather 4/2, 2/4, or 0/6 if you can lose the six lines from the bottom\r\n\r\n*Store compression settings as a droplet, that way you don\'t have to launch compressor you can just use the droplet\r\n*Check out the Brian Gary book on the Apple Pro Training Series'),('Production Team Status',13,0,1165866140,'','smackey','66.80.242.3','','-=Status for the Week of 27-Nov-2006=-\r\n\r\n-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__Avaya__\r\n*YIR video – delivered\r\n*Advisory – done/billed\r\n*EMEA – in revisions\r\n*Corporate video\r\n**Deliver elements\r\n**Modular, reusable pieces that can go in PPTs etc.\r\n*Customer case study video opportunities (from RGA)\r\n*Mashima Video Edit – awaiting Julie input\r\n*Law montage – done and shipped\r\n*Guy Clinch video – got a verbal from Guy\r\n*World Economic Forum video\r\n**VO today\r\n**Will be able to preview on Thursday\r\n*Achiever’s Club – 28-Feb\r\n\r\n__AIPAC__\r\n*Need brainstorming on video imagery for 2007 Policy Conference\r\n\r\n__Waitex__\r\n*Just need to add graphics, titles and opening animation\r\n**Manfred to monitor capabilities and advise on need for help\r\n\r\n-=Graphic Design=-\r\n\r\n__Avaya__\r\n*PPT Template and Standards\r\n**Create a brand book for PPT presentations\r\n**Monthly retainer for X slides and brand book\r\n**Operations process\r\n*8-Dec Meeting with RGA and Satchi/Satchi\r\n\r\n-=Event Production=-\r\n\r\n__Aegis__\r\n*Floorplan revised to 260\r\n*Lorne to work on proposal\r\n*Steve/Rich/Lorne to work on AV RFPs\r\n\r\n__AIPAC__\r\n*Work on getting some rough numbers together (Rich)\r\n*Creative ideas (Lorne/Steve)\r\n**Stealth curtains\r\n**Video imagery\r\n*Meeting will center on production processes\r\n\r\n__AOL__\r\n*TimeWarner Meeting\r\n**Cancelled\r\n**AOL will not participate\r\n*AOL Holiday Party\r\n**Is happening 16-Dec\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16 - Lorne/Steve attending\r\n\r\n__CLT__\r\n*Lorne to call today\r\n\r\n__GE Healthcare - Cancun__\r\n*Cancelled\r\n\r\n__Novartis__\r\n*Need to do Webcast extension for November and December\r\n\r\n__Oxman__\r\n*7-December, Load-in on 6th\r\n*Warehouse / artist / photography studio\r\n*VTG makes sense?\r\n\r\n-=Event Planning=-\r\n\r\n__NOAA__\r\n*ESA – Wyndham, should sign contract today\r\n*Int’l GC – can invoice\r\n*SES – can invoice\r\n\r\n-=Internal=-\r\n*Organization\r\n**Physical\r\n**Server'),('Production Team Status',14,0,1166460652,'','smackey','66.80.242.3','','-=Status for the Week of 27-Nov-2006=-\r\n\r\n-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__Avaya__\r\n*YIR video – delivered\r\n*Advisory – done/billed\r\n*EMEA – in revisions\r\n*Corporate video\r\n**Deliver elements\r\n**Modular, reusable pieces that can go in PPTs etc.\r\n*Customer case study video opportunities (from RGA)\r\n*Mashima Video Edit – awaiting Julie input\r\n*Law montage – done and shipped\r\n*Guy Clinch video – got a verbal from Guy\r\n*World Economic Forum video\r\n**VO today\r\n**Will be able to preview on Thursday\r\n*Achiever’s Club – 28-Feb\r\n\r\n__AIPAC__\r\n*Need brainstorming on video imagery for 2007 Policy Conference\r\n\r\n__Hughes__\r\n* Proposal sent for corporate video update\r\n\r\n__Waitex__\r\n*Just need to add graphics, titles and opening animation\r\n**Manfred to monitor capabilities and advise on need for help\r\n\r\n-=Graphic Design=-\r\n\r\n__Avaya__\r\n* Year in Review \r\n** Tom (8 hours)\r\n** VOGs and scripting changes\r\n* Guy Clinch \r\n** Budget approved\r\n** Julie/Emily beginning work on script\r\n* Mashima video\r\n** No activity\r\n** Manfred improvising with flattened files\r\n* Avaya Law photo montage\r\n** Requesting 80 copies\r\n** Work with Ben to figure out a machine to use for making dubs \r\n\r\n-=Event Production=-\r\n\r\n__Aegis__\r\n*Floorplan revised to 260\r\n*Lorne to work on proposal\r\n*Steve/Rich/Lorne to work on AV RFPs\r\n\r\n__AIPAC__\r\n* Need to create renderings for the room (Manfred)\r\n* Budget for the ballroom (Rich)\r\n** AV (better audio w/ delays)\r\n\r\n__AOL__\r\n*TimeWarner Meeting\r\n**Cancelled\r\n**AOL will not participate\r\n*AOL Holiday Party\r\n**Is happening 16-Dec\r\n\r\n__AVAYA__\r\nPreparing for site survey in New Orleans August 15-16 - Lorne/Steve attending\r\n\r\n__CLT__\r\n* Owe today a Webcast proposal (Lorne)\r\n\r\n__GE Healthcare - Cancun__\r\n*Cancelled\r\n\r\n__King Pharmaceuticals__\r\n* Emily got call from Terry - sounds like "Difference is You" video is on, Janet wants it to be the opening video for the event\r\n* Conference call with Adrian and Janet at 3 PM\r\n\r\n__Novartis__\r\n*Need to do Webcast extension for November and December\r\n\r\n__Oxman__\r\n* Loads in Wed, gig is Thursday\r\n* Need production schedule (Rich) working with VTG\r\n* Might need labor lined up\r\n* Gobos have been sent off\r\n\r\n-=Event Planning=-\r\n\r\n__NOAA__\r\n*ESA 1/24-1/26 – Wyndham, should sign contract today\r\n*Int’l GC 1/31-2/1 – can invoice\r\n*SES 2/22 – can invoice\r\n\r\n-=Business Development=-\r\n\r\n__MBDA__\r\n* Sponsorship proposal decision should come in today\r\n\r\n-=Internal=-\r\n*Organization\r\n**Physical\r\n**Server\r\n*Web site\r\n**Creative meetings ongoing'),('Production Team Status',15,0,1166460954,'','smackey','66.80.242.3','','-=Status for the Week of 4-Dec-2006=-\r\n\r\n-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\nAVAYA Sales Conference Concepts - 7-Aug in NJ\r\n\r\n-=Post Production=-\r\n\r\n__Avaya__\r\n*YIR video – delivered\r\n*Advisory – done/billed\r\n*EMEA – in revisions\r\n*Corporate video\r\n**Deliver elements\r\n**Modular, reusable pieces that can go in PPTs etc.\r\n*Customer case study video opportunities (from RGA)\r\n*Mashima Video Edit – awaiting Julie input\r\n*Law montage – done and shipped\r\n*Guy Clinch video – got a verbal from Guy\r\n*World Economic Forum video\r\n**VO today\r\n**Will be able to preview on Thursday\r\n*Achiever’s Club – 28-Feb\r\n\r\n__AIPAC__\r\n*Need brainstorming on video imagery for 2007 Policy Conference\r\n\r\n__Hughes__\r\n* Proposal sent for corporate video update\r\n\r\n__Waitex__\r\n*Just need to add graphics, titles and opening animation\r\n**Manfred to monitor capabilities and advise on need for help\r\n\r\n-=Graphic Design=-\r\n\r\n__Avaya__\r\n* Year in Review \r\n** Tom (8 hours)\r\n** VOGs and scripting changes\r\n* Guy Clinch \r\n** Budget approved\r\n** Julie/Emily beginning work on script\r\n* Mashima video\r\n** No activity\r\n** Manfred improvising with flattened files\r\n* Avaya Law photo montage\r\n** Requesting 80 copies\r\n** Work with Ben to figure out a machine to use for making dubs \r\n\r\n-=Event Production=-\r\n\r\n__Aegis__\r\n* Murray working onsite in LA (Rich to follow up for return shipping)\r\n* LA proposal delivered\r\n* 2008 Hong Kong venues\r\n\r\n__AIPAC__\r\n* Need to create renderings for the room (Manfred)\r\n* Budget for the ballroom (Rich)\r\n** AV (better audio w/ delays)\r\n\r\n__AOL__\r\n*No activity\r\n\r\n__AVAYA__\r\n*No activity\r\n\r\n__CLT__\r\n* Owe today a Webcast proposal (Lorne)\r\n\r\n__GE Healthcare - Cancun__\r\n*No activity\r\n\r\n__King Pharmaceuticals__\r\n* Emily got call from Terry - sounds like "Difference is You" video is on, Janet wants it to be the opening video for the event\r\n* Conference call with Adrian and Janet at 3 PM\r\n\r\n__Novartis__\r\n*Need to do Webcast extension for November and December\r\n\r\n__Oxman__\r\n* Loads in Wed, gig is Thursday\r\n* Need production schedule (Rich) working with VTG\r\n* Might need labor lined up\r\n* Gobos have been sent off\r\n\r\n-=Event Planning=-\r\n\r\n__NOAA__\r\n*ESA 1/24-1/26 – Wyndham, should sign contract today\r\n*Int’l GC 1/31-2/1 – can invoice\r\n*SES 2/22 – can invoice\r\n\r\n-=Business Development=-\r\n\r\n__MBDA__\r\n* Sponsorship proposal decision should come in today\r\n\r\n-=Internal=-\r\n\r\n__Organization__\r\n*Notebooks - Ben\r\n*Server\r\n*Drives - Tom\r\n\r\n__Web site__\r\n*Creative meetings ongoing\r\n\r\n__Freelance Portal__\r\n* Julie leading, Steve to oversee technical implementation\r\n\r\n__Office Remodeling__\r\n* Starting soon, will be challenging over the next few weeks'),('Operations',1,0,1165270483,'','admin','66.80.242.3','','((Checklists))'),('Active',1,0,1165268276,'','admin','66.80.242.3','','((King Pharmaceuticals Leadership 24 Jan 07))'),('Completed',1,0,1165270399,'','admin','66.80.242.3','','((AVAYA Sales Conference))'),('30 Jan',1,0,1170266806,'','smackey','66.80.242.3','','-=Status Meeting Notes=-\r\n*Previous show ends at 6 PM – out by midnight – cleaning until 5 AM\r\n*Load-in rough schedule\r\n**TH 5 AM carpet, then lighting rigging audio staging set\r\n**FR – continue load-in, programming\r\n**SA – tweaking, rehearsals, tables done in the AM (starting at 7 AM)\r\n*Casey from AIPAC owns dock assignments, starting with last year’s plan\r\n*Catering takes two docks on left, one by dumpster used for daily deliveries\r\n*Hargrove in first for carpet, scenic load-in\r\n*OK on staging count? Yes according to in-house\r\n*LED and plasmas coming in Saturday\r\n*We advised Fri/Sat night will be dark and no work lights for linen drops\r\n**All linens going down Saturday (not enough time b/n sessions)\r\n*Home and Garden show in building 8-11 – moving out on 12th\r\n**Will be draping according to flow from Metro\r\n**They are downstairs – no noise issues\r\n*Courtney doing table numbers this year – need to vet current floor plans\r\n*Perimeter storage areas etc. are same as last year\r\n**Will have live camera and additional lighting behind stage for video production\r\n**AV boneyard may be an issue for fire marshall – must go all the way down against wall – can NOT block glass doors\r\n**Jog carpet around backstage\r\n**Need to tape out and label each area\r\n*Reserve seating section in center of D&E (64 seats)\r\n*Assisted listening area successful last year – need to follow up on who provided this system last year\r\n*Bring people in through back of room\r\n*Smaller LED over entrance of Hall E – issues with cable runs needs investigated\r\n*Students in periphery\r\n*Lighting in room enhanced to cover aisles, but will not provide aisle specials\r\n*Security will be tight – US govt and Israeli dignitaries\r\n**Sweep starts 7 AM Saturday morning in D&E (done by 8 AM) docks, works across street\r\n**Also installing walk-thru magnetometers – hot at 12 PM\r\n**After sweep security will be in place for the duration\r\n**Need to provide names by Feb 10th\r\n**Command post room 247\r\n**Issuing credentials on Wed in room 102B\r\n**Security will be in place in D&E starting Thursday night\r\n**Anticipate having demonstrators – will keep them in their place\r\n**Will have a police commander on site the entire time\r\n*Need to provide radio request\r\n*Need to provide meal request\r\n*Need to provide security requirements\r\n*Need to provide IT requests\r\n*Need to provide room request\r\n*Staff crew meals – 103A\r\n*Conference operations – 102B\r\n*Production crew meals will be served in rear of D&E\r\n*Need to provide large plans for fire marshal – have scale at office\r\n*Table diagram comes from Courtney – then we add in to our floor/rigging plan\r\n*\r\n\r\n-=Weekly Assignments=-\r\nRich:\r\n*Update production schedule to 5AM Thursday carpet load-in\r\n*Update floor plan per new aisle configuration – vet through Lorne and get to Courtney\r\n*Should we take a cut at adding in boneyards to the FP?\r\n*Create large-scale plans for fire marshal pending Courtney table numbering\r\n*Research/revisit assisted listening solution from last year and propose plan for this year\r\n\r\nHillarie:\r\n*Create a contact list of all Viva personnel (staff and confirmed freelancers)\r\n*Create rooming list based on above (consider me out of town and requiring a room)\r\n*Make travel plans\r\n*Order new name badges – work with Lorne/Carlos for new logo artwork – would the metallic silver be cool?\r\n*Create décor plan summary (with photos) and distribute to our team\r\n*Co-contribute to production book\r\n\r\nBen:\r\n*Create security requirements memo\r\n*Create IT requests for each location (D/E, Ballroom, 164)\r\n*Create a meal schedule\r\n*Create dress code memo\r\n*Co-contribute to production book\r\n\r\n\r\n'),('Active',2,0,1170266595,'','smackey','66.80.242.3','','((AIPAC Policy Conference 11 March 07))'),('AIPAC National Summit 2007',1,0,1191877870,'','smackey','66.80.242.3','','((Status Meetings))\r\n\r\n((Random Input))'),('AIPAC NS 8-Oct-07',1,0,1191878034,'','smackey','66.80.242.3','','__BREAKOUTS__\r\n\r\nACTION ITEMS:\r\n-Budget for breakouts (Viva)\r\n -Plasma (but check to see if rear screen could work)\r\n\r\n-Budget for Decor (Viva)\r\n -Peter (Direct Bill)\r\n -Ken\r\n -Art Museum (another vendor)\r\n\r\n-Get direction from AIPAC re Content Creations - Then create budget\r\n-Review overall AV Budget- Have final budget estimate for Tuesday\r\n \r\nMeeting at VIVA on Tuesday 12:30 pm - 2:00pm\r\n \r\n \r\nBreakouts: (200 each room)\r\n 2 Rooms\r\n 2 days\r\n Sat LI\r\n Sun AM-PM / Mon AM Sessions\r\n LO Mon Out\r\nRooms: Freedom & Independence Ballroom\r\nProbably go with Plasmas\r\n \r\nDecor - Need to confirm budget\r\n \r\nContent Creation Allowance ?? What to do\r\n \r\nGala - Museum - In-house will do lighting (Ambient Lighting in Stairwell)\r\n Nothing Inside\r\n Audio for great hall for band\r\n Need contact info for band\r\n Just Tent and exterior of building\r\n \r\n \r\n____________________\r\nLorne M. Greene\r\nViva Productions\r\n164 Rollins Ave. Ste 201\r\nRockville, MD 20852\r\n301-670-9700 x101\r\n301-442-4044 cell\r\n301-560-6620 efax\r\nlgreene@getviva.com\r\n____________________\r\n \r\n\r\n'),('AIPAC NS 8-Oct-07',2,0,1191878247,'','smackey','66.80.242.3','','__BREAKOUTS (FROM LORNE CALL WITH JEREMY)__\r\n\r\nACTION ITEMS:\r\n-Budget for breakouts (Viva)\r\n -Plasma (but check to see if rear screen could work)\r\n\r\n-Budget for Decor (Viva)\r\n -Peter (Direct Bill)\r\n -Ken\r\n -Art Museum (another vendor)\r\n\r\n-Get direction from AIPAC re Content Creations - Then create budget\r\n-Review overall AV Budget- Have final budget estimate for Tuesday\r\n \r\nMeeting at VIVA on Tuesday 12:30 pm - 2:00pm\r\n \r\n \r\nBreakouts: (200 each room)\r\n 2 Rooms\r\n 2 days\r\n Sat LI\r\n Sun AM-PM / Mon AM Sessions\r\n LO Mon Out\r\nRooms: Freedom & Independence Ballroom\r\nProbably go with Plasmas\r\n \r\nDecor - Need to confirm budget\r\n \r\nContent Creation Allowance ?? What to do\r\n \r\nGala - Museum - In-house will do lighting (Ambient Lighting in Stairwell)\r\n Nothing Inside\r\n Audio for great hall for band\r\n Need contact info for band\r\n Just Tent and exterior of building\r\n \r\n--- \r\n\r\n__LORNE CALL WITH RENEE__\r\n\r\n-Creative for Opening Session\r\n-Do Music for\r\n 5-7 second for Congressional Gala\r\n\r\n-Two Multi-Media Projects\r\n Briefing Theaters\r\n -Ambient & Information - Why US / Israeli Relationship matters to America\r\n Pictures are for conceptual\r\n -Transitional Tool - "Let\'s now talk about ... Google Map - Resolve to something\r\n \r\n-Week from Thu\r\n Paper Walk Through Oct 18th\r\n \r\nOTHER MULTIMEDIA\r\n-Walk-in\'s to Advertise PC & Summit\r\n-About AIPAC\r\n-Title Slides (Beth doing design)\r\n \r\nJEREMY - HOTEL EVENTS\r\n \r\nSaturday-\r\nRehearse Sunday at Hotel - Late Afternoon\r\n__~~#FF0000:Rehearse Museum - Saturday ~~__'); /*!40000 ALTER TABLE `tiki_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_hotwords` -- DROP TABLE IF EXISTS `tiki_hotwords`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_hotwords` ( `word` varchar(40) NOT NULL default '', `url` varchar(255) NOT NULL default '', PRIMARY KEY (`word`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_hotwords` -- LOCK TABLES `tiki_hotwords` WRITE; /*!40000 ALTER TABLE `tiki_hotwords` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_hotwords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_html_pages` -- DROP TABLE IF EXISTS `tiki_html_pages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_html_pages` ( `pageName` varchar(200) NOT NULL default '', `content` longblob, `refresh` int(10) default NULL, `type` char(1) default NULL, `created` int(14) default NULL, PRIMARY KEY (`pageName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_html_pages` -- LOCK TABLES `tiki_html_pages` WRITE; /*!40000 ALTER TABLE `tiki_html_pages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_html_pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_html_pages_dynamic_zones` -- DROP TABLE IF EXISTS `tiki_html_pages_dynamic_zones`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_html_pages_dynamic_zones` ( `pageName` varchar(40) NOT NULL default '', `zone` varchar(80) NOT NULL default '', `type` char(2) default NULL, `content` text, PRIMARY KEY (`pageName`,`zone`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_html_pages_dynamic_zones` -- LOCK TABLES `tiki_html_pages_dynamic_zones` WRITE; /*!40000 ALTER TABLE `tiki_html_pages_dynamic_zones` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_html_pages_dynamic_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_images` -- DROP TABLE IF EXISTS `tiki_images`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_images` ( `imageId` int(14) NOT NULL auto_increment, `galleryId` int(14) NOT NULL default '0', `name` varchar(200) NOT NULL default '', `description` text, `lat` float default NULL, `lon` float default NULL, `created` int(14) default NULL, `user` varchar(40) default NULL, `hits` int(14) default NULL, `path` varchar(255) default NULL, PRIMARY KEY (`imageId`), KEY `name` (`name`), KEY `description` (`description`(255)), KEY `hits` (`hits`), KEY `ti_gId` (`galleryId`), KEY `ti_cr` (`created`), KEY `ti_us` (`user`), FULLTEXT KEY `ft` (`name`,`description`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_images` -- LOCK TABLES `tiki_images` WRITE; /*!40000 ALTER TABLE `tiki_images` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_images_data` -- DROP TABLE IF EXISTS `tiki_images_data`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_images_data` ( `imageId` int(14) NOT NULL default '0', `xsize` int(8) NOT NULL default '0', `ysize` int(8) NOT NULL default '0', `type` char(1) NOT NULL default '', `filesize` int(14) default NULL, `filetype` varchar(80) default NULL, `filename` varchar(80) default NULL, `etag` varchar(32) default NULL, `data` longblob, PRIMARY KEY (`imageId`,`xsize`,`ysize`,`type`), KEY `t_i_d_it` (`imageId`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_images_data` -- LOCK TABLES `tiki_images_data` WRITE; /*!40000 ALTER TABLE `tiki_images_data` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_images_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_integrator_reps` -- DROP TABLE IF EXISTS `tiki_integrator_reps`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_integrator_reps` ( `repID` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL default '', `path` varchar(255) NOT NULL default '', `start_page` varchar(255) NOT NULL default '', `css_file` varchar(255) NOT NULL default '', `visibility` char(1) NOT NULL default 'y', `cacheable` char(1) NOT NULL default 'y', `expiration` int(11) NOT NULL default '0', `description` text NOT NULL, PRIMARY KEY (`repID`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_integrator_reps` -- LOCK TABLES `tiki_integrator_reps` WRITE; /*!40000 ALTER TABLE `tiki_integrator_reps` DISABLE KEYS */; INSERT INTO `tiki_integrator_reps` VALUES (1,'Doxygened (1.3.4) Documentation','','index.html','doxygen.css','n','y',0,'Use this repository as rule source for all your repositories based on doxygened docs. To setup yours just add new repository and copy rules from this repository :)'); /*!40000 ALTER TABLE `tiki_integrator_reps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_integrator_rules` -- DROP TABLE IF EXISTS `tiki_integrator_rules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_integrator_rules` ( `ruleID` int(11) NOT NULL auto_increment, `repID` int(11) NOT NULL default '0', `ord` int(2) unsigned NOT NULL default '0', `srch` blob NOT NULL, `repl` blob NOT NULL, `type` char(1) NOT NULL default 'n', `casesense` char(1) NOT NULL default 'y', `rxmod` varchar(20) NOT NULL default '', `enabled` char(1) NOT NULL default 'n', `description` text NOT NULL, PRIMARY KEY (`ruleID`), KEY `repID` (`repID`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_integrator_rules` -- LOCK TABLES `tiki_integrator_rules` WRITE; /*!40000 ALTER TABLE `tiki_integrator_rules` DISABLE KEYS */; INSERT INTO `tiki_integrator_rules` VALUES (1,1,1,'.*<body[^>]*?>(.*?)</body.*','1','y','n','i','y','Extract code between <BODY> tags'),(2,1,2,'img src=(\"|\')(?!http://)','img src=1{path}/','y','n','i','y','Fix images path'),(3,1,3,'href=(\"|\')(?!(#|(http|ftp)://))','href=1tiki-integrator.php?repID={repID}&file=','y','n','i','y','Relace internal links to integrator. Dont touch an external links.'); /*!40000 ALTER TABLE `tiki_integrator_rules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_language` -- DROP TABLE IF EXISTS `tiki_language`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_language` ( `source` tinyblob NOT NULL, `lang` varchar(16) NOT NULL default '', `tran` tinyblob, PRIMARY KEY (`source`(255),`lang`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_language` -- LOCK TABLES `tiki_language` WRITE; /*!40000 ALTER TABLE `tiki_language` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_language` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_languages` -- DROP TABLE IF EXISTS `tiki_languages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_languages` ( `lang` varchar(16) NOT NULL default '', `language` varchar(255) default NULL, PRIMARY KEY (`lang`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_languages` -- LOCK TABLES `tiki_languages` WRITE; /*!40000 ALTER TABLE `tiki_languages` DISABLE KEYS */; INSERT INTO `tiki_languages` VALUES ('en','English'); /*!40000 ALTER TABLE `tiki_languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_link_cache` -- DROP TABLE IF EXISTS `tiki_link_cache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_link_cache` ( `cacheId` int(14) NOT NULL auto_increment, `url` varchar(250) default NULL, `data` longblob, `refresh` int(14) default NULL, PRIMARY KEY (`cacheId`), KEY `urlindex` (`url`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_link_cache` -- LOCK TABLES `tiki_link_cache` WRITE; /*!40000 ALTER TABLE `tiki_link_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_link_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_links` -- DROP TABLE IF EXISTS `tiki_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_links` ( `fromPage` varchar(160) NOT NULL default '', `toPage` varchar(160) NOT NULL default '', PRIMARY KEY (`fromPage`,`toPage`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_links` -- LOCK TABLES `tiki_links` WRITE; /*!40000 ALTER TABLE `tiki_links` DISABLE KEYS */; INSERT INTO `tiki_links` VALUES ('Active','AIPAC National Summit 2007'),('Active','AIPAC Policy Conference 11 March 07'),('AIPAC National Summit 2007','AIPAC NS 07 Random Input'),('AIPAC National Summit 2007','AIPAC NS 07 Status Meetings'),('AIPAC NS 07 Random Input','AIPAC NS 8-Oct-07'),('AIPAC NS 8-Oct-07','Multi-Media'),('AIPAC Policy Conference 11 March 07','Status Meetings'),('Audio','Soundtrack Pro Primer'),('August 16 Meeting to determine responsibilities','DevConnect'),('August 24 Meeting With Evan','DevConnect'),('August 24 Meeting With Evan','InfoWorker'),('August 24 Meeting With Evan','Thurs-Sat'),('AVAYA Sales Conference','August 16 Meeting to determine responsibilities'),('AVAYA Sales Conference','August 24 Meeting With Evan'),('AVAYA Sales Conference','General Session'),('AVAYA Sales Conference','Global Integrated Services Creative Session'),('AVAYA Sales Conference','Leadership Meeting'),('AVAYA Sales Conference','September 7 Phone Conference'),('AVAYA Sales Conference','Task Lists'),('Checklists','AOL Webcast'),('Completed','AVAYA Sales Conference'),('Completed','King Pharmaceuticals Leadership 24 Jan 07'),('Compression Best Practices','BetaCam'),('Creative Proposal 5 Dec 06','On-Camera'),('Creative Proposal 5 Dec 06','On-Site'),('Creative Proposal 5 Dec 06','PowerPoint'),('Digital File Naming Conventions','A-TopAchieversRome23Feb2007-v0a'),('Digital File Naming Conventions','A-TopAchieversRome23Feb2007-v1'),('Digital File Naming Conventions','TopAchieversRome'),('General Session','Production Task List'),('HomePage','Operations'),('HomePage','Production Team Status'),('HomePage','Projects'),('HomePage','Training'),('Julies Production Tips','B-Roll'),('Julies Production Tips','K-Tech'),('King Pharmaceuticals Leadership 24 Jan 07','Creative Proposal 1 Dec 06'),('King Pharmaceuticals Leadership 24 Jan 07','Creative Proposal 5 Dec 06'),('King Pharmaceuticals Leadership 24 Jan 07','Preliminary Budget Estimate 6 Dec 06'),('King Pharmaceuticals Leadership 24 Jan 07','Production Phone Conference 4 Dec 06'),('King Pharmaceuticals Leadership 24 Jan 07','Proposal Phone Conference 4 Dec 06'),('Leadership Meeting','CoVision'),('Leadership Meeting','Melissa'),('Lorne Sept 13','C-Based'),('Lorne Sept 18','InterMountain'),('Lorne Sept 18','Post-Production'),('Lorne Sept18','InterMountain'),('Lorne Sept18','Post-Production'),('Operations','Checklists'),('Operations','SOPs'),('Preliminary Budget Estimate 6 Dec 06','On-Site'),('Production Task List','C-Based'),('Production Team Status','ProPoint'),('Production Team Status','TrendMicro'),('Projects','Active'),('Projects','Completed'),('SOPs','Digital File Naming Conventions'),('Soundtrack Pro Primer','GarageBand'),('Soundtrack Pro Primer','LogicPro'),('Status Meetings','30 Jan'),('Task Lists','Lorne Sept 13'),('Task Lists','Lorne Sept 18'),('Task Lists','Lorne Sept 20'),('Task Lists','Steve Sept 15'),('Task Lists','Steve Sept 18'),('Training','Audio'),('Training','Business Tools'),('Training','Graphics'),('Training','Information Technology'),('Training','Video'),('Video','Compression Best Practices'),('Video','Julies Production Tips'); /*!40000 ALTER TABLE `tiki_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_live_support_events` -- DROP TABLE IF EXISTS `tiki_live_support_events`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_live_support_events` ( `eventId` int(14) NOT NULL auto_increment, `reqId` varchar(32) NOT NULL default '', `type` varchar(40) default NULL, `seqId` int(14) default NULL, `senderId` varchar(32) default NULL, `data` text, `timestamp` int(14) default NULL, PRIMARY KEY (`eventId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_live_support_events` -- LOCK TABLES `tiki_live_support_events` WRITE; /*!40000 ALTER TABLE `tiki_live_support_events` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_live_support_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_live_support_message_comments` -- DROP TABLE IF EXISTS `tiki_live_support_message_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_live_support_message_comments` ( `cId` int(12) NOT NULL auto_increment, `msgId` int(12) default NULL, `data` text, `timestamp` int(14) default NULL, PRIMARY KEY (`cId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_live_support_message_comments` -- LOCK TABLES `tiki_live_support_message_comments` WRITE; /*!40000 ALTER TABLE `tiki_live_support_message_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_live_support_message_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_live_support_messages` -- DROP TABLE IF EXISTS `tiki_live_support_messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_live_support_messages` ( `msgId` int(12) NOT NULL auto_increment, `data` text, `timestamp` int(14) default NULL, `user` varchar(40) default NULL, `username` varchar(200) default NULL, `priority` int(2) default NULL, `status` char(1) default NULL, `assigned_to` varchar(200) default NULL, `resolution` varchar(100) default NULL, `title` varchar(200) default NULL, `module` int(4) default NULL, `email` varchar(250) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_live_support_messages` -- LOCK TABLES `tiki_live_support_messages` WRITE; /*!40000 ALTER TABLE `tiki_live_support_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_live_support_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_live_support_modules` -- DROP TABLE IF EXISTS `tiki_live_support_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_live_support_modules` ( `modId` int(4) NOT NULL auto_increment, `name` varchar(90) default NULL, PRIMARY KEY (`modId`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_live_support_modules` -- LOCK TABLES `tiki_live_support_modules` WRITE; /*!40000 ALTER TABLE `tiki_live_support_modules` DISABLE KEYS */; INSERT INTO `tiki_live_support_modules` VALUES (1,'wiki'),(2,'forums'),(3,'image galleries'),(4,'file galleries'),(5,'directory'),(6,'workflow'),(7,'charts'); /*!40000 ALTER TABLE `tiki_live_support_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_live_support_operators` -- DROP TABLE IF EXISTS `tiki_live_support_operators`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_live_support_operators` ( `user` varchar(40) NOT NULL default '', `accepted_requests` int(10) default NULL, `status` varchar(20) default NULL, `longest_chat` int(10) default NULL, `shortest_chat` int(10) default NULL, `average_chat` int(10) default NULL, `last_chat` int(14) default NULL, `time_online` int(10) default NULL, `votes` int(10) default NULL, `points` int(10) default NULL, `status_since` int(14) default NULL, PRIMARY KEY (`user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_live_support_operators` -- LOCK TABLES `tiki_live_support_operators` WRITE; /*!40000 ALTER TABLE `tiki_live_support_operators` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_live_support_operators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_live_support_requests` -- DROP TABLE IF EXISTS `tiki_live_support_requests`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_live_support_requests` ( `reqId` varchar(32) NOT NULL default '', `user` varchar(40) default NULL, `tiki_user` varchar(200) default NULL, `email` varchar(200) default NULL, `operator` varchar(200) default NULL, `operator_id` varchar(32) default NULL, `user_id` varchar(32) default NULL, `reason` text, `req_timestamp` int(14) default NULL, `timestamp` int(14) default NULL, `status` varchar(40) default NULL, `resolution` varchar(40) default NULL, `chat_started` int(14) default NULL, `chat_ended` int(14) default NULL, PRIMARY KEY (`reqId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_live_support_requests` -- LOCK TABLES `tiki_live_support_requests` WRITE; /*!40000 ALTER TABLE `tiki_live_support_requests` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_live_support_requests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_logs` -- DROP TABLE IF EXISTS `tiki_logs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_logs` ( `logId` int(8) NOT NULL auto_increment, `logtype` varchar(20) NOT NULL default '', `logmessage` text NOT NULL, `loguser` varchar(40) NOT NULL default '', `logip` varchar(200) NOT NULL default '', `logclient` text NOT NULL, `logtime` int(14) NOT NULL default '0', PRIMARY KEY (`logId`), KEY `logtype` (`logtype`) ) ENGINE=MyISAM AUTO_INCREMENT=289 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_logs` -- LOCK TABLES `tiki_logs` WRITE; /*!40000 ALTER TABLE `tiki_logs` DISABLE KEYS */; INSERT INTO `tiki_logs` VALUES (1,'admingroups','created group Avaya','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154640300),(2,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641259),(3,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641268),(4,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641343),(5,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641364),(6,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641481),(7,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641491),(8,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641510),(9,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641516),(10,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641522),(11,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641527),(12,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641699),(13,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641708),(14,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641922),(15,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154641929),(16,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642030),(17,'login','logged from /tiki/tiki-index.php','shannon','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642040),(18,'login','logged out','shannon','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642116),(19,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642122),(20,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642805),(21,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642813),(22,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642863),(23,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642869),(24,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642918),(25,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154642925),(26,'admingroups','created group EventProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154643489),(27,'admingroups','modified group EventProductionTeam to ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154644070),(28,'login','logged from /tiki/tiki-index.php','shannon','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154644853),(29,'login','logged from /tiki/tiki-editpage.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154646803),(30,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154646831),(31,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154646837),(32,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154647286),(33,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154647294),(34,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154647595),(35,'login','logged from /tiki/tiki-index.php','rsizemore','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154647606),(36,'login','logged out','rsizemore','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154647849),(37,'login','logged from /tiki/tiki-admin.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154693798),(38,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1154695724),(39,'login','logged from /tiki/tiki-admin.php','admin','72.254.174.85','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1155757191),(40,'login','logged from /tiki/tiki-index.php','lgreene','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1156277291),(41,'login','logged from /tiki/tiki-index.php','lgreene','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1156301019),(42,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1156439603),(43,'login','logged from /tiki/tiki-editpage.php?page=August%2024%20Meeting%20With%20Evan','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1156441915),(44,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1156445345),(45,'login','logged from /tiki/tiki-admin.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1157632766),(46,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1157728674),(47,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1157730642),(48,'login','logged from /tiki/tiki-editpage.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1157734114),(49,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1157734647),(50,'login','logged from /tiki/tiki-admin.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158160970),(51,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158173772),(52,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158246422),(53,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158265951),(54,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158791653),(55,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158938045),(56,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1158948847),(57,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1159540421),(58,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1159972381),(59,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165267246),(60,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165268022),(61,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165268029),(62,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165269495),(63,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165269513),(64,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165269706),(65,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165269713),(66,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165269770),(67,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270035),(68,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270076),(69,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270083),(70,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270708),(71,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270715),(72,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270777),(73,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165270785),(74,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(75,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(76,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(77,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(78,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(79,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(80,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(81,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(82,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(83,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(84,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(85,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(86,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(87,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(88,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(89,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(90,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(91,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(92,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(93,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(94,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(95,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(96,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(97,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(98,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(99,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(100,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(101,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(102,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(103,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(104,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(105,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(106,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(107,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(108,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(109,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(110,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(111,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(112,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(113,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(114,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(115,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(116,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(117,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(118,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(119,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(120,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(121,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(122,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(123,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(124,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(125,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(126,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(127,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(128,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(129,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(130,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(131,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(132,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(133,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(134,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(135,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(136,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(137,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(138,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(139,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(140,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(141,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(142,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(143,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(144,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(145,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(146,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(147,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(148,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(149,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(150,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(151,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(152,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(153,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(154,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(155,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(156,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(157,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(158,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(159,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(160,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(161,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(162,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(163,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(164,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271625),(165,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(166,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(167,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(168,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(169,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(170,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(171,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(172,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(173,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(174,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(175,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(176,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(177,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(178,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(179,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(180,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(181,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(182,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(183,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(184,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(185,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(186,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(187,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(188,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(189,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(190,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(191,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(192,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(193,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(194,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(195,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(196,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(197,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(198,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(199,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(200,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(201,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(202,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(203,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(204,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(205,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(206,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(207,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(208,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(209,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(210,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(211,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(212,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(213,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(214,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(215,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(216,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(217,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(218,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(219,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(220,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(221,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(222,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(223,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(224,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(225,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(226,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(227,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(228,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(229,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(230,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(231,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(232,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(233,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(234,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(235,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(236,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(237,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(238,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(239,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(240,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(241,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(242,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(243,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(244,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(245,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(246,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(247,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(248,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(249,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(250,'perms','changed perms for group ProductionTeam','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271626),(251,'login','logged out','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271688),(252,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165271696),(253,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165272102),(254,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165272109),(255,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165272138),(256,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1165272676),(257,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165273892),(258,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165273910),(259,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165273916),(260,'login','logged from /tiki/tiki-index.php','birey','70.110.29.89','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165319318),(261,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1165359422),(262,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1165417739),(263,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1165422173),(264,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1165435953),(265,'login','logged out','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1165436115),(266,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165603618),(267,'login','logged from /tiki/tiki-index.php','admin','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165617878),(268,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165851450),(269,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165851564),(270,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165851613),(271,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165851687),(272,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165851766),(273,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165851791),(274,'login','logged from tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165852411),(275,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165855027),(276,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1165864599),(277,'login','logged from /tiki/tiki-index.php','jzastrow','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)',1166040261),(278,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1166458274),(279,'login','logged out','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1166461000),(280,'login','logged out','Anonymous','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1166461020),(281,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1166461085),(282,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1166464697),(283,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1166481401),(284,'login','logged from /tiki/tiki-index.php','birey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)',1166559762),(285,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1170266507),(286,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1182275493),(287,'login','logged from /tiki/tiki-index.php','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1191871410),(288,'login','logged from /tiki/tiki-editpage.php?page=AIPAC+National+Summit+2007','smackey','66.80.242.3','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)',1191877810); /*!40000 ALTER TABLE `tiki_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_mail_events` -- DROP TABLE IF EXISTS `tiki_mail_events`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_mail_events` ( `event` varchar(200) default NULL, `object` varchar(200) default NULL, `email` varchar(200) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_mail_events` -- LOCK TABLES `tiki_mail_events` WRITE; /*!40000 ALTER TABLE `tiki_mail_events` DISABLE KEYS */; INSERT INTO `tiki_mail_events` VALUES ('wiki_page_changes','*','smackey@getviva.com'); /*!40000 ALTER TABLE `tiki_mail_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_mailin_accounts` -- DROP TABLE IF EXISTS `tiki_mailin_accounts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_mailin_accounts` ( `accountId` int(12) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `account` varchar(50) NOT NULL default '', `pop` varchar(255) default NULL, `port` int(4) default NULL, `username` varchar(100) default NULL, `pass` varchar(100) default NULL, `active` char(1) default NULL, `type` varchar(40) default NULL, `smtp` varchar(255) default NULL, `useAuth` char(1) default NULL, `smtpPort` int(4) default NULL, `anonymous` char(1) NOT NULL default 'y', `attachments` char(1) NOT NULL default 'n', `article_topicId` int(4) default NULL, `article_type` varchar(50) default NULL, `discard_after` varchar(255) default NULL, PRIMARY KEY (`accountId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_mailin_accounts` -- LOCK TABLES `tiki_mailin_accounts` WRITE; /*!40000 ALTER TABLE `tiki_mailin_accounts` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_mailin_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_menu_languages` -- DROP TABLE IF EXISTS `tiki_menu_languages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_menu_languages` ( `menuId` int(8) NOT NULL auto_increment, `language` char(16) NOT NULL default '', PRIMARY KEY (`menuId`,`language`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_menu_languages` -- LOCK TABLES `tiki_menu_languages` WRITE; /*!40000 ALTER TABLE `tiki_menu_languages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_menu_languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_menu_options` -- DROP TABLE IF EXISTS `tiki_menu_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_menu_options` ( `optionId` int(8) NOT NULL auto_increment, `menuId` int(8) default NULL, `type` char(1) default NULL, `name` varchar(200) default NULL, `url` varchar(255) default NULL, `position` int(4) default NULL, `section` varchar(255) default NULL, `perm` varchar(255) default NULL, `groupname` varchar(255) default NULL, PRIMARY KEY (`optionId`) ) ENGINE=MyISAM AUTO_INCREMENT=171 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_menu_options` -- LOCK TABLES `tiki_menu_options` WRITE; /*!40000 ALTER TABLE `tiki_menu_options` DISABLE KEYS */; INSERT INTO `tiki_menu_options` VALUES (1,42,'o','Home','tiki-index.php',10,'','',''),(2,42,'o','Chat','tiki-chat.php',15,'feature_chat','tiki_p_chat',''),(3,42,'o','Contact us','tiki-contact.php',20,'feature_contact','',''),(4,42,'o','Stats','tiki-stats.php',23,'feature_stats','tiki_p_view_stats',''),(5,42,'o','Categories','tiki-browse_categories.php',25,'feature_categories','tiki_p_view_categories',''),(6,42,'o','Games','tiki-list_games.php',30,'feature_games','tiki_p_play_games',''),(7,42,'o','Calendar','tiki-calendar.php',35,'feature_calendar','tiki_p_view_calendar',''),(8,42,'o','Mobile','tiki-mobile.php',37,'feature_mobile','',''),(9,42,'o','(debug)','javascript:toggle(\"debugconsole\")',40,'feature_debug_console','tiki_p_admin',''),(10,42,'s','MyTiki','tiki-my_tiki.php',50,'','','Registered'),(11,42,'o','MyTiki home','tiki-my_tiki.php',51,'','','Registered'),(12,42,'o','Preferences','tiki-user_preferences.php',55,'feature_userPreferences','','Registered'),(13,42,'o','Messages','messu-mailbox.php',60,'feature_messages','tiki_p_messages','Registered'),(14,42,'o','Tasks','tiki-user_tasks.php',65,'feature_tasks','tiki_p_tasks','Registered'),(15,42,'o','Bookmarks','tiki-user_bookmarks.php',70,'feature_user_bookmarks','tiki_p_create_bookmarks','Registered'),(16,42,'o','Modules','tiki-user_assigned_modules.php',75,'user_assigned_modules','tiki_p_configure_modules','Registered'),(17,42,'o','Newsreader','tiki-newsreader_servers.php',80,'feature_newsreader','tiki_p_newsreader','Registered'),(18,42,'o','Webmail','tiki-webmail.php',85,'feature_webmail','tiki_p_use_webmail','Registered'),(19,42,'o','Notepad','tiki-notepad_list.php',90,'feature_notepad','tiki_p_notepad','Registered'),(20,42,'o','My files','tiki-userfiles.php',95,'feature_userfiles','tiki_p_userfiles','Registered'),(21,42,'o','User menu','tiki-usermenu.php',100,'feature_usermenu','','Registered'),(22,42,'o','Mini calendar','tiki-minical.php',105,'feature_minical','','Registered'),(23,42,'o','My watches','tiki-user_watches.php',110,'feature_user_watches','','Registered'),(24,42,'s','Workflow','tiki-g-user_processes.php',150,'feature_workflow','tiki_p_use_workflow',''),(25,42,'o','Admin processes','tiki-g-admin_processes.php',155,'feature_workflow','tiki_p_admin_workflow',''),(26,42,'o','Monitor processes','tiki-g-monitor_processes.php',160,'feature_workflow','tiki_p_admin_workflow',''),(27,42,'o','Monitor activities','tiki-g-monitor_activities.php',165,'feature_workflow','tiki_p_admin_workflow',''),(28,42,'o','Monitor instances','tiki-g-monitor_instances.php',170,'feature_workflow','tiki_p_admin_workflow',''),(29,42,'o','User processes','tiki-g-user_processes.php',175,'feature_workflow','tiki_p_use_workflow',''),(30,42,'o','User activities','tiki-g-user_activities.php',180,'feature_workflow','tiki_p_use_workflow',''),(31,42,'o','User instances','tiki-g-user_instances.php',185,'feature_workflow','tiki_p_use_workflow',''),(32,42,'s','Community','tiki-list_users.php',187,'feature_friends','tiki_p_list_users',''),(33,42,'o','User list','tiki-list_users.php',188,'feature_friends','tiki_p_list_users',''),(34,42,'o','Friendship Network','tiki-friends.php',189,'feature_friends','',''),(35,42,'s','Wiki','tiki-index.php',200,'feature_wiki','tiki_p_view',''),(36,42,'o','Wiki Home','tiki-index.php',202,'feature_wiki','tiki_p_view',''),(37,42,'o','Last Changes','tiki-lastchanges.php',205,'feature_wiki,feature_lastChanges','tiki_p_view',''),(38,42,'o','Dump','dump/new.tar',210,'feature_wiki,feature_dump','tiki_p_view',''),(39,42,'o','Rankings','tiki-wiki_rankings.php',215,'feature_wiki,feature_wiki_rankings','tiki_p_view',''),(40,42,'o','List pages','tiki-listpages.php',220,'feature_wiki,feature_listPages','tiki_p_view',''),(41,42,'o','Orphan pages','tiki-orphan_pages.php',225,'feature_wiki,feature_listPages','tiki_p_view',''),(42,42,'o','Sandbox','tiki-editpage.php?page=sandbox',230,'feature_wiki,feature_sandbox','tiki_p_view',''),(43,42,'o','Print','tiki-print_pages.php',235,'feature_wiki,feature_wiki_multiprint','tiki_p_view',''),(44,42,'o','Send pages','tiki-send_objects.php',240,'feature_wiki,feature_comm','tiki_p_view,tiki_p_send_pages',''),(45,42,'o','Received pages','tiki-received_pages.php',245,'feature_wiki,feature_comm','tiki_p_view,tiki_p_admin_received_pages',''),(46,42,'o','Structures','tiki-admin_structures.php',250,'feature_wiki','tiki_p_edit_structures',''),(47,42,'s','Image Galleries','tiki-galleries.php',300,'feature_galleries','tiki_p_view_image_gallery',''),(48,42,'o','Galleries','tiki-galleries.php',305,'feature_galleries','tiki_p_view_image_gallery',''),(49,42,'o','Rankings','tiki-galleries_rankings.php',310,'feature_galleries,feature_gal_rankings','tiki_p_view_image_gallery',''),(50,42,'o','Upload image','tiki-upload_image.php',315,'feature_galleries','tiki_p_upload_images',''),(51,42,'o','Directory batch','tiki-batch_upload.php',318,'feature_galleries,feature_gal_batch','tiki_p_batch_upload',''),(52,42,'o','System gallery','tiki-list_gallery.php?galleryId=0',320,'feature_galleries','tiki_p_admin_galleries',''),(53,42,'s','Articles','tiki-view_articles.php',350,'feature_articles','tiki_p_read_article',''),(54,42,'o','Articles home','tiki-view_articles.php',355,'feature_articles','tiki_p_read_article',''),(55,42,'o','List articles','tiki-list_articles.php',360,'feature_articles','tiki_p_read_article',''),(56,42,'o','Rankings','tiki-cms_rankings.php',365,'feature_articles,feature_cms_rankings','tiki_p_read_article',''),(57,42,'o','Submit article','tiki-edit_submission.php',370,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_submit_article',''),(58,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_submit_article',''),(59,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_approve_submission',''),(60,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_remove_submission',''),(61,42,'o','Edit article','tiki-edit_article.php',380,'feature_articles','tiki_p_read_article,tiki_p_edit_article',''),(62,42,'o','Send articles','tiki-send_objects.php',385,'feature_articles,feature_comm','tiki_p_read_article,tiki_p_send_articles',''),(63,42,'o','Received articles','tiki-received_articles.php',385,'feature_articles,feature_comm','tiki_p_read_article,tiki_p_admin_received_articles',''),(64,42,'o','Admin topics','tiki-admin_topics.php',390,'feature_articles','tiki_p_read_article,tiki_p_admin_cms',''),(65,42,'o','Admin types','tiki-article_types.php',395,'feature_articles','tiki_p_read_article,tiki_p_admin_cms',''),(66,42,'s','Blogs','tiki-list_blogs.php',450,'feature_blogs','tiki_p_read_blog',''),(67,42,'o','List blogs','tiki-list_blogs.php',455,'feature_blogs','tiki_p_read_blog',''),(68,42,'o','Rankings','tiki-blog_rankings.php',460,'feature_blogs,feature_blog_rankings','tiki_p_read_blog',''),(69,42,'o','Create/Edit blog','tiki-edit_blog.php',465,'feature_blogs','tiki_p_read_blog,tiki_p_create_blogs',''),(70,42,'o','Post','tiki-blog_post.php',470,'feature_blogs','tiki_p_read_blog,tiki_p_blog_post',''),(71,42,'o','Admin posts','tiki-list_posts.php',475,'feature_blogs','tiki_p_read_blog,tiki_p_blog_admin',''),(72,42,'s','Forums','tiki-forums.php',500,'feature_forums','tiki_p_forum_read',''),(73,42,'o','List forums','tiki-forums.php',505,'feature_forums','tiki_p_forum_read',''),(74,42,'o','Rankings','tiki-forum_rankings.php',510,'feature_forums,feature_forum_rankings','tiki_p_forum_read',''),(75,42,'o','Admin forums','tiki-admin_forums.php',515,'feature_forums','tiki_p_forum_read,tiki_p_admin_forum',''),(76,42,'s','Directory','tiki-directory_browse.php',550,'feature_directory','tiki_p_view_directory',''),(77,42,'o','Submit a new link','tiki-directory_add_site.php',555,'feature_directory','tiki_p_submit_link',''),(78,42,'o','Browse directory','tiki-directory_browse.php',560,'feature_directory','tiki_p_view_directory',''),(79,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_admin_directory_cats',''),(80,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_admin_directory_sites',''),(81,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_validate_links',''),(82,42,'s','File Galleries','tiki-file_galleries.php',600,'feature_file_galleries','tiki_p_view_file_gallery',''),(83,42,'o','List galleries','tiki-file_galleries.php',605,'feature_file_galleries','tiki_p_view_file_gallery',''),(84,42,'o','Rankings','tiki-file_galleries_rankings.php',610,'feature_file_galleries,feature_file_galleries_rankings','tiki_p_view_file_gallery',''),(85,42,'o','Upload file','tiki-upload_file.php',615,'feature_file_galleries','tiki_p_view_file_gallery,tiki_p_upload_files',''),(86,42,'s','FAQs','tiki-list_faqs.php',650,'feature_faqs','tiki_p_view_faqs',''),(87,42,'o','List FAQs','tiki-list_faqs.php',665,'feature_faqs','tiki_p_view_faqs',''),(88,42,'o','Admin FAQs','tiki-list_faqs.php',660,'feature_faqs','tiki_p_admin_faqs',''),(89,42,'s','Maps','tiki-map.phtml',700,'feature_maps','tiki_p_map_view',''),(90,42,'o','Mapfiles','tiki-map_edit.php',705,'feature_maps','tiki_p_map_view',''),(91,42,'o','Layer management','tiki-map_upload.php',710,'feature_maps','tiki_p_map_edit',''),(92,42,'s','Quizzes','tiki-list_quizzes.php',750,'feature_quizzes','',''),(93,42,'o','List quizzes','tiki-list_quizzes.php',755,'feature_quizzes','',''),(94,42,'o','Quiz stats','tiki-quiz_stats.php',760,'feature_quizzes','tiki_p_view_quiz_stats',''),(95,42,'o','Admin quiz','tiki-edit_quiz.php',765,'feature_quizzes','tiki_p_admin_quizzes',''),(96,42,'s','TikiSheet','tiki-sheets.php',780,'feature_sheet','',''),(97,42,'s','Trackers','tiki-list_trackers.php',800,'feature_trackers','tiki_p_view_trackers',''),(98,42,'o','List trackers','tiki-list_trackers.php',805,'feature_trackers','tiki_p_view_trackers',''),(99,42,'o','Admin trackers','tiki-admin_trackers.php',810,'feature_trackers','tiki_p_admin_trackers',''),(100,42,'s','Surveys','tiki-list_surveys.php',850,'feature_surveys','',''),(101,42,'o','List surveys','tiki-list_surveys.php',855,'feature_surveys','',''),(102,42,'o','Stats','tiki-survey_stats.php',860,'feature_surveys','tiki_p_view_survey_stats',''),(103,42,'o','Admin surveys','tiki-admin_surveys.php',865,'feature_surveys','tiki_p_admin_surveys',''),(104,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_subscribe_newsletters',''),(105,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_send_newsletters',''),(106,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_admin_newsletters',''),(107,42,'o','Send newsletters','tiki-send_newsletters.php',905,'feature_newsletters','tiki_p_send_newsletters',''),(108,42,'o','Admin newsletters','tiki-admin_newsletters.php',910,'feature_newsletters','tiki_p_admin_newsletters',''),(109,42,'s','Ephemerides','tiki-eph.php',950,'feature_eph','',''),(110,42,'o','Admin ephemerides','tiki-eph_admin.php',955,'feature_eph','tiki_p_eph_admin',''),(111,42,'s','Charts','tiki-charts.php',1000,'feature_charts','',''),(112,42,'o','Admin charts','tiki-admin_charts.php',1005,'feature_charts','tiki_p_admin_charts',''),(113,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin',''),(114,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_chat',''),(115,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_categories',''),(116,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_banners',''),(117,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_templates',''),(118,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_cookies',''),(119,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_dynamic',''),(120,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_mailin',''),(121,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_content_templates',''),(122,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_html_pages',''),(123,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_view_referer_stats',''),(124,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_drawings',''),(125,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_shoutbox',''),(126,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_live_support_admin',''),(127,42,'r','Admin','tiki-admin.php',1050,'','user_is_operator',''),(128,42,'r','Admin','tiki-admin.php',1050,'feature_integrator','tiki_p_admin_integrator',''),(129,42,'o','Admin home','tiki-admin.php',1051,'','tiki_p_admin',''),(130,42,'o','Live support','tiki-live_support_admin.php',1055,'feature_live_support','tiki_p_live_support_admin',''),(131,42,'o','Live support','tiki-live_support_admin.php',1055,'feature_live_support','user_is_operator',''),(132,42,'o','Banning','tiki-admin_banning.php',1060,'feature_banning','tiki_p_admin_banning',''),(133,42,'o','Calendar','tiki-admin_calendars.php',1065,'feature_calendar','tiki_p_admin_calendar',''),(134,42,'o','Users','tiki-adminusers.php',1070,'','tiki_p_admin_users',''),(135,42,'o','Groups','tiki-admingroups.php',1075,'','tiki_p_admin',''),(136,42,'o','Cache','tiki-list_cache.php',1080,'','tiki_p_admin',''),(137,42,'o','Modules','tiki-admin_modules.php',1085,'','tiki_p_admin',''),(138,42,'o','Links','tiki-admin_links.php',1090,'feature_featuredLinks','tiki_p_admin',''),(139,42,'o','Hotwords','tiki-admin_hotwords.php',1095,'feature_hotwords','tiki_p_admin',''),(140,42,'o','RSS modules','tiki-admin_rssmodules.php',1100,'','tiki_p_admin',''),(141,42,'o','Menus','tiki-admin_menus.php',1105,'','tiki_p_admin',''),(142,42,'o','Polls','tiki-admin_polls.php',1110,'feature_polls','tiki_p_admin',''),(143,42,'o','Backups','tiki-backup.php',1115,'','tiki_p_admin',''),(144,42,'o','Mail notifications','tiki-admin_notifications.php',1120,'','tiki_p_admin',''),(145,42,'o','Search stats','tiki-search_stats.php',1125,'feature_search','tiki_p_admin',''),(146,42,'o','Theme control','tiki-theme_control.php',1130,'feature_theme_control','tiki_p_admin',''),(147,42,'o','QuickTags','tiki-admin_quicktags.php',1135,'','tiki_p_admin',''),(148,42,'o','Chat','tiki-admin_chat.php',1140,'feature_chat','tiki_p_admin_chat',''),(149,42,'o','Categories','tiki-admin_categories.php',1145,'feature_categories','tiki_p_admin_categories',''),(150,42,'o','Banners','tiki-list_banners.php',1150,'feature_banners','tiki_p_admin_banners',''),(151,42,'o','Edit templates','tiki-edit_templates.php',1155,'feature_edit_templates','tiki_p_edit_templates',''),(152,42,'o','Drawings','tiki-admin_drawings.php',1160,'feature_drawings','tiki_p_admin_drawings',''),(153,42,'o','Dynamic content','tiki-list_contents.php',1165,'feature_dynamic_content','tiki_p_admin_dynamic',''),(154,42,'o','Cookies','tiki-admin_cookies.php',1170,'','tiki_p_edit_cookies',''),(155,42,'o','Mail-in','tiki-admin_mailin.php',1175,'feature_mailin','tiki_p_admin_mailin',''),(156,42,'o','Content templates','tiki-admin_content_templates.php',1180,'','tiki_p_edit_content_templates',''),(157,42,'o','HTML pages','tiki-admin_html_pages.php',1185,'feature_html_pages','tiki_p_edit_html_pages',''),(158,42,'o','Shoutbox','tiki-shoutbox.php',1190,'feature_shoutbox','tiki_p_admin_shoutbox',''),(159,42,'o','Shoutbox Words','tiki-admin_shoutbox_words.php',1191,'feature_shoutbox','tiki_p_admin_shoutbox',''),(160,42,'o','Referer stats','tiki-referer_stats.php',1195,'feature_referer_stats','tiki_p_view_referer_stats',''),(161,42,'o','Edit languages','tiki-edit_languages.php',1200,'','tiki_p_edit_languages,lang_use_db',''),(162,42,'o','Integrator','tiki-admin_integrator.php',1205,'feature_integrator','tiki_p_admin_integrator',''),(163,42,'o','phpinfo','tiki-phpinfo.php',1215,'','tiki_p_admin',''),(164,42,'o','DSN','tiki-admin_dsn.php',1220,'','tiki_p_admin',''),(165,42,'o','External wikis','tiki-admin_external_wikis.php',1225,'','tiki_p_admin',''),(166,42,'o','System Admin','tiki-admin_system.php',1230,'','tiki_p_admin',''),(167,42,'o','Score','tiki-admin_score.php',1235,'feature_score','tiki_p_admin',''),(168,42,'o','Admin mods','tiki-mods.php',1240,'','tiki_p_admin',''),(169,42,'o','Tiki Logs','tiki-syslog.php',1245,'','tiki_p_admin',''),(170,42,'o','Security Admin','tiki-admin_security.php',1250,'','tiki_p_admin',''); /*!40000 ALTER TABLE `tiki_menu_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_menus` -- DROP TABLE IF EXISTS `tiki_menus`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_menus` ( `menuId` int(8) NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `description` text, `type` char(1) default NULL, PRIMARY KEY (`menuId`) ) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_menus` -- LOCK TABLES `tiki_menus` WRITE; /*!40000 ALTER TABLE `tiki_menus` DISABLE KEYS */; INSERT INTO `tiki_menus` VALUES (42,'Application menu','Main extensive navigation menu','d'); /*!40000 ALTER TABLE `tiki_menus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_minical_events` -- DROP TABLE IF EXISTS `tiki_minical_events`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_minical_events` ( `user` varchar(40) default NULL, `eventId` int(12) NOT NULL auto_increment, `title` varchar(250) default NULL, `description` text, `start` int(14) default NULL, `end` int(14) default NULL, `security` char(1) default NULL, `duration` int(3) default NULL, `topicId` int(12) default NULL, `reminded` char(1) default NULL, PRIMARY KEY (`eventId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_minical_events` -- LOCK TABLES `tiki_minical_events` WRITE; /*!40000 ALTER TABLE `tiki_minical_events` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_minical_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_minical_topics` -- DROP TABLE IF EXISTS `tiki_minical_topics`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_minical_topics` ( `user` varchar(40) default NULL, `topicId` int(12) NOT NULL auto_increment, `name` varchar(250) default NULL, `filename` varchar(200) default NULL, `filetype` varchar(200) default NULL, `filesize` varchar(200) default NULL, `data` longblob, `path` varchar(250) default NULL, `isIcon` char(1) default NULL, PRIMARY KEY (`topicId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_minical_topics` -- LOCK TABLES `tiki_minical_topics` WRITE; /*!40000 ALTER TABLE `tiki_minical_topics` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_minical_topics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_modules` -- DROP TABLE IF EXISTS `tiki_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_modules` ( `name` varchar(200) NOT NULL default '', `position` char(1) default NULL, `ord` int(4) default NULL, `type` char(1) default NULL, `title` varchar(255) default NULL, `cache_time` int(14) default NULL, `rows` int(4) default NULL, `params` varchar(255) default NULL, `groups` text, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_modules` -- LOCK TABLES `tiki_modules` WRITE; /*!40000 ALTER TABLE `tiki_modules` DISABLE KEYS */; INSERT INTO `tiki_modules` VALUES ('login_box','r',1,NULL,NULL,0,NULL,NULL,'a:2:{i:0;s:10:\"Registered\";i:1;s:9:\"Anonymous\";}'),('mnu_application_menu','l',1,NULL,NULL,0,NULL,'flip=y','a:2:{i:0;s:10:\"Registered\";i:1;s:9:\"Anonymous\";}'),('quick_edit','l',2,NULL,NULL,0,NULL,NULL,'a:1:{i:0;s:10:\"Registered\";}'),('assistant','l',10,NULL,NULL,0,NULL,NULL,'a:2:{i:0;s:10:\"Registered\";i:1;s:9:\"Anonymous\";}'); /*!40000 ALTER TABLE `tiki_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_newsletter_groups` -- DROP TABLE IF EXISTS `tiki_newsletter_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_newsletter_groups` ( `nlId` int(12) NOT NULL default '0', `groupName` varchar(255) NOT NULL default '', `code` varchar(32) default NULL, PRIMARY KEY (`nlId`,`groupName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_newsletter_groups` -- LOCK TABLES `tiki_newsletter_groups` WRITE; /*!40000 ALTER TABLE `tiki_newsletter_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_newsletter_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_newsletter_subscriptions` -- DROP TABLE IF EXISTS `tiki_newsletter_subscriptions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_newsletter_subscriptions` ( `nlId` int(12) NOT NULL default '0', `email` varchar(255) NOT NULL default '', `code` varchar(32) default NULL, `valid` char(1) default NULL, `subscribed` int(14) default NULL, `isUser` char(1) NOT NULL default 'n', PRIMARY KEY (`nlId`,`email`,`isUser`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_newsletter_subscriptions` -- LOCK TABLES `tiki_newsletter_subscriptions` WRITE; /*!40000 ALTER TABLE `tiki_newsletter_subscriptions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_newsletter_subscriptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_newsletters` -- DROP TABLE IF EXISTS `tiki_newsletters`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_newsletters` ( `nlId` int(12) NOT NULL auto_increment, `name` varchar(200) default NULL, `description` text, `created` int(14) default NULL, `lastSent` int(14) default NULL, `editions` int(10) default NULL, `users` int(10) default NULL, `allowUserSub` char(1) default 'y', `allowAnySub` char(1) default NULL, `unsubMsg` char(1) default 'y', `validateAddr` char(1) default 'y', `frequency` int(14) default NULL, PRIMARY KEY (`nlId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_newsletters` -- LOCK TABLES `tiki_newsletters` WRITE; /*!40000 ALTER TABLE `tiki_newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_newsreader_marks` -- DROP TABLE IF EXISTS `tiki_newsreader_marks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_newsreader_marks` ( `user` varchar(40) NOT NULL default '', `serverId` int(12) NOT NULL default '0', `groupName` varchar(255) NOT NULL default '', `timestamp` int(14) NOT NULL default '0', PRIMARY KEY (`user`,`serverId`,`groupName`(100)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_newsreader_marks` -- LOCK TABLES `tiki_newsreader_marks` WRITE; /*!40000 ALTER TABLE `tiki_newsreader_marks` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_newsreader_marks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_newsreader_servers` -- DROP TABLE IF EXISTS `tiki_newsreader_servers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_newsreader_servers` ( `user` varchar(40) NOT NULL default '', `serverId` int(12) NOT NULL auto_increment, `server` varchar(250) default NULL, `port` int(4) default NULL, `username` varchar(200) default NULL, `password` varchar(200) default NULL, PRIMARY KEY (`serverId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_newsreader_servers` -- LOCK TABLES `tiki_newsreader_servers` WRITE; /*!40000 ALTER TABLE `tiki_newsreader_servers` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_newsreader_servers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_object_ratings` -- DROP TABLE IF EXISTS `tiki_object_ratings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_object_ratings` ( `catObjectId` int(12) NOT NULL default '0', `pollId` int(12) NOT NULL default '0', PRIMARY KEY (`catObjectId`,`pollId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_object_ratings` -- LOCK TABLES `tiki_object_ratings` WRITE; /*!40000 ALTER TABLE `tiki_object_ratings` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_object_ratings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_page_footnotes` -- DROP TABLE IF EXISTS `tiki_page_footnotes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_page_footnotes` ( `user` varchar(40) NOT NULL default '', `pageName` varchar(250) NOT NULL default '', `data` text, PRIMARY KEY (`user`,`pageName`(100)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_page_footnotes` -- LOCK TABLES `tiki_page_footnotes` WRITE; /*!40000 ALTER TABLE `tiki_page_footnotes` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_page_footnotes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_pages` -- DROP TABLE IF EXISTS `tiki_pages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_pages` ( `page_id` int(14) NOT NULL auto_increment, `pageName` varchar(160) NOT NULL default '', `hits` int(8) default NULL, `data` text, `description` varchar(200) default NULL, `lastModif` int(14) default NULL, `comment` varchar(200) default NULL, `version` int(8) NOT NULL default '0', `user` varchar(40) default NULL, `ip` varchar(15) default NULL, `flag` char(1) default NULL, `points` int(8) default NULL, `votes` int(8) default NULL, `cache` text, `wiki_cache` int(10) default NULL, `cache_timestamp` int(14) default NULL, `pageRank` decimal(4,3) default NULL, `creator` varchar(200) default NULL, `page_size` int(10) unsigned default '0', `lang` varchar(16) default NULL, `lockedby` varchar(200) default NULL, `created` int(14) default NULL, `is_html` tinyint(1) default '0', PRIMARY KEY (`page_id`), UNIQUE KEY `pageName` (`pageName`), KEY `data` (`data`(255)), KEY `pageRank` (`pageRank`), FULLTEXT KEY `ft` (`pageName`,`description`,`data`) ) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_pages` -- LOCK TABLES `tiki_pages` WRITE; /*!40000 ALTER TABLE `tiki_pages` DISABLE KEYS */; INSERT INTO `tiki_pages` VALUES (1,'HomePage',153,'(:mrgreen:) VIVA Productions Wiki \r\n\r\n(:rolleyes:) ((Production Team Status))\r\n\r\n(:cool:) ((Projects)) \r\n\r\n(:idea:) ((Operations))\r\n\r\n(:question:) ((Training))','',1165603666,'',14,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',159,NULL,NULL,1154639566,0),(5,'AVAYA Sales Conference',63,'-=Meeting Notes=-\r\n\r\n((August 16 Meeting to determine responsibilities))\r\n((August 24 Meeting With Evan))\r\n((September 7 Phone Conference))\r\n((Global Integrated Services Creative Session))\r\n\r\n((Leadership Meeting))\r\n((General Session))\r\n\r\n((Task Lists))','',1158791949,'',11,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',253,NULL,NULL,1155757414,0),(2,'AOL Webcast',29,'-=Required from client=-\r\n*Budget approval\r\n*Powerpoint presentation\r\n*Music playlist\r\n**Walk-in\r\n**Play-ups\r\n**Walk-out\r\n*Set confirmation\r\n**Podium\r\n**Drape\r\n**Gobos\r\n**Set pieces (Squards)\r\n*PIP Image\r\n\r\n-=Load-in Day Completion Checklist=-\r\n*Audio system assembled and set\r\n**PA EQ\r\n**Mic (Lav/HH) EQ\r\n**VOG\r\n**Video Playback\r\n**Intercom\r\n*Lighting system assembled and ready for focus\r\n**Lekos with gobos focused\r\n**Curtain uplighting checked in room and on camera\r\n*Video system assembled and set\r\n**Cameras\r\n**PIP\r\n*Webcast system assembled and set\r\n**PPT uploaded to AOL/VIVA servers\r\n**Encoders (main and b/u) tested\r\n**Slide push tested\r\n\r\n-=Tech Rehearsal Checklist=-\r\n*Road cases stored\r\n*Cable runs taped\r\n*Stage positions spiked\r\n*Confidence monitors positioned\r\n*Audio system check\r\n*Lighting system check\r\n*Video system check\r\n*Tech flows distributed\r\n*Cue-to-cue executed flawlessly\r\n\r\n-=Show Standby Checklist=-\r\n*Confidence monitors on\r\n*Speaker notes cued\r\n*Audio system check\r\n*Lighting system check\r\n*Video system check\r\n*House music playing\r\n*Walk-in lighting/video/graphics look','',1154695104,'',8,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',1102,NULL,NULL,1154642307,0),(4,'Production Team Status',40,'-=Status for the Week of 11-Dec-2006=-\r\n\r\n-=Escalations=-\r\nNo projects currently at risk = (:mrgreen:)\r\n\r\n-=Major Deadlines Approaching=-\r\nAIPAC Stage Designs\r\nAOL Web 2.0 Pitch\r\n\r\n-=Post Production=-\r\n\r\n__Avaya__\r\n*Satchi meeting was great\r\n*Finish PPT pitch today\r\n*January achiever’s club video\r\n**Italian movie clips with Avaya execs inserted\r\n**To tell the spouses of Avaya’s top achievers who they are\r\n*Year in Review – Lorne to invoice\r\n*Guy Clinch – Mobil Communications System Demo\r\n**1-2 minutes long (10 step video “How to Deployâ€)\r\n**Input sessions – having issues with getting accurate info from Guy, Emily overseeing creative\r\n**Julie writing script today\r\n**Due by EOY\r\n**Lots of graphics\r\n*Mashima video edit\r\n**Nancy Malusko opted for audio-only\r\n*WEF video was received – Ben to follow up it was received and format was acceptable\r\n*Photo montage\r\n**complete but we need to make 90 copies\r\n**Ben will own and need to edit label with privacy information\r\n**Shannon will ensure indemnification clause\r\n\r\n__AIPAC__\r\n*Need brainstorming on video imagery for 2007 Policy Conference\r\n\r\n__Hughes__\r\n* Proposal sent for corporate video update\r\n\r\n__Waitex__\r\n*Event went really well, Mr. Li was happy with video and how it looked\r\n*Shannon to follow up to get a meeting with pitch\r\n\r\n-=Graphic Design=-\r\n\r\n__Avaya__\r\n*EMEA partner\r\n**Lorne to invoice\r\n**Steve to provide ProPoint and summary\r\n*WEF Folder – design approved\r\n*Case study design must begin\r\n*Need suggestions for other stock sites i.e. Photos.com\r\n**What are other alternatives – Jupiter Images\r\n\r\n-=Event Production=-\r\n\r\n__Aegis__\r\n* No activity\r\n\r\n__AIPAC__\r\n*Quote from CT is in\r\n*Got quote for ballroom\r\n**Will send RFP to CT now\r\n*Will pitch them on content with relation to Spyder / screen layouts / etc.\r\n*Rich to get quote on having Watchout in-house weeks out from CT or Brian\r\n\r\n__AOL__\r\n*Meeting with Shackley – Shannon to setup\r\n*Shannon to check-in with Linda\r\n\r\n__AVAYA__\r\n*No activity\r\n\r\n__CLT__\r\n* Owe today a Webcast proposal (Lorne)\r\n\r\n__GE Healthcare - Cancun__\r\n*No activity\r\n\r\n__King Pharmaceuticals__\r\n*Emily to follow up today on SOW sign-off\r\n\r\n__Novartis__\r\n*Need to do Webcast extension for November and December\r\n\r\n__Oxman__\r\n* Gig was a success (:lol:)\r\n\r\n-=Event Planning=-\r\n\r\n__NOAA__\r\n*ESA 1/24-1/26 – Wyndham, should sign contract today\r\n*Int’l GC 1/31-2/1 – can invoice\r\n*SES 2/22 – can invoice\r\n\r\n-=Business Development=-\r\n\r\n__MBDA__\r\n* Sponsorship proposal decision should come in today\r\n\r\n-=Internal=-\r\n\r\n__IT__\r\n*TrendMicro popups at show?\r\n*Follow up with Eric \r\n\r\n__Organization__\r\n*Notebooks - Ben\r\n*Server\r\n*Drives - Tom\r\n\r\n__Web site__\r\n*Creative meetings ongoing\r\n\r\n__Freelance Portal__\r\n* Julie leading, Steve to oversee technical implementation\r\n\r\n__Office Remodeling__\r\n*Awaiting final proposal before engaging\r\n*Hope to complete in next three weeks\r\n*Can transition logistics to Rich','',1166482918,'',16,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',2934,NULL,NULL,1154646850,0),(9,'August 16 Meeting to determine responsibilities',6,'*10/7 Management Meeting Set\r\n**Sheraton New Orleans\r\n**Grand Ballroom\r\n**500 at crescent rounds\r\n**5 – midnight\r\n*10/9 Opening General Session\r\n*10/9 Cisco Mandatory Sales Breakout\r\n*10/9 Business Partner 3:30pm – 5pm\r\n**1,000 theater Business Partners (largest subgroup) 550\r\n**Alliance Partners 100\r\n**DevConnect Members 250\r\n**2pm – 3:15pm then take a break\r\n**3:30pm – 5pm business partner meeting in auditorium\r\n*10/10 Tech Conference Opening General Session\r\n**Auditorium\r\n** 293-296\r\n**1,000 theater\r\n**Morning\r\n*10/11 Closing General Session 8am-11am\r\n**Immediately following meet n greet with Lou Gerstner\r\n**11-12\r\n**Room 383\r\n**Need room layout\r\n**Highboys and tables\r\n**Photo backdrop\r\n*10/11 Sales Team Breakout SAO\r\n**2pm-5pm\r\n**293-296\r\n**840 theater\r\n*10/11 Sales Team Breakout NA\r\n**2pm-5pm\r\n**393-396\r\n**740 theater\r\n*10/12 Tech Conference Closing Session\r\n**Sheraton Grand Ballroom\r\n**1,870 theater\r\n\r\nFour Green Rooms – one may be used as a server room, need to follow up – Roger will measure to see which would suffice – no way can we sacrifice a room.\r\n\r\n*Larger breakouts\r\n**Where there is a need for a room producer, we should be involved\r\n**SAO (Strategic Accounts Organization) big meeting\r\n**NA (North America) big meeting\r\n**Sunday Executive meeting\r\n***Needs a producer\r\n***IMAG\r\n***225\r\n***Rounds \r\n***Co-vision (facilitator at every table)\r\n***AVAYA brought laptops\r\n***Immediately following will be a “new-hire†reception\r\n**Jack’s Meeting\r\n***Thursday Arrive\r\n***Friday all day show\r\n***Saturday half day show\r\n***Some people will stay through conference\r\n***250 possibly up to 450\r\n***Needs producer, working directly with house AV\r\n\r\nCan we get the auditorium on Thursday 10/5?','',1158161099,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',1733,NULL,NULL,1158161099,0),(6,'August 24 Meeting With Evan',13,'-=General=-\r\n*Jocelyn concerned about timing, wants to meet with Lorne, need to schedule something ASAP (:eek:)\r\n*Need separate budgets for SMBS, GIS, SAO and NA general sessions\r\n*Lisa Merring could be great point of contact for running down marketing materials, Evan will confirm\r\n*Unified communications, big industry theme for Cisco and Microsoft\r\n*Four key elements in AVAYA product family\r\n**IP telephony (converged communications)\r\n***Soft phones\r\n***IP phones\r\n***Data and voice convergence\r\n**InfoWorker\r\n***About the experience\r\n***Mobility\r\n**Customer service (contact center)\r\n**Communication-enabled business processes (intelligent communications differentiator for AVAYA)\r\n***SOA (Services Oriented Architecture)\r\n\r\n-=Sunday=-\r\n*Leadership Meeting is the larger group 435 people (Charlie\'s meeting)\r\n**Meeting piggybacks on Jack Feeney\'s meeting which is Thurs-Sat, thus there will already be gear in the room\r\n***Need to talk to Jack and Suzanne\r\n***Evan will coordinate\r\n**Meeting next week with Charlie Ill to review\r\n**Charlie will need some help in preparing his presentation\r\n**Need to schedule time with Charlie right away\r\n**Need to be seated at crescents\r\n**Likely will include an audience response system\r\n***Last year used covision\r\n***Need power at each table\r\n***Need LAN at each table\r\n**Deb Santagada - AVAYA field communications person for the Leadership Meeting\r\n\r\n*Need a matrix of meeting / producer / contact\r\n\r\n-=Monday=-\r\n*Need rehearsal times for both Partners meetings\r\n*DevConnect (250) and Alliance (250)\r\n\r\n-=Tuesday=-\r\n*Cisco Breakout - video only\r\n*Expo - still need to coordinate with Mike who is designing entertainment, etc.\r\n\r\n-=Wednesday=-\r\n*On-site closing video\r\n*Law group doing Habitat for Humanity on Tuesday, needs to be shot for closing video\r\n*Leave the SAO and NA skill clinics in place for now, in case we need to support\r\n\r\n-=Thursday=-\r\n*SMBS will be an all-day event in the auditorium\r\n**Will be a produced session\r\n**Need a contact right away\r\n*Global Integrated Sales (GIS) - contact Janelle\r\n*SAO and NA removed\r\n*Everything except SMBS is at the hotels\r\n\r\n-=Videos=-\r\n*Year in Review video will be discussed with Jocely\r\n**We can prep a list of assets produced over past year\r\n**Lynne Newman input i.e. media analyst view\r\n**Keep it high level\r\n**Don\'t over-focus on FIFA, but show the coverage that it yielded\r\n**Lot\'s of growth in DevConnect\r\n**Big finale is about the changes and we\'re ready to write the next chapter\r\n**Really launched Intelligent Communications this year\r\n**Let\'s get our hands on the executive summaries that Jocelyn created\r\n**Need to show up with a treatment\r\n*Customer videos\r\n**Raw content is being duplicated now, will return tapes tomorrow\r\n**Allstate, Clay (customer) and the sales team\r\n***why they chose AVAYA\r\n***Differentiation, embedding communications in their business process (intelligent communications)\r\n***3-5 minute, very rich story\r\n***Allstate story hits on all four key elements of the AVAYA product family\r\n**Pull in from Jenny some recent win videos\r\n**We\'re missing the partner story, and the South American story\r\n','',1156445398,'',8,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',3128,NULL,NULL,1156440380,0),(7,'September 7 Phone Conference',12,'-=Charitable Events=-\r\n*300 people going to City Park on Sunday\r\n*Law Conference going with Habitat for Humanity on Tuesday\r\nWill VIVA be required to film these events for press release (:question:)\r\n\r\n-=Program=-\r\n\r\nEvan:\r\nWhat is the flow?\r\nWho are the speakers?\r\n\r\nJA:\r\nWe have Charlie, need to have Karen (to talk about technology direction)\r\nNeed to find a way to have Mickey and Fran talking as a team\r\n*Can try to do in the kitchen\r\n*Their message TBD but will be based on Power of One and the Ten Principles\r\n__Wednesday__\r\n*Gerstner is an hour (9:45-10:45)\r\n*Closing with Charlie (gives call to action) and JA\r\n*Can Mickey and Fran do something fun with the cooking theme?\r\n\r\n__Monday__\r\nOpening\r\nCharlie welcome\r\nLou welcome\r\nMike speech\r\nBREAK\r\nMickey/Fran\r\nAVAYA chef\r\nMarketing update\r\nCharlie speech\r\n\r\n--Due to pending layoffs, the AVAYA build isn\'t feeling appropriate\r\n--Issues with Jack Morton - not an option\r\n--Budget issues were raised\r\n\r\n-=Video Production=-\r\n*Customer videos\r\n**Allstate looking good - Clay Roberts likes the concept\r\n**University of Macau - won\'t work, but possibly AIS in Thailand would be a good subject for a regional story\r\n*Cisco video\r\n**Julie working with Elizabeth Usher\r\n*Year in Review\r\n**Need to send script to JA for signoff\r\n\r\n','',1157634817,'',6,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',1281,NULL,NULL,1157633062,0),(8,'Global Integrated Services Creative Session',5,'-=Creative Session=-\r\n"Call to Action" has been the historical theme - last year was "Let\'s Grow For It" and "Game On"\r\nWe\'ll need to work on PPT templates, opening video (with Exec sound bytes?) and maybe an onsite video\r\n\r\nNew driver is INNOVATION - how can they leverage innovation for profitable returns\r\n*Organic growth\r\n*Process efficiencies\r\n\r\nCreative solution must drive energy\r\n\r\nraise the bar\r\n\r\nFinesse\r\nMomentum\r\nPace\r\nAction\r\nAchieve\r\nEmpower\r\nInnovate\r\nPrecision\r\nAccurate\r\nRecharge\r\nReenergize\r\nEndurance\r\nProfit\r\n\r\nPower Synonyms\r\n*generate\r\n*control\r\n*command\r\n*energize\r\n\r\n*Innovate to Generate\r\n**Light bulbs\r\n**Money\r\n**Wireframes morphing\r\n**New Ideas Create More Profit\r\n***Many other industries making processes more efficient to generate profit\r\n*Charge Ahead\r\n**Lightning bolt / energy\r\n**Future metaphors\r\n**Group moving as one\r\n*Get Plugged In\r\n**Connect\r\n**Energize\r\n**Visuals\r\n***Electrical Plug\r\n***Salesman plugged to client\r\n***"Power of One" logo embodied in a plug\r\n*Transform Your Thinking\r\n**Muscle to the brain\r\n**Clenched fist morphing into the thinker','',1157734244,'',2,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',1131,NULL,NULL,1157734146,0),(10,'Leadership Meeting',10,'-=Sept 8 Conference Call=-\r\n\r\n*CoVision by 3 pm no other network operating in the room\r\n*Offsite rehearsal location???\r\n*2 radios if possible\r\n*Rehearsals between 6-9\r\n*Lou, Mike, Charlie (will rehearse a bit) Lou/Mike not so much\r\n*Advance with Josh, determine T1 need\r\n*Electric drop to each round\r\n*6 chairs per round\r\n*480, maybe slightly more - 80 table rounds\r\n*AVAYA IT person taken care of by Deb\r\n\r\n-=CoVision Email Thread=-\r\n\r\nJosh, \r\n\r\nWill any of your servers need Internet access? If not, then it sounds like you will have a self contained network setup as last year. If you need Internet connectivity, we need to know immediately how network drops/IP Addresses you will need to the Internet. Thank you. \r\n\r\nRegards,\r\nJohn Tuck --------------------------------------------------------------------------------\r\n\r\nFrom: Josh Kaufman [mailto:joshk@covision.com] \r\nSent: Wednesday, September 13, 2006 10:32 AM\r\nTo: D\'Anton, Melissa A (Melissa)\r\nCc: Pang, Kiang S (Alex); Tuck, John R, Jr (John); smackey@getviva.com\r\nSubject: Re: GS&M Managers Meeting: Technical Requirements for CoVision Process\r\n\r\n My cell phone is (415) 531-5937. I\'m on the west coast and ask that people not call before 11am Eastern unless there is an emergency. I will, though, be on the east coast starting tomorrow for two weeks (Ohio & New York).\r\n\r\nHere\'s the email I sent to Deb:\r\n\r\nIdeally, we would setup the network and servers sometime the day before, afternoon is fine. This setup entails a 6 x 30" table, off to the side or in the back of the room. On the table will be two laptop servers and an ethernet switch. From the switch I will run ethernet cables out into the room to three different places, where I will put wirless access points.\r\n\r\nSo, we would need to have the server table with power, as I described above, available at the 3:00 timeslot. If I understand correctly, they are not using the whole room the day before, so this may be possible? At that time, I will setup one access point at the server table. After 6:00, I will run ethernet out to the two remaining access points and our network/server setup will be complete.\r\n\r\nThe question really is when and where do our participants comes with their laptops to get connected and test the network. I would prefer that we schedule them the afternoon before the meeting as we did last year. Would it be possible to do this in the part of the room that is separated by the airwall? If not, then maybe we have to schedule them for Saturday evening, after 7:30 or 8:00, but I\'m not sure how realistic it is to expect them to come then. So, I think our best shot is to figure out how to setup the server table and one access point the afternoon before so we can start to do laptop tests.\r\n\r\nOther than power drops to the server table and other wireless turned off, there are no other requirements.\r\n\r\n--JK\r\n\r\n\r\nOn Sep 13, 2006, at 6:36 AM, D\'Anton, Melissa A ((Melissa)) wrote:\r\n\r\nThanks Josh. Can you please "resend" us the email that you sent to Deb in regards to your technical requirements? I do not have it electronically and would like to share it with the Avaya IT contacts. Also, Alex and John have some questions that they need answered prior to the meeting next week. Can they try you on your cell for some information?\r\n\r\nThanks,\r\nMelissa\r\n\r\n-=Intial Call With Jack Feeney=-\r\n\r\nBreakouts on Saturday only - starting 9-noon\r\nlunch upstairs noon-1\r\nGeneral Session 1-5:30 in C,D,E\r\n\r\nLoad-in at noon (tentatively)\r\nFran finalizing agenda \r\n\r\nStage in a/b\r\n\r\nFran\'s session is crescent rounds in C with 6 per = 36 tables - hotel A/V\r\n','',1158791847,'',2,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',3641,NULL,NULL,1158173965,0),(11,'General Session',9,'((Production Task List))\r\n \r\n\r\n','',1158247245,'',3,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',31,NULL,NULL,1158247002,0),(12,'Production Task List',5,'1) Conf Conv Center - ~~#FF0000:Load-in of Big Screen (talk to them – escalator?)~~\r\n\r\n2) Audio Plan - Cabling Plan - ~~#FF0000:Need to provide measurements~~\r\n\r\n 3 Discreet Rigs (Wiring Schematic)\r\n\r\n Audio Plan (Speakers / Rigging / band? etc)\r\n\r\n3) Send Room Layout & CAD to Chris\r\n\r\n4) Audio 30"wide x 11" tall (5x3) - Create 3D to confirm hang points\r\n\r\n5) 20" Surround (Physical 23.5\' tall x 89.6\')\r\n\r\n6) Need to get Ear Monitors (Mig does not have) – ~~#FF0000:VER rental? Local AV company?~~\r\n\r\n7) DVCam Decks (DSR 45) - NEED TO Provide ISO RECORD DECKS – ~~#FF0000:need to rent 2 DSR 45~~\r\n\r\n8) DVD-R Stock - VIVA PROVIDES (Chris to confirm best ones to get) –~~#FF0000: work with Manfred spec tape, order from TapeResources~~\r\n9) Confirm Back Stage Video Monitors ~~#FF0000:(Do we need these) does convention center have?~~\r\n\r\n9a) ~~#FF0000:Need holding room for choir~~\r\n\r\n10) PC-Based Drive for Videos (Need to get this to transfer from MAC to DDR) ~~#FF0000:Lacie PC format (get 2, firewire and USB)~~\r\n\r\n11) Breakout Projection (Confirm Wiring, Placement, Lenses) ~~#FF0000:where dropdown? Cart for projector?~~\r\n\r\n11a) ~~#FF0000:Confidence monitor projection, flown truss, cable reqs~~\r\n\r\n12) Laptop for B/Os (Viva to supply for GS BO\'s) ~~#FF0000:create IT plan~~\r\n\r\n13) FOH Drape - How much - Where is FOH going / Camera Positions ~~#FF0000:need to figure out with Tim~~\r\n\r\n14) Drape (Sides, etc - Who provides)~~#FF0000: tech, runoff~~\r\n\r\n15) Projectors for Confidence - ~~#FF0000:flown?~~\r\n\r\n16) Fork Lift - Venue to supply ~~#FF0000:talk to tim (manlift and forklift)~~\r\n\r\n17) Man Lift or Scissor Lift - Venue to supply~~#FF0000: (manlift for fascia, forklift for projectors)~~\r\n\r\n18) 12 call (4 truck loaders x 2-4 hours) ~~#FF0000:VIVA to get stagehands for MIG~~\r\n\r\n 2 sound\r\n\r\n 6 Video\r\n\r\n19) Video Switchers for Cisco Meetings (VIVA to rent for Tuesday\'s meeting ~~#FF0000:done~~\r\n\r\n20) Confirm mic\'s / Audio gear / 8 mixes band?\r\n\r\n21) Order motors & create plot from Venue ~~#FF0000:Work with Rich~~\r\n\r\nMOTORS:\r\n\r\n4 1/2 tons for Screen\r\n\r\nAudio - 3 x 1/2 tons\r\n\r\nDelay 4 motors + Rope to put screens + 10\' stick (from Chris)\r\n\r\n22) Work with house & MIG to create lighting plot\r\n','',1158247262,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',2259,NULL,NULL,1158247262,0),(13,'Task Lists',24,'((Lorne Sept 20))\r\n((Lorne Sept 18))\r\n((Steve Sept 18))\r\n((Steve Sept 15))\r\n((Lorne Sept 13))','',1158948906,'',6,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',93,NULL,NULL,1158792212,0),(14,'Lorne Sept18',1,'EXECUTIVE LEADERSHIP - SUNDAY PRODUCTION \r\n Room Layout Rich \r\n Proudciton Schedule ~~#FF0000:Steve ~~\r\n Contact List ~~#FF0000:Ben/Hillarie ~~\r\n Security Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Hotel Requests ~~#FF0000:Rich ~~\r\n Power \r\n Staging \r\n Seating \r\n Truck Schedule \r\n Confirm AV ~~#FF0000:Steve/Rich/Lorne~~ \r\n PPT ~~#FF0000:Ray Kivinski~~ \r\n Confirm Details with Lori/Jack Feeney ~~#FF0000:Steve ~~\r\n Meal Requests ~~#FF0000:Steve/Ben ~~\r\n Set Elements: Gobos/Signs/Etc ~~#FF0000:Steve/Lorne~~ \r\n Kerwyn - Details ~~#FF0000:Steve/Rich ~~\r\n Viva Computers / Equipment List ~~#FF0000:Rich/Ben ~~\r\n Tech Flow \r\n Spealer Rehearsal Room / Schedule \r\n \r\nGENERAL SESSION PRODUTION \r\n CAD - Room Layout (Stage/ Backstage / Camera Pos / FOH / Etc.) ~~#FF0000:Rich ~~\r\n Production Schedule ~~#FF0000:Steve ~~\r\n Rehearsal Schedule \r\n Security Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Meal Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Contact List ~~#FF0000:Ben/Hillarie~~ \r\n PPT ~~#FF0000:Manfred/Carlos~~ \r\n Wide Screen Graphic / Animations ~~#FF0000:Manfred/Matthew~~ \r\n Gobos ~~#FF0000:Steve ~~\r\n Convention Center ~~#FF0000:Steve ~~\r\n Truck Schedule \r\n Power \r\n Lifts / Fork Lifts \r\n Drape \r\n Set Elements ~~#FF0000:Lorne/Steve/Rich~~ \r\n Stage ~~#FF0000:Lorne/Steve/Rich ~~\r\n Seating ~~#FF0000:Rich ~~\r\n Lighting Plot Rich/MIG \r\n Production Office Supplies ~~#FF0000:Hillarie ~~\r\n Viva Computers / Equipment List ~~#FF0000:Rich/Ben ~~\r\n Tech Flow ~~#FF0000:Lorne/Emily/Ben~~ \r\n Music \r\n \r\nLOU GERSTNER \r\n Send Balance \r\n Amenity for Room - Coordinate with Lori \r\n Make Arrangements for VIP Reception \r\n Change Time? \r\n Finalize Flight Arrangements \r\n \r\nOPENING ACT \r\n Choir \r\n Video- Treatment \r\n Edit Video \r\n Song Lyrics / Talk To Kurt \r\n "Script" \r\n \r\nAVAYA IRON CHEF \r\n Live Script \r\n Producutcion Schedule for Shoot \r\n Crew / Gear Shoot \r\n Props for Shoot \r\n Post-Production Schedule \r\n Emeril \r\n Alton Brown \r\n Set Elements \r\n Find Judges - Shoot or Live? \r\n \r\nStudio Shoot \r\n Book Talent \r\n Book Studio \r\n Graphics for Plasmas \r\n Book Crew: DP, Audio, Gaffer, Prompter \r\n Tape Stock, Hard Drives \r\n \r\nCUSTOMER VIDEOS \r\n Allstate \r\n Shoot on Thursday? Crew? \r\n Script \r\n Whirlpool \r\n Get approval from Avaya \r\n Modify Script per Evan (once rights are approved) \r\n InterMountain Healthcare \r\n Script \r\n TWC \r\n Script \r\n \r\n \r\nBEAT CISCO VIDEOS \r\n Production Schedule \r\n Editing \r\n \r\n \r\nCLOSING / ON-SITE VIDEO \r\n Crew & Gear \r\n Tape Stock \r\n Hard Drives \r\n Production Schedule \r\n \r\n \r\nBUSINESS PARTNERS VIDEO \r\n Shooting Plan \r\n Editing Plan \r\n Treatment \r\n \r\n \r\nEXPO \r\n Qoute for Lighting \r\n Entertainment \r\n \r\nPARTNERS MEETING \r\n PPT \r\n Widescreen \r\n Production Schedule \r\n Rehearsals, etc \r\n \r\nBUSINSESS PARTNERS MEETING \r\n PPT \r\n Widescreen \r\n Production Schedule \r\n Rehearsals, etc \r\n Video?? \r\n \r\nTECHNICAL CONFERENCE GENERAL SESSION \r\n PPT \r\n Production Schedule \r\n Rehearsals, etc \r\n \r\nMANDATORY BREAKOUTS \r\n PPT \r\n Production Schedule \r\n Rehearsals, etc \r\n','',1158792316,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',3155,NULL,NULL,1158792316,0),(15,'Lorne Sept 18',2,'EXECUTIVE LEADERSHIP - SUNDAY PRODUCTION \r\n Room Layout Rich \r\n Proudciton Schedule ~~#FF0000:Steve ~~\r\n Contact List ~~#FF0000:Ben/Hillarie ~~\r\n Security Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Hotel Requests ~~#FF0000:Rich ~~\r\n Power \r\n Staging \r\n Seating \r\n Truck Schedule \r\n Confirm AV ~~#FF0000:Steve/Rich/Lorne~~ \r\n PPT ~~#FF0000:Ray Kivinski~~ \r\n Confirm Details with Lori/Jack Feeney ~~#FF0000:Steve ~~\r\n Meal Requests ~~#FF0000:Steve/Ben ~~\r\n Set Elements: Gobos/Signs/Etc ~~#FF0000:Steve/Lorne~~ \r\n Kerwyn - Details ~~#FF0000:Steve/Rich ~~\r\n Viva Computers / Equipment List ~~#FF0000:Rich/Ben ~~\r\n Tech Flow \r\n Spealer Rehearsal Room / Schedule \r\n \r\nGENERAL SESSION PRODUTION \r\n CAD - Room Layout (Stage/ Backstage / Camera Pos / FOH / Etc.) ~~#FF0000:Rich ~~\r\n Production Schedule ~~#FF0000:Steve ~~\r\n Rehearsal Schedule \r\n Security Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Meal Schedule ~~#FF0000:Ben/Hillarie ~~\r\n Contact List ~~#FF0000:Ben/Hillarie~~ \r\n PPT ~~#FF0000:Manfred/Carlos~~ \r\n Wide Screen Graphic / Animations ~~#FF0000:Manfred/Matthew~~ \r\n Gobos ~~#FF0000:Steve ~~\r\n Convention Center ~~#FF0000:Steve ~~\r\n Truck Schedule \r\n Power \r\n Lifts / Fork Lifts \r\n Drape \r\n Set Elements ~~#FF0000:Lorne/Steve/Rich~~ \r\n Stage ~~#FF0000:Lorne/Steve/Rich ~~\r\n Seating ~~#FF0000:Rich ~~\r\n Lighting Plot Rich/MIG \r\n Production Office Supplies ~~#FF0000:Hillarie ~~\r\n Viva Computers / Equipment List ~~#FF0000:Rich/Ben ~~\r\n Tech Flow ~~#FF0000:Lorne/Emily/Ben~~ \r\n Music \r\n \r\nLOU GERSTNER \r\n Send Balance \r\n Amenity for Room - Coordinate with Lori \r\n Make Arrangements for VIP Reception \r\n Change Time? \r\n Finalize Flight Arrangements \r\n \r\nOPENING ACT \r\n Choir \r\n Video- Treatment \r\n Edit Video \r\n Song Lyrics / Talk To Kurt \r\n "Script" \r\n \r\nAVAYA IRON CHEF \r\n Live Script \r\n Producutcion Schedule for Shoot \r\n Crew / Gear Shoot \r\n Props for Shoot \r\n Post-Production Schedule \r\n Emeril \r\n Alton Brown \r\n Set Elements \r\n Find Judges - Shoot or Live? \r\n \r\nStudio Shoot \r\n Book Talent \r\n Book Studio \r\n Graphics for Plasmas \r\n Book Crew: DP, Audio, Gaffer, Prompter \r\n Tape Stock, Hard Drives \r\n \r\nCUSTOMER VIDEOS \r\n Allstate \r\n Shoot on Thursday? Crew? \r\n Script \r\n Whirlpool \r\n Get approval from Avaya \r\n Modify Script per Evan (once rights are approved) \r\n InterMountain Healthcare \r\n Script \r\n TWC \r\n Script \r\n \r\n \r\nBEAT CISCO VIDEOS \r\n Production Schedule \r\n Editing \r\n \r\n \r\nCLOSING / ON-SITE VIDEO \r\n Crew & Gear \r\n Tape Stock \r\n Hard Drives \r\n Production Schedule \r\n \r\n \r\nBUSINESS PARTNERS VIDEO \r\n Shooting Plan \r\n Editing Plan \r\n Treatment \r\n \r\n \r\nEXPO \r\n Qoute for Lighting \r\n Entertainment \r\n \r\nPARTNERS MEETING \r\n PPT \r\n Widescreen \r\n Production Schedule \r\n Rehearsals, etc \r\n \r\nBUSINSESS PARTNERS MEETING \r\n PPT \r\n Widescreen \r\n Production Schedule \r\n Rehearsals, etc \r\n Video?? \r\n \r\nTECHNICAL CONFERENCE GENERAL SESSION \r\n PPT \r\n Production Schedule \r\n Rehearsals, etc \r\n \r\nMANDATORY BREAKOUTS \r\n PPT \r\n Production Schedule \r\n Rehearsals, etc \r\n','',1158792370,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',3155,NULL,NULL,1158792370,0),(16,'Steve Sept 18',8,'X Tell Tim no rehearsals on Saturday\r\nX Meals\r\nX Security\r\nX Adjust labor call to fit new schedule\r\nX confirm new Monday schedule\r\n- hotel AC drops for Leadership Meeting\r\nX NEED CAMERAMEN!!! - sent request\r\nX NEED TD!!!\r\nX Windows hard drive\r\nX DVD-R\r\nX Tape stock\r\nX Joe D Camera\r\n- Ear monitors - sent request\r\nX Snakes?\r\n- Stage carpet - sent two RFPs\r\nX Bishop\r\n - (2) Po1 (2) Avaya both in movers\r\n- Sheraton hotel sheet w/ power, stage\r\n- Sub agreements','',1158938244,'',3,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',461,NULL,NULL,1158792394,0),(17,'Steve Sept 15',1,'X Confirm Jim Miller\r\n- Expo lights $10k\r\nX Carl Mack new proposal\r\nX 1,600 memory sticks (currently dead)\r\nX 3 Polaroid Photographers (need quote)\r\nX Freeman set quote\r\nX Need editor\r\n- Owe to AVAYA\r\n - Meals\r\n X Security\r\n X Rehearsal schedule','',1158792418,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',245,NULL,NULL,1158792418,0),(18,'Lorne Sept 20',6,'Status of these items?\r\n \r\nCarpet\r\n__X __Gobos\r\n__X __Camera Gear for Joe D (ENG Package with light DSR-250)\r\n__X __DVCam Decks for General Session (need 4 DSR45s)\r\n http://www.digitalsystemsrentals.com/dsr45.shtml\r\n http://www.verrents.com/vtrs.php\r\nHard Drives for Editing\r\n__X __PC Formatted Hard Drive for Transfer to DDR (USB &Firewire)\r\n__X __Tape Stock\r\n__X __DVD-R Stock (We should pre-print these)\r\n__X __Local Labor - Final Estimate\r\n__X __Location of confidence screens\r\n \r\nCAD for Conv Ctr (including backstage rooms)\r\n__X __Layout for Managers Meeting\r\nHotel Request for Managers Meeting (have we spoken to the hotel)\r\nCertificates of insurance for Conv Ctr & Hotel (may need for VER too)\r\nContact Lists\r\n__X __Security Schedules\r\n__X __Production Schedules\r\n__X __Rehearsal Schedules\r\nOrder furniture for VIP reception / Backdrops for photos\r\nPhotographer ?? Need to confirm\r\n \r\n__X __Quote for Lighting for Expo + rigging requirements if needed\r\n \r\nTalk to Kurt Yeager about sessions - ~~#FF0000:Ben/Lorne~~\r\n \r\n ','',1158938199,'',2,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',1042,NULL,NULL,1158938155,0),(19,'Lorne Sept 13',1,' \r\n\r\n1) Conf Conv Center - Load-in of Big Screen ~~#FF0000:(talk to them – escalator?~~\r\n\r\n2) Audio Plan - Cabling Plan - Need to provide measurements\r\n\r\n 3 Discreet Rigs (Wiring Schematic)\r\n\r\n Audio Plan (Speakers / Rigging / ~~#FF0000:band~~? etc)\r\n\r\n3) Send Room Layout & CAD to Chris\r\n\r\n4) Audio 30"wide x 11" tall (5x3) - Create 3D to confirm hang points\r\n\r\n5) 20" Surround (Physical 23.5\' tall x 89.6\')\r\n\r\n6) Need to get Ear Monitors (Mig does not have) – ~~#FF0000:VER rental? Local AV company?~~\r\n\r\n7) DVCam Decks (DSR 45) - NEED TO Provide ISO RECORD DECKS – ~~#FF0000:need to rent 2 DSR 45~~\r\n\r\n8) DVD-R Stock - VIVA PROVIDES (Chris to confirm best ones to get) – ~~#FF0000:work with Manfred spec tape, order from TapeResources~~\r\n\r\n9) Confirm Back Stage Video Monitors (Do we need these) ~~#FF0000:does convention center have?~~\r\n\r\n9a) ~~#FF0000:Need holding room for choir~~\r\n\r\n10) PC-Based Drive for Videos (Need to get this to transfer from MAC to DDR) ~~#FF0000:Lacie PC format (get 2, firewire and USB)~~\r\n\r\n11) Breakout Projection (Confirm Wiring, Placement, Lenses) ~~#FF0000:where dropdown? Cart for projector?~~\r\n\r\n~~#FF0000:11a) Confidence monitor projection, flown truss, cable reqs~~\r\n\r\n12) Laptop for B/Os (Viva to supply for GS BO\'s) ~~#FF0000:create IT plan~~\r\n\r\n13) FOH Drape - How much - Where is FOH going / Camera Positions ~~#FF0000:need to figure out with Tim~~\r\n\r\n14) Drape (Sides, etc - Who provides) ~~#FF0000:tech, runoff~~\r\n\r\n15) Projectors for Confidence\r\n\r\n16) Fork Lift - Venue to supply ~~#FF0000:talk to tim (manlift and forklift)~~\r\n\r\n17) Man Lift or Scissor Lift - Venue to supply ~~#FF0000:(manlift for fascia, forklift for projectors)~~\r\n\r\n18) 12 call (4 truck loaders x 2-4 hours) VIVA to get stagehands for MIG\r\n\r\n 2 sound\r\n\r\n 6 Video\r\n\r\n19) Video Switchers for Cisco Meetings (VIVA to rent for Tuesday\'s meeting ~~#FF0000:done~~\r\n\r\n20) Confirm mic\'s / Audio gear / 8 mixes band?\r\n\r\n21) Order motors & create plot from Venue ~~#FF0000:Work with Rich~~\r\n\r\nMOTORS:\r\n\r\n4 1/2 tons for Screen\r\n\r\nAudio - 3 x 1/2 tons\r\n\r\nDelay 4 motors + Rope to put screens + 10\' stick (from Chris)\r\n\r\n22) Work with house & MIG to create lighting plot\r\n\r\n \r\n','',1158949018,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',2237,NULL,NULL,1158949018,0),(20,'Projects',30,'((Active))\r\n\r\n((Completed))','',1165268187,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',27,NULL,NULL,1165268187,0),(21,'Active',27,'((AIPAC Policy Conference 11 March 07))\r\n\r\n((AIPAC National Summit 2007))','',1191871596,'',3,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',73,NULL,NULL,1165268276,0),(22,'King Pharmaceuticals Leadership 24 Jan 07',44,'((Creative Proposal 1 Dec 06))\r\n((Production Phone Conference 4 Dec 06))\r\n((Proposal Phone Conference 4 Dec 06))\r\n((Creative Proposal 5 Dec 06))\r\n((Preliminary Budget Estimate 6 Dec 06))','',1165422161,'',7,'birey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',186,NULL,NULL,1165268312,0),(23,'Proposal Phone Conference 4 Dec 06',11,'12/4/06 Conf. Call Notes \r\n\r\n__Feedback __\r\n\r\nOverall: \r\n\r\n*Liked all 3 proposed approaches – would like to integrate elements of all 3\r\n*Need to be aware that the audience is mostly, but not all, men. Make sure that all elements appeal to varied demographics\r\n\r\n__"Driving Performance"__\r\n\r\nPros:\r\n\r\n*Promotes a team concept\r\n*Has an actionable message; “It starts with youâ€\r\n*Highlights driving a performance based culture\r\n\r\nCons:\r\n\r\n*Racing theme is closely related to Bristol; Has been played out\r\n\r\n__"Built To Last"__\r\n\r\nPros:\r\n\r\n*Opening sequence = mucho kudos\r\n*Emotionally connecting\r\n*Rhythmic performers are new/interesting\r\n*Theme is serious but interesting; not too whimsical\r\n*Can be tied in metaphorically with different business elements building to work together\r\n*Sub-themes can be readily tied in\r\n\r\nCons:\r\n\r\n*Need to rethink name; “Built To Last†is outdated/not valid\r\n \r\n__"Peak Performance"__\r\n\r\nPros:\r\n\r\n*Connects nicely with business tie-in to Super Bowl \r\n*Emphasizes operating at a high level, as opposed to just driving performance\r\n*Tele-strator is a good tool to work into the presentations/videos\r\n\r\nCons:\r\n\r\n*Sports captures too narrow of a demographic\r\n\r\nAction Items:\r\n\r\n*Create a revised creative proposal that centers around “Built to Last†but also combines positive elements of other two sports approaches\r\n*Think up alternate team-building activities for Day 1\r\n* Determine itemized list of possible production elements (video and event)\r\n','',1165268539,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',1523,NULL,NULL,1165268539,0),(25,'Operations',10,'((Checklists))\r\n((SOPs))','',1166559851,'',2,'birey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',24,NULL,NULL,1165270483,0),(24,'Completed',4,'((AVAYA Sales Conference))\r\n\r\n((King Pharmaceuticals Leadership 24 Jan 07))','',1170266622,'',2,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',75,NULL,NULL,1165270399,0),(26,'Checklists',3,'((AOL Webcast))','',1165270514,'',1,'admin','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'admin',15,NULL,NULL,1165270514,0),(27,'Creative Proposal 1 Dec 06',4,'Second Annual King Leadership Conference\r\nJanuary 24 – 26, 2007\r\nBraselton, GA\r\nChateau Élan, Winery & Resort\r\n\r\n-=Overview of VIVA’s Objectives:=-\r\n\r\n*To Develop a theme that will express the importance of a “High Performance Culture†within the Leadership team\r\n\r\n*Create an exciting, emotional experience for the audience while delivering a pragmatic and relevant business message\r\n\r\n*Emphasize the importance of exemplary leadership practices in creating a growth-oriented company \r\n\r\n*Conceptualize ways to bring the theme to life through high-energy video, live performance, music, staging, and presentations\r\n\r\n*Establish a lasting, powerful message that will direct company culture throughout fiscal year 2007\r\n\r\n*Develop a creative approach that will help attendees understand 2007 corporate objectives\r\n\r\n*Give a call to action: “It starts with YOU, The Leadership Differenceâ€\r\n\r\n*Drive home message of creating a high performance cultures\r\n\r\n*Celebrate successes of 2006 – King doesn’t do enough celebrating\r\n\r\n*Add more interactivity\r\n\r\n*Add more pizzaz\r\n\r\n*Webcast available on demand\r\n\r\n*Be inspirational\r\n\r\n \r\n-=Creative Approach #1: “Built to Lastâ€=-\r\n\r\n__Theme Rationale: __\r\nKing is a young company with the feeling of a start-up. The company is at a crossroads, and executives recognize the importance of cultural change. It is time to promote a high performance culture that values and cultivates leadership. With future-focused vision, King aims to put new leadership and accountability practices/attitudes in place to ensure a successful organization that will stand the test of time and prosper long into the future. The keystone is the power of leadership. This conference must create a call to action among King’s top 100 leaders. Content must be presented in a way that stirs them to take ownership, take action, and adopt this new language of leadership - ensuring that King is “Built to Last.â€\r\n\r\n__Opening Sequence: Building Leadership Piece by Piece__\r\nAttendees enter the room and hear subtle sounds of construction. Slow moving lights highlight the stage set. The backdrop is an abstract “skyline†and the top edges of the buildings form the outline of K–I–N–G. \r\n\r\nEveryone is seated and lights cut to black. The sounds of drills, hammers, and saws come together in an energizing original song. The song escalates and lights come up full as a group of rhythmic performers in construction costumes take the stage. Some performers carry pieces of pipe, others different sized metal-frame boxes. In perfect choreography with the music, the performers start building something onstage…\r\n\r\nA performer places a large box center stage. At the very instant the box is set in place, a video image starts playing within it. Performers stack more boxes on and around it. The audience is amazed. Within the boxes they see video footage of famous leaders saying inspirational, powerful quotations. (These could be sports leaders, political leaders, social leaders, etc). The soundtrack is infused with the natural sound of their voices. This choreography continues as a large video wall is built onstage. The performers are literally assembling the building blocks of leadership before the audiences’ eyes. When the final box is placed, the entire video wall comes to life with the King Pharmaceuticals Logo. Music and video crescendo in a high-energy video montage about leadership – perhaps also incorporating interview bytes from King Executives. When the video concludes, Brian comes to stage to drive home the message that everyone in the audience must work together to build a leadership and performance culture, piece by piece. This will be a perfect segue way into his discussion about objectives for 2007. \r\n\r\nCelebrating 2006 Successes & King TV Activity: “Virtual Talk Show Hostâ€\r\nAfter the high-energy opening to the conference, attendees will be excited to share successes from 2006. Rather than just invite people to stage to share their stories, we propose the incorporation of a “virtual talk show host.†We will videotape this host personality in our studios delivering scripted intros/outros to each individual who will be sharing a story. These short video bumpers will ensure that energy levels remain high throughout this part of the program, increase production value, and provide creative opportunity to enhance messages with graphics and other visual illustrations.\r\n\r\nThis news host style can also enhance the King TV activity… we can actually bring the host personality on-site to give “in the field†commentary on each team as they work. And edit each morning’s broadcast to feel more like a morning news show. \r\n\r\n__Audience Response Systems:__\r\nAfter the energy of day one, it will be critical to maintain high interest during the EVP presentations on day 2. This content is vital, so we propose the addition of interactivity through individual audience response systems for each attendee. Not only does this technology demand interactivity, it also boosts message retention and delivers sophisticated data capture and polling abilities that could prove valuable to executive leadership. \r\n\r\nARS technology allows you to do live polling and quizzing of the audience, as well as game show applications. Many different result graphs can be immediately displayed, including bar charts, pencil graphs, and pie charts. ARS has capability for multiple choice questions, priority ranking applications that allow you to poll your audience to prioritize a listing, and X-Y Mapping to assess multiple issues against multiple criteria with the results plotted on a scattergram. We could weave ARS throughout conference sessions – and the technology would prove particularly helpful on day 3 when you seek to codify conference lessons. \r\n\r\n__Closing Video:__\r\nAfter CEO call to action and tool-kit sendoff, closing video (also for web positing or distribution on DVD) “Built to Last†implies a directive that will continue beyond the life of the conference. In order to leave the attendees with this feeling, the closing video would begin with footage of the conference attendees shot during the previous two days. After each image appears, it shrinks and takes its place within a graphical image that builds and builds until it reveals the King Pharmaceuticals Logo. The idea that each person at the conference has a responsibility to help build the company is then delivered as the message that each attendee takes away with them. A reprise of the closing video song…\r\n\r\nThematic Graphics & Presentation Support:\r\n \r\n\r\n \r\n-=Creative Approach #2: “Driving Performanceâ€=-\r\n\r\n__Theme Rationale: __\r\nA major focus of the 2007 King Leadership Conference is to move from theory to reality on high-performance culture. Company executives recognize that a change in status-quo is required to “jump-start†this new effort. King is asking its top 100 leaders to “buckle-up†and take performance to a whole new level. Driving Performance will enable King to beat the competition and win the race. Throughout the conference, attendees need to be put in the “driver’s seat†and be held accountable to bring this message back to their teams so the whole company can “Drive Performance†in 2007.\r\n\r\n__Opening Sequence: It Takes a Team to Drive Performance__\r\nAttendees enter the room and immediately notice the stage set… checkered flags and thematic graphics create a “NASCAR†look. Everyone take their seats, lights cut to black, and roaring engines cut through the silence …\r\n\r\n \r\n\r\n \r\n\r\nThe video screens come to life with a close-up shot of the King Pharmaceutical racecar speeding around the racetrack. A swooshing post-production effect shifts our perspective from outside the car looking in, to inside the car looking out. The audience is now in the driver’s seat as we take them on a symbolic “ride†on the King racetrack — with all its twists and turns. Executive sound bytes are intercut throughout, the perfect “vehicle†to help executives recognize the challenges faced by the Leadership Team. (e.g. “You’re at the wheel,†“You drive our success,†“Rev the engines of innovation,†“It starts with you!â€) The car suddenly maneuvers toward a Pit Stop... \r\n\r\nIn a flash of stage lights, an actual “King†racecar appears onstage. A real pit crew emerges dressed in King Pharmaceuticals’ team uniforms. After a quick display of teamwork, the lights change and the racecar appears to drive back into the screens where it accelerates for more racing! The video continues with an accelerated pace, reinforcing key messages of leadership, accountability, teamwork, and high-performance. Once again, the car appears back on stage and the Pit Crew emerges. Sound bytes explain how the King Leadership Team is like a Pit Crew working together to achieve top performance and beat the competition. The video ends and the pit crew remove their helmets. The audience will be surprised to see the King EVPs onstage. \r\nAfter this high-energy opening act, Brian will have the perfect platform from which to set the tone for the meeting, illustrating the message that it takes the whole team to drive performance… \r\n\r\n__Closing Video: __\r\nThe ultimate goal of “Driving Performance†is to achieve stellar results and propel King Pharmaceuticals to new heights. The closing video begins with the King racecar speeding around the track, and the speedometer is steadily rising towards its top speed, which is marked on the dial with the King branding. When the needle reaches this ultimate point, the King logo lights up and a post-production swoosh effect brings the audience’s perspective outside the vehicle. The car hurtles towards the wall of the track at a breakneck speed, but instead of crashing, it transforms into a fighter jet and soars of into the sky. The audience is left with the feeling that they can drive King Pharmaceuticals to reach the stratosphere of success. \r\n\r\n__Alternate Teambuilding Activity: __\r\nAs an alternative to the King TV activity, consider an interactive experience in which attendees divide into groups and actually build their own racecars. Each group will receive a ccar-kit that includes: race instructions, tools, and car components like wheels, PVC pipe, connectors, nuts & bolts, glue, heavy string, wood, tape, decorations, race uniforms, and more. A facilitator will give a very brief activity overview and then release the teams to build their cars! Teams must work together to figure out how to drive performance and gain the winning edge. Teamwork, innovation, problem solving, clear communication and leadership are critical to success. This 90-minute activity culminates in actual races between teams, and can be implemented in a ballroom setting. \r\n\r\n \r\n-=Creative Approach #3: “Peak Performance†or “Game On!â€=-\r\n\r\n__Theme Rationale:__\r\nKing Pharmaceuticals is gearing up for a winning 2007 season. To execute the company’s vision, everyone must be at the “top of their game.†King needs to implement the “winning plays†to achieve company wide peak performance. The team strategy hinges on the leadership difference. With a team of great players on the field, it is up to King’s top 100 to coach them to victory. Through creative production techniques, VIVA will help inspire and motivate the King leadership team to dig deep within themselves so they can bring out the best in each of their team members. This will prove that through individual and team peak performance King can cross the finish line first. \r\n\r\n__Opening Sequence: Get your Game On!__\r\nThe audience enters the ballroom to the far-off sounds of crowds cheering. A scoreboard onstage flashing the letters “K-I-N-G!†Spotlights circle the room, which is decorated with King pennant flags and other sports themed décor.\r\n\r\nPeople take their seat and the lights cut to black. A referee’s whistle blasts and the room is suddenly filled with the sound of a arena crowd chanting “King, King, King.†The video screen come to life and the audience is immediately thrust into the middle of the Super Bowl! The King quarterback throws a perfect pass, the King receiver ctaches it and dives victoriaously into the end zone. The referee stretches his arms into the air to signal the score and – FLASH – we are suddenly in the middle of a pack of cyclists pedalling for the yellow jersey in the Tour de France. The video continues in this manner, flashing between multitudes of sports scenes, each showing the passion and dedication of star athletes pushing themselves to peak performance. Intercut through the video are sound bytes from King EVPs talking about organizational onjectives for 2007 using sports metaphor… \r\n\r\nThe final scene is a packed basketball arena, with flashbulbs popping and spotlights panning the crowd. The ballroom springs to life, mimicking the lights on screen. The crowd noise grows louder and the spotlights panning the audience. A live announcer fills the sound-space with the King “Starting Line-up.†The Executive Team is announced one-by-one, and they each run on stage wearing King Warm-ups and jerseys… \r\n\r\n__Telestrator:__\r\nThe presenters can make use of “sketchpad†technology, using a is real time video highlighter that can be controlled with a drawing tablet or touch screen monitor. Using this effect, we can create live sporting event effects. For example, highlighting King’s key plays of 2006, showing penalties, showing key moments in execution, even highlighting audience members! \r\n\r\n \r\n\r\n\r\n__Thematic Graphics & Other Conference Elements__\r\nTo bring Driving Performance to life, VIVA will create a theme graphic that create the look of fast movement, high energy, and peak performance through use of fonts and style elements. This theme graphic will make a striking PPT template and a strong transition element when animated — yet will be simple enough to look crisp when used on T-shirts, awards, etc.\r\n\r\nThe use of peak sports performances allows for many creative and energizing elements to be included during the course of the conference. Presenters can appear wearing King “Team Jerseys†or as referees. The audience members can be given items such as whistles, jerseys, or caps. The theme also allows for a wide range of messaging techniques to be employed. Stage elements can include scoreboards that get the audience excited by calling for “the wave†or cheers.\r\n','',1165271879,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'smackey',14579,NULL,NULL,1165271879,0),(28,'Production Phone Conference 4 Dec 06',2,'__Debussy Ballroom – Salon 2&3 for gig, Salon 1 for meals__\r\n__Chateau Elan Production Contact - Steve Reinke - 678-425-6010__\r\n\r\nJuliet Cell – 917-687-5644\r\nSteve conf call with Sarah and Barbara 10:00 AM\r\nKaren Miller in negotiations with hotel\r\nJenni – still doesn’t have a signed contract\r\n\r\n__Room Access__\r\nWhen – 2:00 PM Tuesday 23rd\r\nHave plenty of space for production office / graphics room / included in contract although not in close proximity to the ballroom\r\n\r\n__Load in__\r\nTime – 2:00 PM 1/23\r\nDock – load-in projection tunnel 14’x15’ used for rear-screen (just a hole in the wall w/ airwall door) can put the screen 10’ off wall\r\nLabor (union) - no\r\nElevator – no – same level\r\n \r\n__Room__\r\nHeight – 14’ with some recessed (a few inches)\r\nSoffits/Chandeliers – no chandeliers\r\nSecurity – hire on own, or 50$ hour thru élan (cop)\r\nRear-projection screen – no screen, just hole in the wall\r\n \r\n__Tech__\r\nPower – 2 panels 200 3-phase\r\nInternet – t1 hardline, $350 day\r\n \r\n__Staging__\r\n(16) – 24†high 6x8 for both stage and tech riser\r\n \r\n__Cell Phone Coverage__\r\nOK but sometimes crappy\r\n','',1165272080,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'smackey',1149,NULL,NULL,1165272080,0),(29,'Creative Proposal 5 Dec 06',2,'__Second Annual King Leadership Conference__\r\n__January 24 – 26, 2007__\r\n__Braselton, GA__\r\n__Chateau Élan, Winery & Resort__\r\n__Creative Concepts (Revision 2) - December 6, 2006__\r\n\r\n\r\n__Creative Approach: “Building our Future: It Starts with Youâ€__\r\nAlt: Building Leadership\r\nAlt: Building Performance\r\n\r\n__Theme Rationale: __\r\nKing is a young company with an entrepreneurial spirit. Executives recognize the importance of establishing a high performance culture that values strong leadership. With future-focused vision, King aims to put new leadership and accountability practices/attitudes in place to inspire peak performance. This effort will require that everyone in the organization work together to build a better future – one piece at a time. This conference must create a call to action among King’s top 100 leaders to take ownership, take action, and take the first steps in building a high performance future. \r\n\r\n__Opening Sequence: Building Leadership Piece by Piece__\r\nAttendees enter the room and hear subtle sounds of construction. Slow moving lights highlight the stage set. The backdrop is an abstract “skyline†and the top edges of the buildings form the outline of K–I–N–G. \r\n\r\nWhen everyone is seated, lights cut to black. The sounds of drills, hammers, and saws come together in an energizing original song. The song escalates and lights come up full as a group of rhythmic performers in construction costumes take the stage. Close up shots of their performance show on IMAG screens. Some carry pieces of pipe, others different sized metal-frame boxes. In perfect choreography with the music, the performers start building something onstage…\r\n\r\nA performer places a large box center stage. At the instant the box is set in place, a video image starts playing within it. Performers stack more boxes on and around it. Within the boxes they see video footage of famous leaders saying inspirational, powerful quotations (Sports leaders, political leaders, social leaders, etc). The soundtrack is infused with the sound of their voices. The audience sees imagery that motivates them to be great leaders, footage that inspires them to peak performance, visuals that makes them proud to be a part of King Pharmaceuticals. The choreography continues as the performers build a large video wall onstage - literally assembling the building blocks of leadership and peak performance before the audiences’ eyes. When the final box is placed, the entire video wall comes to life with the King Pharmaceuticals Logo. Music and video crescendo in a high-energy montage about leadership and peak performance – perhaps also incorporating prerecorded interview bytes from King Executives. \r\n\r\nWhen the video concludes, Brian Markison comes to stage to drive home the message that everyone in the audience must work together to build a leadership and high performance culture, piece by piece. This will be a perfect segue into his discussion about objectives for 2007. \r\n\r\n__Proposed Video/Animated Elements:__\r\nAfter such a high-energy conference opening, VIVA proposes the creation of various video elements to help maintain high energy throughout the conference. We envision a few “major content†video, and several small “bumpers†or “vignettes†inserted between presenters. These video elements will help deliver thematic messages – and will be designed to preview or introduce content and dynamically introduce speakers.\r\n\r\nVIVA proposes a "Sports News Style†format for these videos and bumpers. Imagine the slick, branded look and feel of an ESPN news show. The set itself would incorporate King branding. Custom graphics on plasma display monitors will reinforce brand positioning. This approach incorporates a pre-taped “On-Camera Host†delivering scripted lines that introduce each conference sessions, presenters, and other core content. For example:\r\n\r\n__* Year in Review Video: (3-5 minutes) __\r\nThe “On-Camera Host†introduces the leading news story: King Pharmaceutical’s Year in Review. This upbeat, narrated package succinctly highlights King’s greatest successes in 2006. We envision incorporating pre-taped sound bytes from key “players†within the King organization. The piece would be post-produced with high-energy music, custom graphics and animations, and b-roll assets that support story points (b-roll to be provided by client, if possible). \r\n\r\n__* (5) Leadership Videos Vignettes (:30 second to 1 minute each)__\r\nTalking heads? No thanks. These motivational vignettes will highlight the five functions and ten practices of exemplary Leadership at King. These could be played between speakers or sessions to help create a common “language of leadership†for all in attendance. These videos will be produced in a crisp, clean style that can live beyond the conference - either as individual vignettes or linked together in a 3-5 minute leadership message video. This piece will also incorporate original graphics/animations, VO narration, and stock music.\r\n\r\n__* “Our Difference is You†Video (3-4 minutes)__\r\nWe envision that this video is the kick-off element of Day 2 or 3. This substantive, proud, and powerful piece will strengthen employee brand positioning, emphasizing the core message that King Pharmaceuticals’ greatest competitive advantage is its people and the creativity, discipline and personal commitment they bring to the business each day. A vital part of this video is actual sound bytes from King employees, talking about how they make a difference in patient’s lives, business relationships, and their communities. These interviews will be shot on-location at King’s offices in an engaging style. The video will use graphics, music, VO, and custom b-roll of King’s offices, products, and facilities to strengthen the power of the story. This piece will be able to stand on it’s own beyond the conference.\r\n\r\n__* Closing Video: (2-3 minutes)__\r\nAfter CEO call to action and tool-kit sendoff, we propose the inclusion of an on-site closing candids video as a tool to further inspire and motivate attendees. (also for web positing or distribution on DVD). The closing video will include on-site footage of conference attendees and what they experienced over the course of the event. It will be shot and edited in a way that shows energy and excitement, and highlights key content. At the finale, the video will recap the “Top 10 things†every attendee must do to build King’s future, be a leader, and drive performance. Pre-produced graphics will help powerfully deliver these messages. This video will be cut to a reprise of the original song from the opening act. \r\n\r\n__Interactivity:__\r\nAttendees will retain more conference information if presentations are kept interactive and engaging. To liven up content so that the audience stays engaged in the message, VIVA proposes inclusion of the below interactive technologies:\r\n\r\n__* Audience Response System:__\r\nAfter the energy of day one, it will be critical to maintain high interest during the EVP presentations on day 2. This content is vital, so we propose the addition of interactivity through individual audience response systems for each attendee. Not only does this technology demand interactivity, it also boosts message retention and delivers sophisticated data capture and polling abilities that could prove valuable to executive leadership. \r\n\r\nARS technology allows you to do live polling and quizzing of the audience, as well as game show applications. Many different result graphs can be immediately displayed, including bar charts, pencil graphs, and pie charts. ARS has capability for multiple choice questions, priority ranking applications that allow you to poll your audience to prioritize listings, and X-Y Mapping to assess multiple issues against multiple criteria with the results plotted on a scattergram. We could weave ARS throughout conference sessions – and the technology would prove particularly helpful on day 3 when you seek to codify conference lessons. \r\n\r\n__* Telestrator__\r\nAdditionally, presenters could make use of “sketchpad†technology, using a real time video telestrator that can be controlled with a drawing tablet or touch screen monitor. Using this tool, we can create live sporting event effects. For example, highlighting King’s key plays of 2006, showing penalties, key moments in execution, even highlighting audience members! \r\n\r\n__Proposed Teambuilding Activities:__ \r\nAs discussed, the end of Day 1 presents a great opportunity for an interactive teambuilding activity to break the ice and set a tone of collaboration and teamwork for the remainder of the event. To support core messages and the conference theme, VIVA proposes the following teambuilding activities for consideration. These are but a small sampling of possible activities, and if none of these are appropriate we will be pleased to work with you to discover or create an activity to maximize your message.\r\n\r\n__Tinker Toy Triumph Tower:__\r\nEmphasizing the importance of building teams to achieve high performance is the focus of this activity. Attendees divide into groups and are told to build the tallest possible structure out of the Tinker-toy sets they are provided. The catch is that after a 15 minute planning period, they only have 60 seconds to build – without any form of verbal communication! \r\n\r\n__Through the Uprights:__\r\nThe weekend after this conference is the Super Bowl. With that in mind, another relevant team building activity challenges attendees to create a catapult with plastic spoons, springs, string, wood, connectors, and team decorations. The facilitator will explain that the catapult must propel a small plastic football through a set of goal posts in order to win the game. Teams will work together to create the machine that achieves the best performance. The team that communicates with each other and is able to utilize the best traits of their available resources will be victorious. The activity ends with a competition where the team whose catapult puts the ball through uprights from farthest away wins!\r\n\r\n__Racecar Building:__\r\nAs a real life metaphor for driving performance, consider an interactive experience in which attendees divide into groups and actually build their own racecars. Each group will receive a car-kit that includes: race instructions, tools, car components like wheels, PVC pipe, connectors, nuts & bolts, glue, heavy string, wood, tape, decorations, race uniforms, and more. A facilitator will give a brief activity overview and then release the teams to build their cars. Teams work together to figure out how to drive performance and gain the winning edge. Teamwork, innovation, problem solving, communication and leadership are critical to success. This 90-minute activity culminates in actual races between teams, and can be implemented in a ballroom setting. \r\n\r\n__Evening Enhancement to Teambuilding:__\r\nAlthough the evening dinners are intended to be a casual opportunity for guests to mix and mingle, these events also present another opportunity to reinforce messaging. Consider a brief (5-10 minute) wine tasting inspired by the property itself, in which a winemaker draws metaphors between cultivating grapes on a vineyard and cultivating leadership in your organization. This could be a tasteful way to keep the message at the forefront, even while attendees enjoy some relaxing social time.\r\n\r\n\r\n__VIVA’s Production Services:__\r\n\r\n__Preproduction Management__\r\nUpon receiving the green light from you to commence production, we will assign a project team to include a Senior Producer, Creative Director, Technical Director, and other skilled production personnel to match your needs. Our team will continually work by your side in a highly collaborative and creative process to meet and fulfill the goals of your event. With your team’s team input, we will begin the iterative process of set design until an exceptional set look is achieved. At this point, our staff will begin to implement a technical production plan, assemble optimum staff, create event schedules and timelines, and move into the production phase of your event. At all times, we will utilize our online FTP site to upload pictures and renderings of concepts in development for your team’s review. \r\n\r\n__On-Site Show Production__\r\nWith the VIVA team in the director’s chair, your event will run with the seamless professionalism of a Broadway show. We provide only the most experienced staff to manage every detail of production from load-in to load-out. Our technical director will oversee every transition, every cue, and constantly monitor the pace and flow to make sure your production is flawless. In constant communication with the technical director, we utilize experienced stage managers to run rehearsals, assist presenters, and handle VIPs. This will ensure that speakers are where they are supposed to be at the right time. Together, our team will control what attendees see on the stage, as well as what goes on behind it. To assist in the flawless implementation of your program, our team of on-site Production and Technical Services crew will conduct daily “cue-to-cue†sessions, as a final “approval†on show flow and execution of each day’s program. We utilize a daily Project Cue Sheet to call the show— which is constantly updated throughout the on-site program to ensure the accuracy of all production and technical cues for each day’s events. \r\n\r\n__Thematic Graphics & Presentation Support:__\r\nThe best events effectively execute a thematic graphic design that remains consistent through all visual media, including signage, name badges, conference materials, speaker PowerPoint slides, and more. To help King achieve powerful graphic unity, VIVA will be pleased to deliver graphics support services where needed and appropriate. Our team prides itself in offering unparalleled speaker support. After all, it is the message of your presenters that your audience has gathered to hear. Our award-winning graphic artists create compelling and powerful Theme Graphics and Speaker Support Graphics. Whether working from your speakers\' supplied slides, or creating completely original graphics to your specifications, our graphics professionals will add a visual edge to what your audience sees on screen. Moreover, we will provide a seasoned graphic artist/operator on-site. This way we are always prepared to produce, edit, and modify images and presentations on-site at the last minute. \r\n\r\n__Professional Speaker Support__\r\nFor events such as this, To assist speakers and minimize chances for technical glitches, we will provide laser pointers, speaker timers, wired cue lights, and a wireless cue system that allows presenters to advance PowerPoint slides with the touch of a button. We will work with you to develop final theme graphics and then carry it through in every aspect of the meeting (video modules, graphic animation, signage, etc.) We look forward to working closely with you to arrive at the exact look you wish to achieve for the full range of your creative elements. VIVA proposed to record professional VOG introductions for all presenters to be played in concert with a walk-up/walk-out music sting. This adds to the professionalism, keeps the pace moving, and present confusion onstage. Also, we provide speaker timers and teleprompter support for those who want it.\r\n\r\n__Original Song Composition & Other Audio Elements__ \r\nOur team will produce and mix your custom music, sound effects, and other "audio elements" in our state-of-the-art digital audio production suite. We collaborate with you during pre-production on selection, refinements, and placement of audio elements within the meeting. All audio cues are then programmed for instant audio playback on demand during the General Sessions. Computerized cues can then be accessed either as planned, or "out of order" in case of last minute reshuffling of Conference speakers or impromptu on-stage appearances. Speaker Introductions will also be pre-recorded, mixed with music stings, and programmed accordingly after your review and approval. These audio elements will be synched with onscreen visuals of each upcoming speaker, to create a most impressive audio-visual introduction for your executive presenters. \r\n','',1165418625,'',2,'birey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'birey',16444,NULL,NULL,1165418216,0),(30,'Preliminary Budget Estimate 6 Dec 06',4,'::__Second Annual King Leadership Conference__::\r\n::__Preliminary Budget Estimate__::\r\n::__December 6, 2006__::\r\n\r\n\r\n||__ITEM__|__TOTAL__||__Event Production & Management Services__%%%a. Event Pre-Production%%%b. Graphics Pre-Production%%%c. On-Site Show Production%%%d. On-Site Graphics Support|__$53,425__||__General Session Audio/Visual Support__%%%a. Staging & Custom Set (Dual Screens plus Projection for Opening Act)%%%b. Sound Support%%%c. Lighting Support%%%d. All Video Projection (plus IMAG & Teleprompter)%%%e. All Labor for Load-in/Out and Show%%%f. Misc. Goods (podiums, greenery, etc)%%%g. Trucking, Delivery, Security, etc|__$135,230__||__Opening Act__%%%a. Creative Development & Scripting%%%b. Original Music Composition%%%c. Performers, Costumes, & Props|__$29,820__||__Video Production~~#FF0000:*~~__%%%a. Opening Video (Part of Opening Act)............................$27,873%%%b. ESPN News Style Video Bumpers..................................$17,029%%%c. 2006 Year In Review Video**.......................................$18,829%%%d. (5) Leadership Videos..................................................$15,087%%%e. “Our Difference is You†Video.......................................$38,339%%%f. On-Site Closing Video..................................................$16,138%%%~~#FF0000:* Assumes all b-roll will be provided by King Pharmaceuticals~~|__$133,295__||__Interactive Elements__%%%a. Audience Response (1 Day)..........................................$5,717%%%b. Teambuilding Activity (Estimate)...................................$12,500%%%c. Telestrator (3 Days)......................................................$7,500|__$25,717__||__TOTAL ESTIMATED BUDGET__|__$377,487__||~~#1E90FF:* This estimate includes ALL proposed creative elements, including ALL videos and custom setpieces. Cost savings will be realized if not all videos are chosen or if we modify staging elements.~~||','',1165421139,'Preliminary budget corresponding to items proposed in Creative Proposal 2',1,'birey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'birey',1944,NULL,NULL,1165421139,0),(31,'Training',9,'((Audio))\r\n\r\n((Video))\r\n\r\n((Graphics))\r\n\r\n((Information Technology))\r\n\r\n((Business Tools))','',1165603727,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',90,NULL,NULL,1165603727,0),(32,'Video',18,'__((Compression Best Practices))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n\r\n((Julies Production Tips))\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class\r\n','',1166040941,'',7,'jzastrow','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',176,NULL,NULL,1165605243,0),(34,'Audio',4,'__((Soundtrack Pro Primer))__\r\nSummary:\r\nThese are notes from the 2006 DV Expo Class','',1165606627,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',84,NULL,NULL,1165606627,0),(33,'Compression Best Practices',10,'These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Chapter markers in Final Cut Pro (FCP)\r\n**(:arrow:) Are frame-specific, which is an advantage over creating them in DVD Studio Pro because they would NOT be frame-specific\r\n**Uses XML files to track placements\r\n*(:arrow:) Out points - don\'t use the last frame, but rather insert a black slug to avoid compression artifacts at the end\r\n*Upon export, uncheck "Self-contained" and you will be creating a reference movie\r\n*MPEG2 = Standard DVD \r\n*DV format\r\n**DV is compressed during acquisition at a 5:1 ratio which is comparable to BetaCam SP\r\n**This can cause trouble with keys due to the excessive color info lost during the DV acquisition compression\r\n**Look at DV Garage, a $99 plugin from DV Map Blast which is a great keyer because it also looks at luminance information\r\n**Also look at FX Factory, which is a cost-effective keying and effects plug-in\r\n*All sources are subject to the global compression settings upon sequence import\r\n**(:arrow:) Change sequence settings to "Animation" or "Uncompressed" which are lossless and therefore highest quality\r\n\r\n*"Export to Compressor" \r\n**Doesn\'t require rendering but sends source files and info\r\n**Use when you are integrating graphics etc. that way the compressor is using the original source files and not already-compressed files from the sequence\r\n*VBR = Variable Bit Rate encoder and can be 1-pass or 2-pass\r\n\r\n*Format vs. CODEC\r\n**Quicktime is an architecture i.e. an .MOV file is a format (container) and the codec is MP4, H.264 etc.\r\n**Similarly in graphics, a .PCT file is the container and .PNG is the codec\r\n\r\n*Quicktime 6 is usually MP4 and Quicktime 7 is usually H.264\r\n**MP4 actually refers to MPEG4 video part 2\r\n**H.264 actually refers to MPEG4 video part 10\r\n**H.264 offers the same quality at a much lower data rate but is much slower encoding due to extra processing\r\n\r\n*.RAW is a format\r\n\r\n*Audio\r\n**Dolby digital is much smaller than AIFF which gives you more room for video storage, thus you can use higher video bitrates by using the dolby file rather than the AIFF\r\n**(:arrow:) You should keep the AIFF file anyway though because you may need to do additional edits\r\n\r\n*A compressor is actually "transcoding" not "encoding" because it is changing information from one type to another, however most people refer to compression as encoding\r\n*(:arrow:) Enabling "Gamma Correction" in the filter may washout Mac viewing a but but will enhance PC viewing due to the differences in gamma settings between the two platforms\r\n\r\n*(:arrow:) NEVER scale, only crop - the compressor actually creates 720x486 thus you need to crop 6 lines from the horizontal. \r\n**Do not use a 3/3 crop, rather 4/2, 2/4, or 0/6 if you can lose the six lines from the bottom hi!!\r\n\r\n*Store compression settings as a droplet, that way you don\'t have to launch compressor you can just use the droplet\r\n*Check out the Brian Gary book on the Apple Pro Training Series','',1166041235,'',5,'jzastrow','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',3086,NULL,NULL,1165606337,0),(35,'Soundtrack Pro Primer',3,'These notes were compiled by Stephen Mackey\r\nInstructor: Jem B. Schofield - www.buttonsproductions.com\r\n\r\n*Look into DVD Training Series on Soundtrack Pro (STP)\r\n*Use STP for VO work w/ exported video from FCP\r\n*LogicPro - typically more recording engineer-intensive\r\n*GarageBand - used for loop editing\r\n\r\n__Soundtrack Pro__\r\n*Two parts - multitrack and waveform editor\r\n*As with all Apple applications it has moved to a non-destructive editing methodology\r\n*Create an "audio file project" which is XML information layered on top of the source\r\n*(:arrow:) When working in the waveform editor, check the end of the cut point to ensure you don\'t cut off any newly-added reverb tails\r\n*You can move audio effect up and down like layers in a graphics program to audition differences\r\n\r\n__Waveform Editing__\r\n*Creating Silence\r\n**(:arrow:) Adjust selection to "Zero Crossing" (outward)\r\n**(:arrow:) Usually not practical, so rather replace a pop/click with room tone\r\n*Set ambient nose print\r\n**Add ambient noise to cover pops\r\n*"Previous" button recalls former selections so you don\'t have to guess about previous in/out points\r\n\r\n(:exclaim:) Record room tone at the end of a shoot so you have proper ambience for subsequent sound design\r\n\r\n*Spectrum View - An FFT view of the waveform\r\n**Analysis Tool\r\n***First isolate the issue\r\n***Don\'t use "Clipped Signal" since it doesn\'t have a fix - use "Pops/Clicks"\r\n\r\n*Hum/noise fixing\r\n**(:arrow:) First adjust for Zero Cross\r\n**Process / Noise Print\r\n**Process / Reduce Noise\r\n**(:exclaim:) Fix hum/noise early in the main audio track before cutting, otherwise you have to fix multiple smaller files\r\n\r\n*Multitrack\r\n**Use busses to combine tracks for FX\r\n**Look into Mackie control surface, which can be used for automating mixes\r\n**','',1165607773,'',2,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',1827,NULL,NULL,1165607725,0),(36,'Julies Production Tips',1,'DV Production Necessities (:mrgreen:)\r\n1. Carrying case\r\n* Pelican (strong, durable, will last a lifetime)\r\n2. Tripods\r\n* Tripod should hold about 4x amount of camera’s weight.\r\n* Tripods last forever- do not waste time and spend money on a cheap one; invest in a good one.\r\n3. Accessories \r\n* Why more CU shots today? \r\nIt is easier for the camera to compress CU images because more redundant pixels per area. This is important today because web casts and widescreen have become more popular.\r\nWide Angle Adaptors (Canon suggested0\r\n $500-1,000; .7m wide; need to purchase lens protection.\r\n1A sky filter\r\n $15-19\r\n Do not use when using wide angle adapter\r\n Helps prevent water from getting into camera\r\nLens Cleaning Cloths\r\nNEVER use compressed air to clean your camera lens! What your doing is blowing or spreading more junk into the lens. \r\n4-piece Lowell light kit.\r\n Highly Compressed Formats (IEDV & HDV) love light; therefore always bring a standard light kit with you. \r\nReflector\r\n Stiple gold- Caucasians\r\n Stiple Sliver – Non Caucasian.\r\nExtra long S/V cable\r\nSeveral extra firewire cables\r\nCarbon graphite boom\r\nCarbon graphite is a much better option than choosing metal because it does not conduct heat/cold and is able to fully extend holding with one hand. \r\n K-Tech suggested company\r\n Add a shock mount if you do not have to protect the mic.\r\n Add a muff (“Einsteinâ€) if you have to protect the mic\r\n Foam mic protectors are useless. If you have one, then at the very least, \r\n wrap it with PURE silk.\r\nUse a Mic clamp and mic clip to clamp mic to desk for press conferences, boardroom meetings, etc. \r\nHeadphones\r\n Always bring 1-2 pairs of good headphones with you- NOT Apple Ipod headphones because Ipod headphones transfer audio specifically for Ipods. They will not pick up accurate audio and will prove useless when using a DV Camcorders.\r\nEdamodic ER6- suggested headphones, high quality; “bulletproof.†$286.00\r\nEdamodic ER4- alternative to ER6; $139 \r\n Transformers\r\n Bring two: (-10, -20, -30) padding and (-10, -20, -30, -40) padding; together they create a stereo sound. In addition, the tone generator allows you to check the camera tone levels. \r\n4. Lavaliere\r\n Always use a unidirectional Lav for corporate interviews, etc. \r\n*Trick*- make a broadcast loop with tape, making sure wires nor tape touch each other. This will block out any movement sound of the mic.\r\n*On Board Mics\r\nShould only be used to capture B-Roll sound, or fans cheering on sidelines, etc. \r\n AT Lavs - $85- highly recommended\r\n Suggested Lav models: 899, and 892 (new lav, very thin)\r\n Wireless mics not recommended for multiple speakers at an event.\r\n Instead use a Boundary Mic\r\n There are multiple models\r\n They pick up audio 30†away from source\r\n\r\n5. Shotgun Mics\r\n Not intended to be used indoors ever. Only exception: Voice over\r\nStandard Cartoid head not useful in noisy warehouse. Instead, use hypercartoid.\r\n6. White balance cards\r\n Never white balance the camera on automatic mode. Use manual mode.\r\n Blue balance- to warm up a Caucasian subject who looks pasty.\r\n Green balance- help lighten up an African American subject and add balance to his/her skin tones.\r\n Grey balance- When filming multiple actors of various skin tones.\r\n7. On set monitoring:\r\n Software created by Serious Magic: DV Rack\r\n Works for HDV, SD\r\n $499.00\r\n\r\nNarrative Shot Composition\r\n\r\n Six (6) things to consider with each cut according to Walter Murch:\r\n 1. Emotion\r\n 2. Story\r\n 3. Rhythm\r\n 4. Eye-trace\r\n 5. 2-D plane of screen\r\n 6. 3-D space of action\r\n \r\n Shot Acronyms:\r\n ECU Extreme Close Up\r\n MCU Medium Close Up\r\n FCU Full Close Up\r\n WCU Wide Close Up\r\n CU Close Up\r\n M Medium Shot\r\n MF Medium Full\r\n Full Shot\r\n\r\n“The Cowboy Shot†- Lens tilted up to make Talent look bigger; Lens axis is shoulder height, tilt the camera 6-12 degrees upward.\r\n\r\nRule of Thirds (3 T’s): Teeth\r\n Throat\r\n Tits- shoot from chest line and up.\r\n\r\nShot sizes\r\nThe primary shot elements of a visual story are: Long shot\r\n Medium shot\r\n Close up\r\n\r\nEdward T. Hallis “Proxemicsâ€: Remote Distance\r\n Public\r\n Social\r\n Personal\r\n Intimate\r\n\r\n*Never shoot a CEO with ECUs. This allows people to get too close to the boss.\r\n*Over the shoulder shots- tilt lens upward, followed by lens downward.\r\n\r\nLens Height- When shooting children, always shoot low by getting down on knees.\r\nDutch tilt- progressive shooting technique; lens is sideways.\r\n\r\nTowing “the lineâ€\r\nThe line of actions is a line that is rarely crossed unless crossing to a new line of action.\r\nThe line organizes camera angles for the Director\r\n\r\nShooting angle letters: I\r\n A \r\n L (6 camera angle)\r\n U (Ronin table scene)\r\n H \r\n O \r\n *U, H, O – more complex; Alfred Hitchcock\r\nTable shots- people are staggered; never sit two people directly across from each other.\r\n\r\n*Pick an angle for each axis and stick to it.\r\nExample: Happy Feet and Cars– Director controlled all angles.\r\n\r\nRecommended reading: Hollywood Camera Work\r\n\r\nRecommended films:\r\nAlexandre Mackendrick The Lady Killers\r\n Man in the White Suit\r\n Sweet Smell of Success\r\n\r\nJohn Frankenheimer Ronin\r\n The Manchurian Candidate\r\n Birdman of Alcatraz\r\n\r\nFor using 50mm lens and camera movement, watch films directed by Alfred Hitchcock: North by Northwest and Vertigo.\r\n\r\nFor using wide lenses and composition, watch films directed by Orsen Welles.\r\n\r\nLighting\r\nWhen lighting a table of people (board room setting), it is often difficult to evenly light every subject. Therefore, hang a white IKEA Chinese lantern from the ceiling in the middle of the table. How much light is in the lantern? 1,000 Watts of fluorescence- approx. 10-12 bulbs.\r\n\r\nChroma Key trick when shooting SD:\r\nUsing ultra 2 Software\r\nChroma key is much more difficult in SD than in HD, because less resolution. However, if you turn the camera on its side, you can get 720 dpi (instead of regular 480 dpi.).\r\n\r\nGreen Screen lighting: \r\n1. Light the green screen evenly. Using a floor light always works, as well as a soft box (Chimera). Multiple lights get frustrating and time consuming. Soft light is much more flattering- NO BRAINER!\r\n2. Subject is away from the green screen the height they are (Ex: 6 feet) to minimize shadows. **Remember: You do not want the subject lighting the green screen and you do not want the green screen lighting the subject.**\r\n\r\nBlue vs. Green Screen:\r\n Blue – Film\r\nExample: After taking a B&W photo of the sky, what does a cloudless sky look like in printed picture? White. But look at the negative. The sky in the negative is black. Why? Because the color blue is transparent to film. \r\n Green – Video. Better for skin tones.\r\n\r\n\r\n\r\n\r\n??\r\n\r\n??\r\n\r\n??\r\n\r\n??\r\n\r\nJulie A. Zastrow\r\nDC Digital Media Expo Notes\r\nDecember 10, 2006\r\n\r\n\r\n\r\n\r\n\r\n5\r\n\r\n\r\n','',1166041175,'',2,'jzastrow','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'jzastrow',7079,NULL,NULL,1166041051,0),(37,'SOPs',3,'((Digital File Naming Conventions))','',1166559897,'',1,'birey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'birey',35,NULL,NULL,1166559897,0),(38,'Digital File Naming Conventions',2,'::__Digital File Naming Conventions__::\r\n::__Current as of: 12/19/2006__::\r\n\r\n__Purpose:__ All project (digital) file names should follow a consistent, well defined convention that is agreed upon and understood by all Viva Staff. The goal of this naming convention should be to produce a file name that is descriptive of the file content, provide relevant project information, and allow for file revisions.\r\n\r\n__Naming Convention:__ All files produced by Viva Productions for any client should follow the following naming convention (the brackets should not be included in the file name):\r\n\r\n[[FileTypeInitial]–[[ClientName]-[[ProjectName][[ProjectCompletionDate]-v[[ExternalRevisionNumber][[InternalRevisionLetter]\r\n\r\n(e.g. B-KingPharmaceuticals-LeadershipMeeting22Jan2007-v1a)\r\n\r\n===__Legend__===\r\n\r\n__[[FileTypeInitial]__ – This is a 1-3 letter acronym for the type of file this name refers to (e.g. Script, Proposal, Budget, etc.)\r\n \r\n\'\'Common File Types and Initials:\'\'\r\n S – Script\r\n P – Proposal\r\n B – Budget\r\n N – Notes\r\n FP – Floor Plan\r\n HR – Hotel Request\r\n SL – Security List\r\n LS – Load-in Schedule\r\n PS – Production Schedule\r\n RS – Rehearsal Schedule\r\n CL – Contact List\r\n RFP – Request for Proposal\r\n SOP – Standard Operating Procedure\r\n\r\n__[[ClientName]__ – The name of the client for whom this project was undertaken. The name should be written as one word without punctuation or spaces. (e.g. AVAYA, KingPharmaceuticals)\r\n\r\n__[[ProjectName][[ProjectCompletionDate]__ – These two fields describe the specific project this file pertains to.\r\n- [[ProjectName] refers to the name used to describe the individual project for which this file was created. The name should be written as one word without punctuation or spaces. (e.g. LeadershipConference)\r\n- [[ProjectCompletionDate] is an optional field and should only be used when applicable. (e.g. for the date of a live event or the original air-date of a video) __This field should NOT be used to indicate the date a file was created or revised.__ The date should use the format DDMonYYYY, where Mon = 3 digit abbreviation for that month. When this field is utilized, it should immediately follow the [[Project Name] field. (e.g. LeadershipConference22Jan2007)\r\n\r\n__v[[ExternalRevisionNumber][[InternalRevisionLetter]__ – These two field should be used to notate any internal or external file revisions that take place. __Only the established author of the file has the ability to update either of these fields. __\r\n- [[ExternalRevisionNumber] refers to the latest iteration of the file that has been sent to the client for review, starting with zero (indicating the client has not yet seen this file). If the client has seen the file twice, [[ExternalRevisionNumber] should be 2. \r\n- [[InternalRevisionNumber] refers to the latest iteration of the file that has been updated internally since the client saw the file last, starting with ‘a’ each time a version is sent to the client. This letter should be written as lower case. __File versions sent to the client should not include this field.__\r\n\r\n__Example Case:__ If a budget file was being created for AVAYA for their Top Achievers Meeting in Rome on February 23, 2007, the file name would be as follows:\r\n\r\n[[FileTypeIntitial] = B = Budget\r\n[[ClientName] = AVAYA\r\n[[ProjectName] = TopAchieversRome (an abbreviated form that is agreed upon by the Viva team)\r\n[[ProjectCompletionDate] = 23Feb2007\r\n[[ExternalRevisionNumber] = 0 = Client has not yet seen this file\r\n[[InternalRevisionLetter] = a = no internal revisions have been made to this file\r\n\r\nThus, the file name would be:\r\n\r\n__B-AVAYA-TopAchieversRome23Feb2007-v0a.filetype__\r\n\r\nIf this file has no internal revisions made to it and is then sent to the client, the file name sent to the client would be:\r\n\r\n__B-AVAYA-TopAchieversRome23Feb2007-v1.filetype__\r\n\r\nNote that the [[InternalRevisionLetter] field was left off so as not to confuse the client. All internal revisions that are made to the file after this point would begin with v1a until a second version is sent to the client, when internal revisions would be referred to as v2a and so on.\r\n\r\n__IMPORTANT RULES TO REMEMBER WHEN NAMING FILES:__\r\n- Do not use multiple periods in your file names. The only period in the file name should separate the name of the file from the computer generated file type (.doc, for example)\r\n- Do not use underscores in your file names. Some virus checkers will not allow file names with underscores to be opened.\r\n- Do not use spaces in your file names. This can lead to cross-platform glitches.\r\n- Only the established author of a file may update the version number or letter. If you are not the author of the file and you do make revisions, indicate this by adding your Initials to the very end of the filename. Send this file to the author so that he or she may incorporate your changes into the official version and update the revision number or letter accordingly.\r\n- If there is ever any question as to how a file should be named, consult the members of the Viva team who are working on the project and agree upon a convention that makes sense. The goal of this naming convention is to decrease the amount of confusion created by multiple file creations and file revisions. \r\n- It is totally acceptable if a client requests a naming convention be changed, but be sure that both Viva and the client agrees upon a standard that can be repeatable for all files generated for that client.\r\n','',1166560736,'',1,'birey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'birey',5554,NULL,NULL,1166560736,0),(39,'AIPAC Policy Conference 11 March 07',3,'((Status Meetings))','',1170266664,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',19,NULL,NULL,1170266664,0),(40,'Status Meetings',5,'((30 Jan))','',1170266704,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',10,NULL,NULL,1170266704,0),(41,'30 Jan',3,'-=Status Meeting Notes=-\r\n*Previous show ends at 6 PM – out by midnight – cleaning until 5 AM\r\n*Load-in rough schedule\r\n**TH 5 AM carpet, then lighting rigging audio staging set\r\n**FR – continue load-in, programming\r\n**SA – tweaking, rehearsals, tables done in the AM (starting at 7 AM)\r\n*Casey from AIPAC owns dock assignments, starting with last year’s plan\r\n*Catering takes two docks on left, one by dumpster used for daily deliveries\r\n*Hargrove in first for carpet, scenic load-in\r\n*OK on staging count? Yes according to in-house\r\n*LED and plasmas coming in Saturday\r\n*We advised Fri/Sat night will be dark and no work lights for linen drops\r\n**All linens going down Saturday (not enough time b/n sessions)\r\n*Home and Garden show in building 8-11 – moving out on 12th\r\n**Will be draping according to flow from Metro\r\n**They are downstairs – no noise issues\r\n*Courtney doing table numbers this year – need to vet current floor plans\r\n*Perimeter storage areas etc. are same as last year\r\n**Will have live camera and additional lighting behind stage for video production\r\n**AV boneyard may be an issue for fire marshall – must go all the way down against wall – can NOT block glass doors\r\n**Jog carpet around backstage\r\n**Need to tape out and label each area\r\n*Reserve seating section in center of D&E (64 seats)\r\n*~~#FF0000:Assisted listening area successful last year – need to follow up on who provided this system last year~~\r\n*Bring people in through back of room\r\n*Smaller LED over entrance of Hall E – issues with cable runs needs investigated\r\n*Students in periphery\r\n*Lighting in room enhanced to cover aisles, but will not provide aisle specials\r\n*Security will be tight – US govt and Israeli dignitaries\r\n**Sweep starts 7 AM Saturday morning in D&E (done by 8 AM) docks, works across street\r\n**Also installing walk-thru magnetometers – hot at 12 PM\r\n**After sweep security will be in place for the duration\r\n**Need to provide names by Feb 10th\r\n**Command post room 247\r\n**Issuing credentials on Wed in room 102B\r\n**Security will be in place in D&E starting Thursday night\r\n**Anticipate having demonstrators – will keep them in their place\r\n**Will have a police commander on site the entire time\r\n*~~#FF0000:Need to provide radio request~~\r\n*~~#FF0000:Need to provide meal request~~\r\n*~~#FF0000:Need to provide security requirements~~\r\n*~~#FF0000:Need to provide IT requests~~\r\n*~~#FF0000:Need to provide room request~~\r\n*Staff crew meals – 103A\r\n*Conference operations – 102B\r\n*Production crew meals will be served in rear of D&E\r\n*~~#FF0000:Need to provide large plans for fire marshal – have scale at office~~\r\n*Table diagram comes from Courtney – then we add in to our floor/rigging plan\r\n*\r\n\r\n-=Weekly Assignments=-\r\nRich:\r\n*Update production schedule to 5AM Thursday carpet load-in\r\n*Update floor plan per new aisle configuration – vet through Lorne and get to Courtney\r\n*Should we take a cut at adding in boneyards to the FP?\r\n*Create large-scale plans for fire marshal pending Courtney table numbering\r\n*Research/revisit assisted listening solution from last year and propose plan for this year\r\n\r\nHillarie:\r\n*Create a contact list of all Viva personnel (staff and confirmed freelancers)\r\n*Create rooming list based on above (consider me out of town and requiring a room)\r\n*Make travel plans\r\n*Order new name badges – work with Lorne/Carlos for new logo artwork – would the metallic silver be cool?\r\n*Create décor plan summary (with photos) and distribute to our team\r\n*Co-contribute to production book\r\n\r\nBen:\r\n*Create security requirements memo\r\n*Create IT requests for each location (D/E, Ballroom, 164)\r\n*Create a meal schedule\r\n*Create dress code memo\r\n*Co-contribute to production book\r\n\r\n\r\n','',1170266906,'',2,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',3778,NULL,NULL,1170266806,0),(42,'AIPAC National Summit 2007',2,'((AIPAC NS 07 Status Meetings))\r\n\r\n((AIPAC NS 07 Random Input))','',1191877924,'',2,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',63,NULL,NULL,1191877870,0),(43,'AIPAC NS 07 Random Input',1,'((AIPAC NS 8-Oct-07))','',1191877959,'',1,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',21,NULL,NULL,1191877959,0),(44,'AIPAC NS 8-Oct-07',3,'__BREAKOUTS (FROM LORNE CALL WITH JEREMY)__\r\n\r\nACTION ITEMS:\r\n-Budget for breakouts (Viva)\r\n -Plasma (but check to see if rear screen could work)\r\n\r\n-Budget for Decor (Viva)\r\n -Peter (Direct Bill)\r\n -Ken\r\n -Art Museum (another vendor)\r\n\r\n-Get direction from AIPAC re Content Creations - Then create budget\r\n-Review overall AV Budget- Have final budget estimate for Tuesday\r\n \r\nMeeting at VIVA on Tuesday 12:30 pm - 2:00pm\r\n \r\n \r\nBreakouts: (200 each room)\r\n 2 Rooms\r\n 2 days\r\n Sat LI\r\n Sun AM-PM / Mon AM Sessions\r\n LO Mon Out\r\nRooms: Freedom & Independence Ballroom\r\nProbably go with Plasmas\r\n \r\nDecor - Need to confirm budget\r\n \r\nContent Creation Allowance ?? What to do\r\n \r\nGala - Museum - In-house will do lighting (Ambient Lighting in Stairwell)\r\n Nothing Inside\r\n Audio for great hall for band\r\n Need contact info for band\r\n Just Tent and exterior of building\r\n \r\n--- \r\n\r\n__LORNE CALL WITH RENEE__\r\n\r\n-Creative for Opening Session\r\n-Do Music for\r\n 5-7 second for Congressional Gala\r\n\r\n-Two Multi-Media Projects\r\n Briefing Theaters\r\n -Ambient & Information - Why US / Israeli Relationship matters to America\r\n Pictures are for conceptual\r\n -Transitional Tool - "Let\'s now talk about ... Google Map - Resolve to something\r\n \r\n-Week from Thu\r\n Paper Walk Through Oct 18th\r\n \r\nOTHER MULTIMEDIA\r\n-Walk-in\'s to Advertise PC & Summit\r\n-About AIPAC\r\n-Title Slides (Beth doing design)\r\n \r\nJEREMY - HOTEL EVENTS\r\n \r\nSaturday-\r\nRehearse Sunday at Hotel - Late Afternoon\r\n__~~#FF0000:Rehearse Museum - Saturday ~~__\r\n\r\n---\r\n__LORNE/STEVE/HILLARIE CALL WITH BOATWRIGHT__\r\n\r\n- carps for Hargrove, otherwise stagehands\r\n- rigging challenges, chandelier beams right in way – will go north/south since east/west\r\n- video screens\r\n- PAM\r\no 1 – 200amp 3ph\r\no 1 – 300amp 3ph\r\n- Three columned areas\r\no Backlighting and front per column plus triangles at top \r\n- Tent - 13’ sides, 34’ peak\r\n- Load-in Friday morning\r\n- Want fountain lit, leave the water in (4 lights)\r\n- Power refrig from 100-amp\r\n','',1191878332,'',3,'smackey','66.80.242.3',NULL,NULL,NULL,NULL,NULL,0,NULL,'smackey',2089,NULL,NULL,1191878034,0); /*!40000 ALTER TABLE `tiki_pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_pageviews` -- DROP TABLE IF EXISTS `tiki_pageviews`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_pageviews` ( `day` int(14) NOT NULL default '0', `pageviews` int(14) default NULL, PRIMARY KEY (`day`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_pageviews` -- LOCK TABLES `tiki_pageviews` WRITE; /*!40000 ALTER TABLE `tiki_pageviews` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_pageviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_poll_objects` -- DROP TABLE IF EXISTS `tiki_poll_objects`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_poll_objects` ( `catObjectId` int(11) NOT NULL default '0', `pollId` int(11) NOT NULL default '0', `title` varchar(255) default NULL, PRIMARY KEY (`catObjectId`,`pollId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_poll_objects` -- LOCK TABLES `tiki_poll_objects` WRITE; /*!40000 ALTER TABLE `tiki_poll_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_poll_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_poll_options` -- DROP TABLE IF EXISTS `tiki_poll_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_poll_options` ( `pollId` int(8) NOT NULL default '0', `optionId` int(8) NOT NULL auto_increment, `title` varchar(200) default NULL, `position` int(4) NOT NULL default '0', `votes` int(8) default NULL, PRIMARY KEY (`optionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_poll_options` -- LOCK TABLES `tiki_poll_options` WRITE; /*!40000 ALTER TABLE `tiki_poll_options` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_poll_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_polls` -- DROP TABLE IF EXISTS `tiki_polls`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_polls` ( `pollId` int(8) NOT NULL auto_increment, `title` varchar(200) default NULL, `votes` int(8) default NULL, `active` char(1) default NULL, `publishDate` int(14) default NULL, PRIMARY KEY (`pollId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_polls` -- LOCK TABLES `tiki_polls` WRITE; /*!40000 ALTER TABLE `tiki_polls` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_polls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_preferences` -- DROP TABLE IF EXISTS `tiki_preferences`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_preferences` ( `name` varchar(40) NOT NULL default '', `value` varchar(250) default NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_preferences` -- LOCK TABLES `tiki_preferences` WRITE; /*!40000 ALTER TABLE `tiki_preferences` DISABLE KEYS */; INSERT INTO `tiki_preferences` VALUES ('allowRegister','n'),('anonCanEdit','n'),('art_list_author','y'),('art_list_date','y'),('art_list_expire','y'),('art_list_img','y'),('art_list_reads','y'),('art_list_size','y'),('art_list_title','y'),('art_list_topic','y'),('art_list_type','y'),('art_list_visible','y'),('article_comments_default_ordering','points_desc'),('article_comments_per_page','10'),('auth_create_user_auth','n'),('auth_create_user_tiki','n'),('auth_ldap_adminpass',''),('auth_ldap_adminuser',''),('auth_ldap_basedn',''),('auth_ldap_groupattr','cn'),('auth_ldap_groupdn',''),('auth_ldap_groupoc','groupOfUniqueNames'),('auth_ldap_url',''),('auth_ldap_host','localhost'),('auth_ldap_memberattr','uniqueMember'),('auth_ldap_memberisdn','n'),('auth_ldap_port','389'),('auth_ldap_scope','sub'),('auth_ldap_userattr','uid'),('auth_ldap_userdn',''),('auth_ldap_useroc','inetOrgPerson'),('auth_method','tiki'),('auth_skip_admin','y'),('available_languages','a:0:{}'),('available_styles','a:0:{}'),('blog_comments_default_ordering','points_desc'),('blog_comments_per_page','10'),('blog_list_activity','y'),('blog_list_created','y'),('blog_list_description','y'),('blog_list_lastmodif','y'),('blog_list_order','created_desc'),('blog_list_posts','y'),('blog_list_title','y'),('blog_list_user','n'),('blog_list_visits','y'),('blog_spellcheck','n'),('cacheimages','n'),('cachepages','n'),('calendar_sticky_popup','n'),('calendar_view_tab','n'),('change_language','y'),('change_password','y'),('change_theme','y'),('cms_bot_bar','y'),('cms_left_column','y'),('cms_right_column','y'),('cms_spellcheck','n'),('cms_top_bar','n'),('contact_anon','n'),('contact_user','admin'),('count_admin_pvs','y'),('default_map','pacific.map'),('direct_pagination','n'),('directory_columns','3'),('directory_links_per_page','20'),('directory_open_links','n'),('directory_validate_urls','n'),('directory_cool_sites','y'),('display_timezone','EST'),('eponymousGroups','n'),('faq_comments_default_ordering','points_desc'),('faq_comments_per_page','10'),('feature_article_comments','n'),('feature_articles','n'),('feature_autolinks','y'),('feature_babelfish','n'),('feature_babelfish_logo','n'),('feature_backlinks','y'),('feature_banners','n'),('feature_banning','n'),('feature_blog_comments','n'),('feature_blog_rankings','y'),('feature_blogposts_comments','n'),('feature_blogs','n'),('feature_bot_bar','y'),('feature_bot_bar_icons','y'),('feature_bot_bar_debug','y'),('feature_calendar','n'),('feature_categories','n'),('feature_categoryobjects','n'),('feature_categorypath','n'),('feature_challenge','n'),('feature_charts','n'),('feature_chat','n'),('feature_clear_passwords','n'),('feature_cms_print','y'),('feature_cms_rankings','y'),('feature_cms_templates','n'),('feature_comm','n'),('feature_contact','n'),('feature_custom_home','n'),('feature_debug_console','n'),('feature_debugger_console','n'),('feature_detect_language','n'),('feature_directory','n'),('feature_drawings','n'),('feature_dump','n'),('feature_dynamic_content','n'),('feature_edit_templates','n'),('feature_editcss','n'),('feature_eph','n'),('feature_faq_comments','y'),('feature_faqs','n'),('feature_featuredLinks','y'),('feature_file_galleries','n'),('feature_file_galleries_comments','n'),('feature_file_galleries_rankings','n'),('feature_forum_parse','n'),('feature_forum_quickjump','n'),('feature_forum_rankings','y'),('feature_forum_topicd','n'),('feature_forums','n'),('feature_friends','n'),('feature_gal_rankings','y'),('feature_gal_batch','n'),('feature_galleries','n'),('feature_gal_imgcache','n'),('feature_games','n'),('feature_help','n'),('feature_history','y'),('feature_hotwords','y'),('feature_hotwords_nw','n'),('feature_html_pages','n'),('feature_image_galleries_comments','n'),('feature_integrator','n'),('feature_jscalendar','n'),('feature_lastChanges','y'),('feature_left_column','y'),('feature_likePages','y'),('feature_listPages','y'),('feature_live_support','n'),('feature_maps','n'),('feature_menusfolderstyle','y'),('feature_messages','n'),('feature_minical','n'),('feature_mobile','n'),('feature_modulecontrols','n'),('feature_multilingual','n'),('feature_newsletters','n'),('feature_newsreader','n'),('feature_notepad','n'),('feature_obzip','n'),('feature_page_title','y'),('feature_phplayers','n'),('feature_phpopentracker','n'),('feature_poll_anonymous','n'),('feature_poll_comments','n'),('feature_polls','n'),('feature_quizzes','n'),('feature_referer_stats','n'),('feature_right_column','y'),('feature_sandbox','y'),('feature_score','n'),('feature_search','y'),('feature_search_fulltext','y'),('feature_search_stats','n'),('feature_sheet','n'),('feature_shoutbox','n'),('feature_smileys','y'),('feature_stats','n'),('feature_submissions','n'),('feature_surveys','n'),('feature_tabs','n'),('feature_tasks','n'),('feature_theme_control','n'),('feature_ticketlib','n'),('feature_ticketlib2','y'),('feature_top_bar','y'),('feature_trackers','n'),('feature_userPreferences','n'),('feature_userVersions','n'),('feature_user_bookmarks','n'),('feature_user_watches','n'),('feature_user_watches_translations','n'),('feature_userfiles','n'),('feature_usermenu','n'),('feature_view_tpl','n'),('feature_warn_on_edit','y'),('feature_webmail','n'),('feature_wiki','y'),('feature_wiki_allowhtml','n'),('feature_wiki_attachments','n'),('feature_wiki_comments','n'),('feature_wiki_description','n'),('feature_wiki_discuss','n'),('feature_wiki_export','n'),('feature_wiki_footnotes','n'),('feature_wiki_import_html','n'),('feature_wiki_monosp','y'),('feature_wiki_multiprint','n'),('feature_wiki_notepad','n'),('feature_wiki_open_as_structure','n'),('feature_wiki_pdf','n'),('feature_wiki_pictures','n'),('feature_wiki_rankings','y'),('feature_wiki_ratings','n'),('feature_wiki_tables','old'),('feature_wiki_templates','n'),('feature_wiki_undo','y'),('feature_wiki_userpage','y'),('feature_wiki_userpage_prefix','UserPage'),('feature_wiki_usrlock','n'),('feature_wikiwords','y'),('feature_workflow','n'),('feature_wysiwyg','no'),('feature_xmlrpc','n'),('fgal_allow_duplicates','n'),('fgal_list_created','y'),('fgal_list_description','n'),('fgal_list_files','y'),('fgal_list_hits','y'),('fgal_list_lastmodif','y'),('fgal_list_name','y'),('fgal_list_user','y'),('fgal_match_regex',''),('fgal_nmatch_regex',''),('fgal_use_db','y'),('fgal_use_dir',''),('file_galleries_comments_default_ordering','points_desc'),('file_galleries_comments_per_page','10'),('forgotPass','n'),('forum_list_desc','y'),('forum_list_lastpost','y'),('forum_list_posts','y'),('forum_list_ppd','y'),('forum_list_topics','y'),('forum_list_visits','y'),('forums_ordering','created_desc'),('gal_batch_dir',''),('gal_list_created','y'),('gal_list_description','y'),('gal_list_imgs','y'),('gal_list_lastmodif','y'),('gal_list_name','y'),('gal_list_user','y'),('gal_list_visits','y'),('gal_match_regex',''),('gal_nmatch_regex',''),('gal_use_db','y'),('gal_use_dir',''),('gal_use_lib','gd'),('gal_imgcache_dir','temp/cache'),('groupTracker','n'),('home_file_gallery',''),('http_domain',''),('http_port','80'),('http_prefix','/'),('https','auto'),('https_domain',''),('https_login','n'),('https_login_required','n'),('https_port','443'),('https_prefix','/'),('image_galleries_comments_default_order','points_desc'),('image_galleries_comments_per_page','10'),('keep_versions','1'),('lang_use_db','n'),('language','en'),('layout_section','n'),('long_date_format','%A %d of %B, %Y'),('long_time_format','%H:%M:%S %Z'),('mail_crlf','LF'),('map_path','/var/www/html/map/'),('maxArticles','10'),('maxRecords','10'),('maxVersions','0'),('max_rss_articles','10'),('max_rss_blog','10'),('max_rss_blogs','10'),('max_rss_directories','10'),('max_rss_file_galleries','10'),('max_rss_file_gallery','10'),('max_rss_forum','10'),('max_rss_forums','10'),('max_rss_image_galleries','10'),('max_rss_image_gallery','10'),('max_rss_mapfiles','10'),('max_rss_wiki','10'),('max_rss_tracker','10'),('min_pass_length','1'),('modallgroups','y'),('pass_chr_num','n'),('pass_due','999'),('poll_comments_default_ordering','points_desc'),('poll_comments_per_page','10'),('popupLinks','n'),('proxy_host',''),('proxy_port',''),('record_untranslated','n'),('registerPasscode',''),('rememberme','disabled'),('remembertime','7200'),('rnd_num_reg','n'),('rss_articles','y'),('rss_blog','n'),('rss_blogs','y'),('rss_directories','y'),('rss_file_galleries','y'),('rss_file_gallery','n'),('rss_forum','y'),('rss_forums','y'),('rss_image_galleries','y'),('rss_image_gallery','n'),('rss_mapfiles','y'),('rss_wiki','y'),('rss_tracker','n'),('rssfeed_default_version','2'),('rssfeed_editor',''),('rssfeed_language','en-us'),('rssfeed_webmaster',''),('search_lru_length','100'),('search_lru_purge_rate','5'),('search_max_syllwords','100'),('search_min_wordlength','3'),('search_refresh_rate','5'),('search_syll_age','48'),('sender_email',''),('short_date_format','%a %d of %b, %Y'),('short_time_format','%H:%M %Z'),('shoutbox_autolink','n'),('siteTitle',''),('slide_style','slidestyle.css'),('style','whitebluegrey.css'),('system_os','unix'),('t_use_db','y'),('t_use_dir',''),('trk_with_mirror_tables','n'),('tikiIndex','tiki-index.php'),('tmpDir','temp'),('uf_use_db','y'),('uf_use_dir',''),('urlIndex',''),('useRegisterPasscode','n'),('useUrlIndex','n'),('use_proxy','n'),('userTracker','n'),('user_assigned_modules','n'),('user_list_order','score_desc'),('userfiles_quota','30'),('validateEmail','n'),('validateRegistration','n'),('validateUsers','n'),('w_use_db','y'),('w_use_dir',''),('warn_on_edit_time','10'),('webmail_max_attachment','1500000'),('webmail_view_html','y'),('webserverauth','n'),('wikiHomePage','HomePage'),('wikiLicensePage',''),('wikiSubmitNotice',''),('wiki_bot_bar','n'),('wiki_cache','0'),('wiki_comments_default_ordering','points_desc'),('wiki_comments_per_page','10'),('wiki_creator_admin','n'),('wiki_feature_copyrights','n'),('wiki_forum',''),('wiki_forum_id',''),('wiki_left_column','y'),('wiki_list_backlinks','y'),('wiki_list_comment','y'),('wiki_list_creator','y'),('wiki_list_hits','y'),('wiki_list_lastmodif','y'),('wiki_list_lastver','y'),('wiki_list_links','y'),('wiki_list_name','y'),('wiki_list_size','y'),('wiki_list_status','y'),('wiki_list_user','y'),('wiki_list_versions','y'),('wiki_page_regex','strict'),('wiki_right_column','y'),('wiki_spellcheck','n'),('wiki_top_bar','n'),('wiki_uses_slides','n'),('wiki_wikisyntax_in_html','full'),('default_wiki_diff_style','minsidediff'),('limitedGoGroupHome','y'),('messu_mailbox_size','0'),('messu_archive_size','200'),('messu_sent_size','200'),('case_patched','y'),('feature_wiki_pageid','n'),('feature_wikiwords_usedash','y'),('feature_wiki_plurals','y'),('feature_wiki_paragraph_formatting','n'),('feature_wiki_icache','n'),('feature_wiki_print','y'),('feature_wiki_replace','n'),('feature_antibot','n'),('feature_wiki_ext_icon','n'),('wiki_authors_style','classic'),('wiki_feature_3d','y'),('wiki_3d_width','500'),('wiki_3d_height','500'),('wiki_3d_navigation_depth','1'),('wiki_3d_feed_animation_interval','500'),('wiki_3d_existing_page_color','#00CC55'),('wiki_3d_missing_page_color','#FF5555'),('wiki_3d_autoload','false'),('wiki_3d_camera_distance','200'),('wiki_3d_adjust_camera','false'),('wiki_3d_fov','250'),('wiki_3d_node_size','30'),('wiki_3d_text_size','40'),('wiki_3d_friction_constant','0.4f'),('wiki_3d_elastic_constant','0.5f'),('wiki_3d_eletrostatic_constant','1000f'),('wiki_3d_spring_size','100'),('wiki_3d_node_mass','5'),('wiki_3d_node_charge','1'),('user_flip_modules','module'); /*!40000 ALTER TABLE `tiki_preferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_private_messages` -- DROP TABLE IF EXISTS `tiki_private_messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_private_messages` ( `messageId` int(8) NOT NULL auto_increment, `toNickname` varchar(200) NOT NULL default '', `data` varchar(255) default NULL, `poster` varchar(200) NOT NULL default 'anonymous', `timestamp` int(14) default NULL, PRIMARY KEY (`messageId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_private_messages` -- LOCK TABLES `tiki_private_messages` WRITE; /*!40000 ALTER TABLE `tiki_private_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_private_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_programmed_content` -- DROP TABLE IF EXISTS `tiki_programmed_content`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_programmed_content` ( `pId` int(8) NOT NULL auto_increment, `contentId` int(8) NOT NULL default '0', `publishDate` int(14) NOT NULL default '0', `data` text, PRIMARY KEY (`pId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_programmed_content` -- LOCK TABLES `tiki_programmed_content` WRITE; /*!40000 ALTER TABLE `tiki_programmed_content` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_programmed_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quicktags` -- DROP TABLE IF EXISTS `tiki_quicktags`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quicktags` ( `tagId` int(4) unsigned NOT NULL auto_increment, `taglabel` varchar(255) default NULL, `taginsert` text, `tagicon` varchar(255) default NULL, `tagcategory` varchar(255) default NULL, PRIMARY KEY (`tagId`), KEY `taglabel` (`taglabel`), KEY `tagcategory` (`tagcategory`) ) ENGINE=MyISAM AUTO_INCREMENT=50 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quicktags` -- LOCK TABLES `tiki_quicktags` WRITE; /*!40000 ALTER TABLE `tiki_quicktags` DISABLE KEYS */; INSERT INTO `tiki_quicktags` VALUES (1,'bold','__text__','images/ed_format_bold.gif','wiki'),(2,'italic','\'\'text\'\'','images/ed_format_italic.gif','wiki'),(3,'underline','===text===','images/ed_format_underline.gif','wiki'),(4,'table','||r1c1|r1c2||r2c1|r2c2||','images/insert_table.gif','wiki'),(5,'table new','||r1c1|r1c2\nr2c1|r2c2||','images/insert_table.gif','wiki'),(6,'external link','[http://example.com|text]','images/ed_link.gif','wiki'),(7,'wiki link','((text))','images/ed_copy.gif','wiki'),(8,'heading1','!text','images/ed_custom.gif','wiki'),(9,'title bar','-=text=-','images/fullscreen_maximize.gif','wiki'),(10,'box','^text^','images/ed_about.gif','wiki'),(11,'rss feed','{rss id= }','images/ico_link.gif','wiki'),(12,'dynamic content','{content id= }','images/book.gif','wiki'),(13,'tagline','{cookie}','images/footprint.gif','wiki'),(14,'hr','---','images/ed_hr.gif','wiki'),(15,'center text','::text::','images/ed_align_center.gif','wiki'),(16,'colored text','~~#FF0000:text~~','images/fontfamily.gif','wiki'),(17,'dynamic variable','%text%','images/book.gif','wiki'),(18,'image','{img src= width= height= align= desc= link= }','images/ed_image.gif','wiki'),(19,'New wms Metadata','METADATA\r\n \"wms_name\" \"myname\"\r\n \"wms_srs\" \"EPSG:4326\"\r\n \"wms_server_version\" \" \"\r\n \"wms_layers\" \"mylayers\"\r\n \"wms_request\" \"myrequest\"\r\n \"wms_format\" \" \"\r\n \"wms_time\" \" \"\r\n END','img/icons/admin_metatags.png','maps'),(20,'New Class','CLASS\r\n EXPRESSION ()\r\n SYMBOL 0\r\n OUTLINECOLOR\r\n COLOR\r\n NAME \"myclass\" \r\nEND #end of class','img/icons/mini_triangle.gif','maps'),(21,'New Projection','PROJECTION\r\n \"init=epsg:4326\"\r\nEND','images/ico_mode.gif','maps'),(22,'New Query','#\r\n# Start of query definitions\r\n#\r\n QUERYMAP\r\n STATUS ON\r\n STYLE HILITE\r\nEND','img/icons/questions.gif','maps'),(23,'New Scalebar','#\r\n# Start of scalebar\r\n#\r\nSCALEBAR\r\n IMAGECOLOR 255 255 255\r\n STYLE 1\r\n SIZE 400 2\r\n COLOR 0 0 0\r\n UNITS KILOMETERS\r\n INTERVALS 5\r\n STATUS ON\r\nEND','img/icons/desc_length.gif','maps'),(24,'New Layer','LAYER\r\n NAME\r\n TYPE\r\n STATUS ON\r\n DATA \"mydata\"\r\nEND #end of layer','images/ed_copy.gif','maps'),(25,'New Label','LABEL\r\n COLOR\r\n ANGLE\r\n FONT arial\r\n TYPE TRUETYPE\r\n POSITION\r\n PARTIALS TRUE\r\n SIZE 6\r\n BUFFER 0\r\n OUTLINECOLOR \r\nEND #end of label','img/icons/fontfamily.gif','maps'),(26,'New Reference','#\r\n#start of reference\r\n#\r\n REFERENCE\r\n SIZE 120 60\r\n STATUS ON\r\n EXTENT -180 -90 182 88\r\n OUTLINECOLOR 255 0 0\r\n IMAGE \"myimagedata\"\r\n COLOR -1 -1 -1\r\nEND','images/ed_image.gif','maps'),(27,'New Legend','#\r\n#start of Legend\r\n#\r\n LEGEND\r\n KEYSIZE 18 12\r\n POSTLABELCACHE TRUE\r\n STATUS ON\r\nEND','images/ed_about.gif','maps'),(28,'New Web','#\r\n# Start of web interface definition\r\n#\r\nWEB\r\n TEMPLATE \"myfile/url\"\r\n MINSCALE 1000\r\n MAXSCALE 40000\r\n IMAGEPATH \"myimagepath\"\r\n IMAGEURL \"mypath\"\r\nEND','img/icons/ico_link.gif','maps'),(29,'New Outputformat','OUTPUTFORMAT\r\n NAME\r\n DRIVER \" \"\r\n MIMETYPE \"myimagetype\"\r\n IMAGEMODE RGB\r\n EXTENSION \"png\"\r\nEND','img/icons/opera.gif','maps'),(30,'New Mapfile','#\r\n# Start of mapfile\r\n#\r\nNAME MYMAPFLE\r\n STATUS ON\r\nSIZE \r\nEXTENT\r\nUNITS \r\nSHAPEPATH \" \"\r\nIMAGETYPE \" \"\r\nFONTSET \" \"\r\nIMAGECOLOR -1 -1 -1\r\n\r\n#remove this text and add objects here\r\n\r\nEND # end of mapfile','img/icons/global.gif','maps'),(31,'bold','__text__','images/ed_format_bold.gif','newsletters'),(32,'italic','\'\'text\'\'','images/ed_format_italic.gif','newsletters'),(33,'underline','===text===','images/ed_format_underline.gif','newsletters'),(34,'external link','[http://example.com|text|nocache]','images/ed_link.gif','newsletters'),(35,'heading1','!text','images/ed_custom.gif','newsletters'),(36,'hr','---','images/ed_hr.gif','newsletters'),(37,'center text','::text::','images/ed_align_center.gif','newsletters'),(38,'colored text','~~#FF0000:text~~','images/fontfamily.gif','newsletters'),(39,'image','{img src= width= height= align= desc= link= }','images/ed_image.gif','newsletters'),(40,'New wms Metadata','METADATA\r\n \"wms_name\" \"myname\"\r\n \"wms_srs\" \"EPSG:4326\"\r\n \"wms_server_version\" \" \"\r\n \"wms_layers\" \"mylayers\"\r\n \"wms_request\" \"myrequest\"\r\n \"wms_format\" \" \"\r\n \"wms_time\" \" \"\r\n END','img/icons/admin_metatags.png','maps'),(41,'New Class','CLASS\r\n EXPRESSION ()\r\n SYMBOL 0\r\n OUTLINECOLOR\r\n COLOR\r\n NAME \"myclass\"\r\nEND #end of class','img/icons/mini_triangle.gif','maps'),(42,'New Query','#\r\n#Start of query definitions\r\n QUERYMAP\r\n STATUS ON\r\n STYLE HILITE\r\nEND','img/icons/question.gif','maps'),(43,'New Scalebar','#\r\n#start of scalebar\r\nSCALEBAR\r\n IMAGECOLOR 255 255 255\r\n STYLE 1\r\n SIZE 400 2\r\n COLOR 0 0 0\r\n UNITS KILOMETERS\r\n INTERVALS 5\r\n STATUS ON\r\nEND','img/icons/desc_lenght.gif','maps'),(44,'New Layer','LAYER\r\n NAME \"mylayer\"\r\n TYPE\r\n STATUS ON\r\n DATA \"mydata\"\r\nEND #end of layer','img/ed_copy.gif','maps'),(45,'New Label','LABEL\r\n COLOR\r\n ANGLE\r\n FONT arial\r\n TYPE TRUETYPE\r\n POSITION\r\n PARTIALS TRUE\r\n SIZE 6\r\n BUFFER 0\r\n OUTLINECOLOR\r\nEND #end of label','img/icons/fontfamily.gif','maps'),(46,'New Reference','#\r\n#start of reference\r\nREFERENCE\r\n SIZE 120 60\r\n STATUS ON\r\n EXTENT -180 -90 182 88\r\n OUTLINECOLOR 255 0 0\r\n IMAGE \"myimagedata\"\r\nCOLOR -1 -1 -1\r\nEND','images/ed_image.gif','maps'),(47,'New Legend','#\r\n#start of legend\r\n#\r\nLEGENDr\n KEYSIZE 18 12\r\n POSTLABELCACHE TRUE\r\n STATUS ON\r\nEND','images/ed_about.gif','maps'),(48,'New Web','#\r\n#Start of web interface definition\r\n#\r\nWEB\r\n TEMPLATE \"myfile/url\"\r\n MINSCALE 1000\r\n MAXSCALE 40000\r\n IMAGEPATH \"myimagepath\"\r\n IMAGEURL \"mypath\"\r\nEND','img/icons/ico_link.gif','maps'),(49,'New Mapfile','#\r\n#Start of mapfile\r\n#\r\nNAME MYMAPFILE\r\n STATUS ON\r\nSIZE \r\nEXTENT\r\n UNITS\r\nSHAPEPATH \" \"\r\nIMAGETYPE \" \"\r\nFONTSET \" \"\r\nIMAGECOLOR -1 -1 -1\r\n\r\n#remove this text and add objects here\r\n\r\nEND # end of mapfile','img/icons/global.gif','maps'); /*!40000 ALTER TABLE `tiki_quicktags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quiz_question_options` -- DROP TABLE IF EXISTS `tiki_quiz_question_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quiz_question_options` ( `optionId` int(10) NOT NULL auto_increment, `questionId` int(10) default NULL, `optionText` text, `points` int(4) default NULL, PRIMARY KEY (`optionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quiz_question_options` -- LOCK TABLES `tiki_quiz_question_options` WRITE; /*!40000 ALTER TABLE `tiki_quiz_question_options` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_quiz_question_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quiz_questions` -- DROP TABLE IF EXISTS `tiki_quiz_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quiz_questions` ( `questionId` int(10) NOT NULL auto_increment, `quizId` int(10) default NULL, `question` text, `position` int(4) default NULL, `type` char(1) default NULL, `maxPoints` int(4) default NULL, PRIMARY KEY (`questionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quiz_questions` -- LOCK TABLES `tiki_quiz_questions` WRITE; /*!40000 ALTER TABLE `tiki_quiz_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_quiz_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quiz_results` -- DROP TABLE IF EXISTS `tiki_quiz_results`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quiz_results` ( `resultId` int(10) NOT NULL auto_increment, `quizId` int(10) default NULL, `fromPoints` int(4) default NULL, `toPoints` int(4) default NULL, `answer` text, PRIMARY KEY (`resultId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quiz_results` -- LOCK TABLES `tiki_quiz_results` WRITE; /*!40000 ALTER TABLE `tiki_quiz_results` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_quiz_results` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quiz_stats` -- DROP TABLE IF EXISTS `tiki_quiz_stats`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quiz_stats` ( `quizId` int(10) NOT NULL default '0', `questionId` int(10) NOT NULL default '0', `optionId` int(10) NOT NULL default '0', `votes` int(10) default NULL, PRIMARY KEY (`quizId`,`questionId`,`optionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quiz_stats` -- LOCK TABLES `tiki_quiz_stats` WRITE; /*!40000 ALTER TABLE `tiki_quiz_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_quiz_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quiz_stats_sum` -- DROP TABLE IF EXISTS `tiki_quiz_stats_sum`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quiz_stats_sum` ( `quizId` int(10) NOT NULL default '0', `quizName` varchar(255) default NULL, `timesTaken` int(10) default NULL, `avgpoints` decimal(5,2) default NULL, `avgavg` decimal(5,2) default NULL, `avgtime` decimal(5,2) default NULL, PRIMARY KEY (`quizId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quiz_stats_sum` -- LOCK TABLES `tiki_quiz_stats_sum` WRITE; /*!40000 ALTER TABLE `tiki_quiz_stats_sum` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_quiz_stats_sum` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_quizzes` -- DROP TABLE IF EXISTS `tiki_quizzes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_quizzes` ( `quizId` int(10) NOT NULL auto_increment, `name` varchar(255) default NULL, `description` text, `canRepeat` char(1) default NULL, `storeResults` char(1) default NULL, `questionsPerPage` int(4) default NULL, `timeLimited` char(1) default NULL, `timeLimit` int(14) default NULL, `created` int(14) default NULL, `taken` int(10) default NULL, `immediateFeedback` char(1) default NULL, `showAnswers` char(1) default NULL, `shuffleQuestions` char(1) default NULL, `shuffleAnswers` char(1) default NULL, `publishDate` int(14) default NULL, `expireDate` int(14) default NULL, `bDeleted` char(1) default NULL, `nVersion` int(4) NOT NULL default '0', `nAuthor` int(4) default NULL, `bOnline` char(1) default NULL, `bRandomQuestions` char(1) default NULL, `nRandomQuestions` tinyint(4) default NULL, `bLimitQuestionsPerPage` char(1) default NULL, `nLimitQuestionsPerPage` tinyint(4) default NULL, `bMultiSession` char(1) default NULL, `nCanRepeat` tinyint(4) default NULL, `sGradingMethod` varchar(80) default NULL, `sShowScore` varchar(80) default NULL, `sShowCorrectAnswers` varchar(80) default NULL, `sPublishStats` varchar(80) default NULL, `bAdditionalQuestions` char(1) default NULL, `bForum` char(1) default NULL, `sForum` varchar(80) default NULL, `sPrologue` text, `sData` text, `sEpilogue` text, `passingperct` int(4) default '0', PRIMARY KEY (`quizId`,`nVersion`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_quizzes` -- LOCK TABLES `tiki_quizzes` WRITE; /*!40000 ALTER TABLE `tiki_quizzes` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_quizzes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_received_articles` -- DROP TABLE IF EXISTS `tiki_received_articles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_received_articles` ( `receivedArticleId` int(14) NOT NULL auto_increment, `receivedFromSite` varchar(200) default NULL, `receivedFromUser` varchar(200) default NULL, `receivedDate` int(14) default NULL, `title` varchar(80) default NULL, `authorName` varchar(60) default NULL, `size` int(12) default NULL, `useImage` char(1) default NULL, `image_name` varchar(80) default NULL, `image_type` varchar(80) default NULL, `image_size` int(14) default NULL, `image_x` int(4) default NULL, `image_y` int(4) default NULL, `image_data` longblob, `publishDate` int(14) default NULL, `expireDate` int(14) default NULL, `created` int(14) default NULL, `heading` text, `body` longblob, `hash` varchar(32) default NULL, `author` varchar(200) default NULL, `type` varchar(50) default NULL, `rating` decimal(3,2) default NULL, PRIMARY KEY (`receivedArticleId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_received_articles` -- LOCK TABLES `tiki_received_articles` WRITE; /*!40000 ALTER TABLE `tiki_received_articles` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_received_articles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_received_pages` -- DROP TABLE IF EXISTS `tiki_received_pages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_received_pages` ( `receivedPageId` int(14) NOT NULL auto_increment, `pageName` varchar(160) NOT NULL default '', `data` longblob, `description` varchar(200) default NULL, `comment` varchar(200) default NULL, `receivedFromSite` varchar(200) default NULL, `receivedFromUser` varchar(200) default NULL, `receivedDate` int(14) default NULL, PRIMARY KEY (`receivedPageId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_received_pages` -- LOCK TABLES `tiki_received_pages` WRITE; /*!40000 ALTER TABLE `tiki_received_pages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_received_pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_referer_stats` -- DROP TABLE IF EXISTS `tiki_referer_stats`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_referer_stats` ( `referer` varchar(255) NOT NULL default '', `hits` int(10) default NULL, `last` int(14) default NULL, PRIMARY KEY (`referer`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_referer_stats` -- LOCK TABLES `tiki_referer_stats` WRITE; /*!40000 ALTER TABLE `tiki_referer_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_referer_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_related_categories` -- DROP TABLE IF EXISTS `tiki_related_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_related_categories` ( `categId` int(10) NOT NULL default '0', `relatedTo` int(10) NOT NULL default '0', PRIMARY KEY (`categId`,`relatedTo`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_related_categories` -- LOCK TABLES `tiki_related_categories` WRITE; /*!40000 ALTER TABLE `tiki_related_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_related_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_rss_feeds` -- DROP TABLE IF EXISTS `tiki_rss_feeds`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_rss_feeds` ( `name` varchar(30) NOT NULL default '', `rssVer` char(1) NOT NULL default '1', `refresh` int(8) default '300', `lastUpdated` int(14) default NULL, `cache` longblob, PRIMARY KEY (`name`,`rssVer`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_rss_feeds` -- LOCK TABLES `tiki_rss_feeds` WRITE; /*!40000 ALTER TABLE `tiki_rss_feeds` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_rss_feeds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_rss_modules` -- DROP TABLE IF EXISTS `tiki_rss_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_rss_modules` ( `rssId` int(8) NOT NULL auto_increment, `name` varchar(30) NOT NULL default '', `description` text, `url` varchar(255) NOT NULL default '', `refresh` int(8) default NULL, `lastUpdated` int(14) default NULL, `showTitle` char(1) default 'n', `showPubDate` char(1) default 'n', `content` longblob, PRIMARY KEY (`rssId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_rss_modules` -- LOCK TABLES `tiki_rss_modules` WRITE; /*!40000 ALTER TABLE `tiki_rss_modules` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_rss_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_score` -- DROP TABLE IF EXISTS `tiki_score`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_score` ( `event` varchar(40) NOT NULL default '', `score` int(11) NOT NULL default '0', `expiration` int(11) NOT NULL default '0', PRIMARY KEY (`event`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_score` -- LOCK TABLES `tiki_score` WRITE; /*!40000 ALTER TABLE `tiki_score` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_score` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_search_stats` -- DROP TABLE IF EXISTS `tiki_search_stats`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_search_stats` ( `term` varchar(50) NOT NULL default '', `hits` int(10) default NULL, PRIMARY KEY (`term`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_search_stats` -- LOCK TABLES `tiki_search_stats` WRITE; /*!40000 ALTER TABLE `tiki_search_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_search_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_searchindex` -- DROP TABLE IF EXISTS `tiki_searchindex`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_searchindex` ( `searchword` varchar(80) NOT NULL default '', `location` varchar(80) NOT NULL default '', `page` varchar(255) NOT NULL default '', `count` int(11) NOT NULL default '1', `last_update` int(11) NOT NULL default '0', PRIMARY KEY (`searchword`,`location`,`page`(80)), KEY `last_update` (`last_update`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_searchindex` -- LOCK TABLES `tiki_searchindex` WRITE; /*!40000 ALTER TABLE `tiki_searchindex` DISABLE KEYS */; INSERT INTO `tiki_searchindex` VALUES ('tape','wiki','Lorne Sept18',2,1191878287),('missing','wiki','August 24 Meeting With Evan',1,1166559829),('recent','wiki','August 24 Meeting With Evan',1,1166559829),('jenny','wiki','August 24 Meeting With Evan',1,1166559829),('from','wiki','August 24 Meeting With Evan',1,1166559829),('pull','wiki','August 24 Meeting With Evan',1,1166559829),('hits','wiki','August 24 Meeting With Evan',1,1166559829),('allstate','wiki','August 24 Meeting With Evan',1,1166559829),('story','wiki','August 24 Meeting With Evan',3,1166559829),('rich','wiki','August 24 Meeting With Evan',1,1166559829),('very','wiki','August 24 Meeting With Evan',1,1166559829),('minute,','wiki','August 24 Meeting With Evan',1,1166559829),('process','wiki','August 24 Meeting With Evan',1,1166559829),('their','wiki','August 24 Meeting With Evan',1,1166559829),('differentiation,','wiki','August 24 Meeting With Evan',1,1166559829),('embedding','wiki','August 24 Meeting With Evan',1,1166559829),('they','wiki','August 24 Meeting With Evan',1,1166559829),('chose','wiki','August 24 Meeting With Evan',1,1166559829),('team','wiki','August 24 Meeting With Evan',1,1166559829),('(customer)','wiki','August 24 Meeting With Evan',1,1166559829),('clay','wiki','August 24 Meeting With Evan',1,1166559829),('allstate,','wiki','August 24 Meeting With Evan',1,1166559829),('tomorrow','wiki','August 24 Meeting With Evan',1,1166559829),('tapes','wiki','August 24 Meeting With Evan',1,1166559829),('return','wiki','August 24 Meeting With Evan',1,1166559829),('duplicated','wiki','August 24 Meeting With Evan',1,1166559829),('being','wiki','August 24 Meeting With Evan',1,1166559829),('content','wiki','August 24 Meeting With Evan',1,1166559829),('treatment','wiki','August 24 Meeting With Evan',1,1166559829),('created','wiki','August 24 Meeting With Evan',1,1166559829),('summaries','wiki','August 24 Meeting With Evan',1,1166559829),('emily','wiki','Production Team Status',2,1191878332),('guy,','wiki','Production Team Status',1,1191878332),('from','wiki','Production Team Status',3,1191878332),('info','wiki','Production Team Status',1,1191878332),('accurate','wiki','Production Team Status',1,1191878332),('getting','wiki','Production Team Status',1,1191878332),('issues','wiki','Production Team Status',1,1191878332),('having','wiki','Production Team Status',2,1191878332),('sessions','wiki','Production Team Status',1,1191878332),('input','wiki','Production Team Status',1,1191878332),('deployâ€)','wiki','Production Team Status',1,1191878332),('“how','wiki','Production Team Status',1,1191878332),('step','wiki','Production Team Status',1,1191878332),('long','wiki','Production Team Status',1,1191878332),('minutes','wiki','Production Team Status',1,1191878332),('demo','wiki','Production Team Status',1,1191878332),('system','wiki','Production Team Status',1,1191878332),('communications','wiki','Production Team Status',1,1191878332),('mobil','wiki','Production Team Status',1,1191878332),('clinch','wiki','Production Team Status',1,1191878332),('invoice','wiki','Production Team Status',4,1191878332),('lorne','wiki','Production Team Status',2,1191878332),('review','wiki','Production Team Status',1,1191878332),('year','wiki','Production Team Status',1,1191878332),('they','wiki','Production Team Status',1,1191878332),('wiki','wiki','AOL Webcast Project Wiki',1,1166040936),('webcast','wiki','AOL Webcast Project Wiki',1,1166040936),('executive','wiki','August 24 Meeting With Evan',1,1166559829),('hands','wiki','August 24 Meeting With Evan',1,1166559829),('hinges','wiki','Creative Proposal 1 Dec 06',1,1191871605),('training','wiki','HomePage',1,1191877960),('achievers','wiki','Production Team Status',1,1191878332),('avaya’s','wiki','Production Team Status',1,1191878332),('spouses','wiki','Production Team Status',1,1191878332),('tell','wiki','Production Team Status',1,1191878332),('inserted','wiki','Production Team Status',1,1191878332),('operations','wiki','HomePage',1,1191877960),('projects','wiki','HomePage',1,1191877960),('status','wiki','HomePage',1,1191877960),('team','wiki','HomePage',1,1191877960),('production','wiki','HomePage',1,1191877960),('execs','wiki','Production Team Status',1,1191878332),('with','wiki','Production Team Status',9,1191878332),('clips','wiki','Production Team Status',1,1191878332),('movie','wiki','Production Team Status',1,1191878332),('italian','wiki','Production Team Status',1,1191878332),('video','wiki','Production Team Status',7,1191878332),('club','wiki','Production Team Status',1,1191878332),('achiever’s','wiki','Production Team Status',1,1191878332),('january','wiki','Production Team Status',1,1191878332),('today','wiki','Production Team Status',6,1191878332),('finish','wiki','Production Team Status',1,1191878332),('great','wiki','Production Team Status',1,1191878332),('meeting','wiki','Production Team Status',3,1191878332),('satchi','wiki','Production Team Status',1,1191878332),('avaya','wiki','Production Team Status',4,1191878332),('production','wiki','Production Team Status',3,1191878332),('post','wiki','Production Team Status',1,1191878332),('pitch','wiki','Production Team Status',4,1191878332),('project','wiki','AOL Webcast Project Wiki',1,1166040936),('designs','wiki','Production Team Status',1,1191878332),('stage','wiki','Production Team Status',1,1191878332),('aipac','wiki','Production Team Status',3,1191878332),('approaching','wiki','Production Team Status',1,1191878332),('deadlines','wiki','Production Team Status',1,1191878332),('major','wiki','Production Team Status',1,1191878332),('risk','wiki','Production Team Status',1,1191878332),('currently','wiki','Production Team Status',1,1191878332),('projects','wiki','Production Team Status',1,1191878332),('escalations','wiki','Production Team Status',1,1191878332),('11-dec-2006','wiki','Production Team Status',1,1191878332),('week','wiki','Production Team Status',1,1191878332),('status','wiki','Production Team Status',2,1191878332),('intelligent','wiki','August 24 Meeting With Evan',1,1166559829),('this','wiki','August 24 Meeting With Evan',1,1166559829),('let\'s','wiki','August 24 Meeting With Evan',1,1166559829),('launched','wiki','August 24 Meeting With Evan',1,1166559829),('we\'re','wiki','August 24 Meeting With Evan',2,1166559829),('ready','wiki','August 24 Meeting With Evan',1,1166559829),('write','wiki','August 24 Meeting With Evan',1,1166559829),('really','wiki','August 24 Meeting With Evan',1,1166559829),('chapter','wiki','August 24 Meeting With Evan',1,1166559829),('changes','wiki','August 24 Meeting With Evan',1,1166559829),('finale','wiki','August 24 Meeting With Evan',1,1166559829),('devconnect?','wiki','August 24 Meeting With Evan',1,1166559829),('growth','wiki','August 24 Meeting With Evan',1,1166559829),('lot\'s','wiki','August 24 Meeting With Evan',1,1166559829),('yielded','wiki','August 24 Meeting With Evan',1,1166559829),('that','wiki','August 24 Meeting With Evan',2,1166559829),('coverage','wiki','August 24 Meeting With Evan',1,1166559829),('show','wiki','August 24 Meeting With Evan',2,1166559829),('fifa,','wiki','August 24 Meeting With Evan',1,1166559829),('over-focus','wiki','August 24 Meeting With Evan',1,1166559829),('don\'t','wiki','August 24 Meeting With Evan',1,1166559829),('level','wiki','August 24 Meeting With Evan',1,1166559829),('high','wiki','August 24 Meeting With Evan',1,1166559829),('keep','wiki','August 24 Meeting With Evan',1,1166559829),('view','wiki','August 24 Meeting With Evan',1,1166559829),('analyst','wiki','August 24 Meeting With Evan',1,1166559829),('media','wiki','August 24 Meeting With Evan',1,1166559829),('i.e.','wiki','August 24 Meeting With Evan',1,1166559829),('input','wiki','August 24 Meeting With Evan',1,1166559829),('newman','wiki','August 24 Meeting With Evan',1,1166559829),('lynne','wiki','August 24 Meeting With Evan',1,1166559829),('past','wiki','August 24 Meeting With Evan',1,1166559829),('over','wiki','August 24 Meeting With Evan',1,1166559829),('assets','wiki','August 24 Meeting With Evan',1,1166559829),('list','wiki','August 24 Meeting With Evan',1,1166559829),('prep','wiki','August 24 Meeting With Evan',1,1166559829),('jocely','wiki','August 24 Meeting With Evan',1,1166559829),('hotels','wiki','August 24 Meeting With Evan',1,1166559829),('discussed','wiki','August 24 Meeting With Evan',1,1166559829),('videos','wiki','August 24 Meeting With Evan',3,1166559829),('except','wiki','August 24 Meeting With Evan',1,1166559829),('everything','wiki','August 24 Meeting With Evan',1,1166559829),('removed','wiki','August 24 Meeting With Evan',1,1166559829),('(gis)','wiki','August 24 Meeting With Evan',1,1166559829),('janelle','wiki','August 24 Meeting With Evan',1,1166559829),('sales','wiki','August 24 Meeting With Evan',2,1166559829),('integrated','wiki','August 24 Meeting With Evan',1,1166559829),('global','wiki','August 24 Meeting With Evan',1,1166559829),('session','wiki','August 24 Meeting With Evan',1,1166559829),('auditorium','wiki','August 24 Meeting With Evan',1,1166559829),('produced','wiki','August 24 Meeting With Evan',2,1166559829),('event','wiki','August 24 Meeting With Evan',1,1166559829),('all-day','wiki','August 24 Meeting With Evan',1,1166559829),('smbs','wiki','August 24 Meeting With Evan',2,1166559829),('thursday','wiki','August 24 Meeting With Evan',1,1166559829),('support','wiki','August 24 Meeting With Evan',1,1166559829),('case','wiki','August 24 Meeting With Evan',1,1166559829),('now,','wiki','August 24 Meeting With Evan',2,1166559829),('clinics','wiki','August 24 Meeting With Evan',1,1166559829),('place','wiki','August 24 Meeting With Evan',1,1166559829),('skill','wiki','August 24 Meeting With Evan',1,1166559829),('leave','wiki','August 24 Meeting With Evan',1,1166559829),('shot','wiki','August 24 Meeting With Evan',1,1166559829),('needs','wiki','August 24 Meeting With Evan',1,1166559829),('tuesday,','wiki','August 24 Meeting With Evan',1,1166559829),('humanity','wiki','August 24 Meeting With Evan',1,1166559829),('habitat','wiki','August 24 Meeting With Evan',1,1166559829),('doing','wiki','August 24 Meeting With Evan',1,1166559829),('closing','wiki','August 24 Meeting With Evan',2,1166559829),('on-site','wiki','August 24 Meeting With Evan',1,1166559829),('wednesday','wiki','August 24 Meeting With Evan',1,1166559829),('etc.','wiki','August 24 Meeting With Evan',1,1166559829),('entertainment,','wiki','August 24 Meeting With Evan',1,1166559829),('designing','wiki','August 24 Meeting With Evan',1,1166559829),('mike','wiki','August 24 Meeting With Evan',1,1166559829),('still','wiki','August 24 Meeting With Evan',1,1166559829),('video','wiki','August 24 Meeting With Evan',4,1166559829),('only','wiki','August 24 Meeting With Evan',1,1166559829),('expo','wiki','August 24 Meeting With Evan',1,1166559829),('breakout','wiki','August 24 Meeting With Evan',1,1166559829),('tuesday','wiki','August 24 Meeting With Evan',1,1166559829),('alliance','wiki','August 24 Meeting With Evan',1,1166559829),('(250)','wiki','August 24 Meeting With Evan',2,1166559829),('devconnect','wiki','August 24 Meeting With Evan',1,1166559829),('meetings','wiki','August 24 Meeting With Evan',1,1166559829),('partners','wiki','August 24 Meeting With Evan',1,1166559829),('both','wiki','August 24 Meeting With Evan',1,1166559829),('times','wiki','August 24 Meeting With Evan',1,1166559829),('rehearsal','wiki','August 24 Meeting With Evan',1,1166559829),('monday','wiki','August 24 Meeting With Evan',1,1166559829),('producer','wiki','August 24 Meeting With Evan',1,1166559829),('matrix','wiki','August 24 Meeting With Evan',1,1166559829),('person','wiki','August 24 Meeting With Evan',1,1166559829),('field','wiki','August 24 Meeting With Evan',1,1166559829),('santagada','wiki','August 24 Meeting With Evan',1,1166559829),('table','wiki','August 24 Meeting With Evan',2,1166559829),('each','wiki','August 24 Meeting With Evan',2,1166559829),('covision','wiki','August 24 Meeting With Evan',1,1166559829),('power','wiki','August 24 Meeting With Evan',1,1166559829),('year','wiki','August 24 Meeting With Evan',4,1166559829),('used','wiki','August 24 Meeting With Evan',1,1166559829),('last','wiki','August 24 Meeting With Evan',1,1166559829),('system','wiki','August 24 Meeting With Evan',1,1166559829),('response','wiki','August 24 Meeting With Evan',1,1166559829),('audience','wiki','August 24 Meeting With Evan',1,1166559829),('include','wiki','August 24 Meeting With Evan',1,1166559829),('likely','wiki','August 24 Meeting With Evan',1,1166559829),('crescents','wiki','August 24 Meeting With Evan',1,1166559829),('seated','wiki','August 24 Meeting With Evan',1,1166559829),('away','wiki','August 24 Meeting With Evan',2,1166559829),('right','wiki','August 24 Meeting With Evan',2,1166559829),('time','wiki','August 24 Meeting With Evan',1,1166559829),('presentation','wiki','August 24 Meeting With Evan',1,1166559829),('preparing','wiki','August 24 Meeting With Evan',1,1166559829),('help','wiki','August 24 Meeting With Evan',1,1166559829),('some','wiki','August 24 Meeting With Evan',2,1166559829),('review','wiki','August 24 Meeting With Evan',2,1166559829),('charlie','wiki','August 24 Meeting With Evan',3,1166559829),('next','wiki','August 24 Meeting With Evan',2,1166559829),('week','wiki','August 24 Meeting With Evan',1,1166559829),('coordinate','wiki','August 24 Meeting With Evan',2,1166559829),('suzanne','wiki','August 24 Meeting With Evan',1,1166559829),('talk','wiki','August 24 Meeting With Evan',1,1166559829),('room','wiki','August 24 Meeting With Evan',1,1166559829),('gear','wiki','August 24 Meeting With Evan',1,1166559829),('already','wiki','August 24 Meeting With Evan',1,1166559829),('there','wiki','August 24 Meeting With Evan',1,1166559829),('thus','wiki','August 24 Meeting With Evan',1,1166559829),('thurs-sat?,','wiki','August 24 Meeting With Evan',1,1166559829),('which','wiki','August 24 Meeting With Evan',1,1166559829),('feeney\'s','wiki','August 24 Meeting With Evan',1,1166559829),('jack','wiki','August 24 Meeting With Evan',2,1166559829),('piggybacks','wiki','August 24 Meeting With Evan',1,1166559829),('meeting)','wiki','August 24 Meeting With Evan',1,1166559829),('(charlie\'s','wiki','August 24 Meeting With Evan',1,1166559829),('people','wiki','August 24 Meeting With Evan',1,1166559829),('group','wiki','August 24 Meeting With Evan',2,1166559829),('larger','wiki','August 24 Meeting With Evan',1,1166559829),('meeting','wiki','August 24 Meeting With Evan',7,1166559829),('leadership','wiki','August 24 Meeting With Evan',2,1166559829),('sunday','wiki','August 24 Meeting With Evan',1,1166559829),('architecture)','wiki','August 24 Meeting With Evan',1,1166559829),('oriented','wiki','August 24 Meeting With Evan',1,1166559829),('(services','wiki','August 24 Meeting With Evan',1,1166559829),('avaya)','wiki','August 24 Meeting With Evan',1,1166559829),('differentiator','wiki','August 24 Meeting With Evan',1,1166559829),('communications','wiki','August 24 Meeting With Evan',4,1166559829),('(intelligent','wiki','August 24 Meeting With Evan',2,1166559829),('processes','wiki','August 24 Meeting With Evan',1,1166559829),('business','wiki','August 24 Meeting With Evan',2,1166559829),('communication-enabled','wiki','August 24 Meeting With Evan',1,1166559829),('center)','wiki','August 24 Meeting With Evan',1,1166559829),('(contact','wiki','August 24 Meeting With Evan',1,1166559829),('service','wiki','August 24 Meeting With Evan',1,1166559829),('customer','wiki','August 24 Meeting With Evan',2,1166559829),('mobility','wiki','August 24 Meeting With Evan',1,1166559829),('infoworker','wiki','August 24 Meeting With Evan',1,1166559829),('sept','wiki','Steve Sept 15',1,1166460652),('operations','wiki','Operations',1,1166461000),('prompter','wiki','Lorne Sept18',1,1191878287),('plug','wiki','Global Integrated Services Creative Session',2,1191877829),('electrical','wiki','Global Integrated Services Creative Session',1,1191877829),('visuals','wiki','Global Integrated Services Creative Session',1,1191877829),('connect','wiki','Global Integrated Services Creative Session',1,1191877829),('plugged','wiki','Global Integrated Services Creative Session',2,1191877829),('moving','wiki','Global Integrated Services Creative Session',1,1191877829),('group','wiki','Global Integrated Services Creative Session',1,1191877829),('metaphors','wiki','Global Integrated Services Creative Session',1,1191877829),('future','wiki','Global Integrated Services Creative Session',1,1191877829),('bolt','wiki','Global Integrated Services Creative Session',1,1191877829),('lightning','wiki','Global Integrated Services Creative Session',1,1191877829),('ahead','wiki','Global Integrated Services Creative Session',1,1191877829),('charge','wiki','Global Integrated Services Creative Session',1,1191877829),('efficient','wiki','Global Integrated Services Creative Session',1,1191877829),('processes','wiki','Global Integrated Services Creative Session',1,1191877829),('making','wiki','Global Integrated Services Creative Session',1,1191877829),('industries','wiki','Global Integrated Services Creative Session',1,1191877829),('other','wiki','Global Integrated Services Creative Session',1,1191877829),('many','wiki','Global Integrated Services Creative Session',1,1191877829),('more','wiki','Global Integrated Services Creative Session',2,1191877829),('create','wiki','Global Integrated Services Creative Session',1,1191877829),('ideas','wiki','Global Integrated Services Creative Session',1,1191877829),('morphing','wiki','Global Integrated Services Creative Session',2,1191877829),('wireframes','wiki','Global Integrated Services Creative Session',1,1191877829),('money','wiki','Global Integrated Services Creative Session',1,1191877829),('bulbs','wiki','Global Integrated Services Creative Session',1,1191877829),('light','wiki','Global Integrated Services Creative Session',1,1191877829),('energize','wiki','Global Integrated Services Creative Session',2,1191877829),('command','wiki','Global Integrated Services Creative Session',1,1191877829),('control','wiki','Global Integrated Services Creative Session',1,1191877829),('generate','wiki','Global Integrated Services Creative Session',3,1191877829),('synonyms','wiki','Global Integrated Services Creative Session',1,1191877829),('power','wiki','Global Integrated Services Creative Session',1,1191877829),('profit','wiki','Global Integrated Services Creative Session',3,1191877829),('endurance','wiki','Global Integrated Services Creative Session',1,1191877829),('reenergize','wiki','Global Integrated Services Creative Session',1,1191877829),('recharge','wiki','Global Integrated Services Creative Session',1,1191877829),('accurate','wiki','Global Integrated Services Creative Session',1,1191877829),('precision','wiki','Global Integrated Services Creative Session',1,1191877829),('innovate','wiki','Global Integrated Services Creative Session',2,1191877829),('empower','wiki','Global Integrated Services Creative Session',1,1191877829),('achieve','wiki','Global Integrated Services Creative Session',1,1191877829),('action','wiki','Global Integrated Services Creative Session',1,1191877829),('pace','wiki','Global Integrated Services Creative Session',1,1191877829),('momentum','wiki','Global Integrated Services Creative Session',1,1191877829),('finesse','wiki','Global Integrated Services Creative Session',1,1191877829),('raise','wiki','Global Integrated Services Creative Session',1,1191877829),('energy','wiki','Global Integrated Services Creative Session',2,1191877829),('drive','wiki','Global Integrated Services Creative Session',1,1191877829),('must','wiki','Global Integrated Services Creative Session',1,1191877829),('solution','wiki','Global Integrated Services Creative Session',1,1191877829),('efficiencies','wiki','Global Integrated Services Creative Session',1,1191877829),('process','wiki','Global Integrated Services Creative Session',1,1191877829),('growth','wiki','Global Integrated Services Creative Session',1,1191877829),('organic','wiki','Global Integrated Services Creative Session',1,1191877829),('returns','wiki','Global Integrated Services Creative Session',1,1191877829),('profitable','wiki','Global Integrated Services Creative Session',1,1191877829),('leverage','wiki','Global Integrated Services Creative Session',1,1191877829),('they','wiki','Global Integrated Services Creative Session',1,1191877829),('innovation','wiki','Global Integrated Services Creative Session',2,1191877829),('driver','wiki','Global Integrated Services Creative Session',1,1191877829),('onsite','wiki','Global Integrated Services Creative Session',1,1191877829),('maybe','wiki','Global Integrated Services Creative Session',1,1191877829),('bytes?)','wiki','Global Integrated Services Creative Session',1,1191877829),('sound','wiki','Global Integrated Services Creative Session',1,1191877829),('exec','wiki','Global Integrated Services Creative Session',1,1191877829),('(with','wiki','Global Integrated Services Creative Session',1,1191877829),('video','wiki','Global Integrated Services Creative Session',2,1191877829),('opening','wiki','Global Integrated Services Creative Session',1,1191877829),('templates,','wiki','Global Integrated Services Creative Session',1,1191877829),('work','wiki','Global Integrated Services Creative Session',1,1191877829),('look','wiki','AOL Webcast',1,1165855044),('lighting/video/graphics','wiki','AOL Webcast',1,1165855044),('playing','wiki','AOL Webcast',1,1165855044),('house','wiki','AOL Webcast',1,1165855044),('cued','wiki','AOL Webcast',1,1165855044),('notes','wiki','AOL Webcast',1,1165855044),('speaker','wiki','AOL Webcast',1,1165855044),('standby','wiki','AOL Webcast',1,1165855044),('show','wiki','AOL Webcast',1,1165855044),('executed','wiki','AOL Webcast',1,1165855044),('flawlessly','wiki','AOL Webcast',1,1165855044),('cue-to-cue','wiki','AOL Webcast',1,1165855044),('distributed','wiki','AOL Webcast',1,1165855044),('flows','wiki','AOL Webcast',1,1165855044),('check','wiki','AOL Webcast',6,1165855044),('positioned','wiki','AOL Webcast',1,1165855044),('monitors','wiki','AOL Webcast',2,1165855044),('confidence','wiki','AOL Webcast',2,1165855044),('spiked','wiki','AOL Webcast',1,1165855044),('positions','wiki','AOL Webcast',1,1165855044),('stage','wiki','AOL Webcast',1,1165855044),('taped','wiki','AOL Webcast',1,1165855044),('runs','wiki','AOL Webcast',1,1165855044),('cable','wiki','AOL Webcast',1,1165855044),('stored','wiki','AOL Webcast',1,1165855044),('cases','wiki','AOL Webcast',1,1165855044),('road','wiki','AOL Webcast',1,1165855044),('rehearsal','wiki','AOL Webcast',1,1165855044),('tech','wiki','AOL Webcast',2,1165855044),('push','wiki','AOL Webcast',1,1165855044),('slide','wiki','AOL Webcast',1,1165855044),('tested','wiki','AOL Webcast',2,1165855044),('b/u)','wiki','AOL Webcast',1,1165855044),('(main','wiki','AOL Webcast',1,1165855044),('encoders','wiki','AOL Webcast',1,1165855044),('servers','wiki','AOL Webcast',1,1165855044),('aol/viva','wiki','AOL Webcast',1,1165855044),('uploaded','wiki','AOL Webcast',1,1165855044),('webcast','wiki','AOL Webcast',2,1165855044),('cameras','wiki','AOL Webcast',1,1165855044),('camera','wiki','AOL Webcast',1,1165855044),('room','wiki','AOL Webcast',1,1165855044),('checked','wiki','AOL Webcast',1,1165855044),('uplighting','wiki','AOL Webcast',1,1165855044),('curtain','wiki','AOL Webcast',1,1165855044),('focused','wiki','AOL Webcast',1,1165855044),('with','wiki','AOL Webcast',1,1165855044),('lekos','wiki','AOL Webcast',1,1165855044),('focus','wiki','AOL Webcast',1,1165855044),('ready','wiki','AOL Webcast',1,1165855044),('lighting','wiki','AOL Webcast',3,1165855044),('intercom','wiki','AOL Webcast',1,1165855044),('playback','wiki','AOL Webcast',1,1165855044),('video','wiki','AOL Webcast',4,1165855044),('(lav/hh)','wiki','AOL Webcast',1,1165855044),('assembled','wiki','AOL Webcast',4,1165855044),('experience','wiki','August 24 Meeting With Evan',1,1166559829),('voice','wiki','August 24 Meeting With Evan',1,1166559829),('convergence','wiki','August 24 Meeting With Evan',1,1166559829),('soft','wiki','August 24 Meeting With Evan',1,1166559829),('phones','wiki','August 24 Meeting With Evan',2,1166559829),('data','wiki','August 24 Meeting With Evan',1,1166559829),('communications)','wiki','August 24 Meeting With Evan',2,1166559829),('telephony','wiki','August 24 Meeting With Evan',1,1166559829),('(converged','wiki','August 24 Meeting With Evan',1,1166559829),('family','wiki','August 24 Meeting With Evan',2,1166559829),('product','wiki','August 24 Meeting With Evan',2,1166559829),('avaya','wiki','August 24 Meeting With Evan',4,1166559829),('elements','wiki','August 24 Meeting With Evan',2,1166559829),('four','wiki','August 24 Meeting With Evan',2,1166559829),('microsoft','wiki','August 24 Meeting With Evan',1,1166559829),('cisco','wiki','August 24 Meeting With Evan',2,1166559829),('theme','wiki','August 24 Meeting With Evan',1,1166559829),('industry','wiki','August 24 Meeting With Evan',1,1166559829),('communications,','wiki','August 24 Meeting With Evan',1,1166559829),('unified','wiki','August 24 Meeting With Evan',1,1166559829),('confirm','wiki','August 24 Meeting With Evan',1,1166559829),('will','wiki','August 24 Meeting With Evan',9,1166559829),('evan','wiki','August 24 Meeting With Evan',3,1166559829),('materials,','wiki','August 24 Meeting With Evan',1,1166559829),('marketing','wiki','August 24 Meeting With Evan',1,1166559829),('down','wiki','August 24 Meeting With Evan',1,1166559829),('running','wiki','August 24 Meeting With Evan',1,1166559829),('contact','wiki','August 24 Meeting With Evan',4,1166559829),('point','wiki','August 24 Meeting With Evan',1,1166559829),('great','wiki','August 24 Meeting With Evan',1,1166559829),('could','wiki','August 24 Meeting With Evan',1,1166559829),('merring','wiki','August 24 Meeting With Evan',1,1166559829),('lisa','wiki','August 24 Meeting With Evan',1,1166559829),('sessions','wiki','August 24 Meeting With Evan',1,1166559829),('smbs,','wiki','August 24 Meeting With Evan',1,1166559829),('need','wiki','Global Integrated Services Creative Session',1,1191877829),('we\'ll','wiki','Global Integrated Services Creative Session',1,1191877829),('on"','wiki','Global Integrated Services Creative Session',1,1191877829),('"game','wiki','Global Integrated Services Creative Session',1,1191877829),('it"','wiki','Global Integrated Services Creative Session',1,1191877829),('grow','wiki','Global Integrated Services Creative Session',1,1191877829),('"let\'s','wiki','Global Integrated Services Creative Session',1,1191877829),('year','wiki','Global Integrated Services Creative Session',1,1191877829),('last','wiki','Global Integrated Services Creative Session',1,1191877829),('system','wiki','AOL Webcast',10,1165855044),('audio','wiki','AOL Webcast',3,1165855044),('checklist','wiki','AOL Webcast',3,1165855044),('completion','wiki','AOL Webcast',1,1165855044),('load-in','wiki','AOL Webcast',1,1165855044),('image','wiki','AOL Webcast',1,1165855044),('(squards)','wiki','AOL Webcast',1,1165855044),('pieces','wiki','AOL Webcast',1,1165855044),('gobos','wiki','AOL Webcast',2,1165855044),('drape','wiki','AOL Webcast',1,1165855044),('theme','wiki','Global Integrated Services Creative Session',1,1191877829),('historical','wiki','Global Integrated Services Creative Session',1,1191877829),('been','wiki','Global Integrated Services Creative Session',1,1191877829),('action"','wiki','Global Integrated Services Creative Session',1,1191877829),('gis,','wiki','August 24 Meeting With Evan',1,1166559829),('budgets','wiki','August 24 Meeting With Evan',1,1166559829),('separate','wiki','August 24 Meeting With Evan',1,1166559829),('asap','wiki','August 24 Meeting With Evan',1,1166559829),('something','wiki','August 24 Meeting With Evan',1,1166559829),('schedule','wiki','August 24 Meeting With Evan',2,1166559829),('need','wiki','August 24 Meeting With Evan',14,1166559829),('lorne,','wiki','August 24 Meeting With Evan',1,1166559829),('with','wiki','August 24 Meeting With Evan',7,1166559829),('meet','wiki','August 24 Meeting With Evan',1,1166559829),('wants','wiki','August 24 Meeting With Evan',1,1166559829),('podium','wiki','AOL Webcast',1,1165855044),('confirmation','wiki','AOL Webcast',1,1165855044),('walk-out','wiki','AOL Webcast',1,1165855044),('play-ups','wiki','AOL Webcast',1,1165855044),('walk-in','wiki','AOL Webcast',2,1165855044),('playlist','wiki','AOL Webcast',1,1165855044),('music','wiki','AOL Webcast',2,1165855044),('presentation','wiki','AOL Webcast',1,1165855044),('powerpoint','wiki','AOL Webcast',1,1165855044),('approval','wiki','AOL Webcast',1,1165855044),('reception','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('“new-hireâ€','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('laptops','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('brought','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('avaya','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('table)','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('every','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('(facilitator','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('co-vision','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('imag','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('producer','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('needs','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('executive','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('sunday','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('america)','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('(north','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('organization)','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('accounts','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('(strategic','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('involved','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('should','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('producer,','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('there','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('where','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('breakouts','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('larger','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('room.','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('sacrifice','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('suffice','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('would','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('which','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('measure','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('will','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('roger','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('follow','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('room,','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('server','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('used','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('rooms','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('green','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('four','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('1,870','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('10/12','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('393-396','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('2pm-5pm','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('team','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('backdrop','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('photo','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('tables','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('highboys','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('layout','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('need','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('room','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('11-12','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('gerstner','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('with','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('greet','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('meet','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('following','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('immediately','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('8am-11am','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('closing','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('10/11','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('morning','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('293-296','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('conference','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('tech','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('10/10','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('auditorium','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('break','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('take','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('then','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('3:15pm','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('members','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('devconnect','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('alliance','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('subgroup)','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('(largest','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('partners','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('theater','wiki','August 16 Meeting to determine responsibilities',5,1170266665),('1,000','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('3:30pm','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('partner','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('timing,','wiki','August 24 Meeting With Evan',1,1166559829),('about','wiki','August 24 Meeting With Evan',3,1166559829),('concerned','wiki','August 24 Meeting With Evan',1,1166559829),('budget','wiki','AOL Webcast',1,1165855044),('client','wiki','AOL Webcast',1,1165855044),('steve','wiki','Steve Sept 15',1,1166460652),('schedule','wiki','Steve Sept 15',1,1166460652),('rehearsal','wiki','Steve Sept 15',1,1166460652),('security','wiki','Steve Sept 15',1,1166460652),('meals','wiki','Steve Sept 15',1,1166460652),('avaya','wiki','Steve Sept 15',1,1166460652),('editor','wiki','Steve Sept 15',1,1166460652),('need','wiki','Steve Sept 15',1,1166460652),('quote','wiki','Steve Sept 15',1,1166460652),('freeman','wiki','Steve Sept 15',1,1166460652),('quote)','wiki','Steve Sept 15',1,1166460652),('(need','wiki','Steve Sept 15',1,1166460652),('photographers','wiki','Steve Sept 15',1,1166460652),('polaroid','wiki','Steve Sept 15',1,1166460652),('dead)','wiki','Steve Sept 15',1,1166460652),('(currently','wiki','Steve Sept 15',1,1166460652),('sticks','wiki','Steve Sept 15',1,1166460652),('memory','wiki','Steve Sept 15',1,1166460652),('1,600','wiki','Steve Sept 15',1,1166460652),('proposal','wiki','Steve Sept 15',1,1166460652),('mack','wiki','Steve Sept 15',1,1166460652),('carl','wiki','Steve Sept 15',1,1166460652),('$10k','wiki','Steve Sept 15',1,1166460652),('lights','wiki','Steve Sept 15',1,1166460652),('expo','wiki','Steve Sept 15',1,1166460652),('miller','wiki','Steve Sept 15',1,1166460652),('business','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('breakout','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('sales','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('mandatory','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('cisco','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('session','wiki','August 16 Meeting to determine responsibilities',4,1170266665),('general','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('opening','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('10/9','wiki','August 16 Meeting to determine responsibilities',3,1170266665),('midnight','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('rounds','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('crescent','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('ballroom','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('grand','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('general','wiki','August 24 Meeting With Evan',2,1166559829),('jocelyn','wiki','August 24 Meeting With Evan',2,1166559829),('gaffer,','wiki','Lorne Sept18',1,1191878287),('audio,','wiki','Lorne Sept18',1,1191878287),('crew:','wiki','Lorne Sept18',1,1191878287),('plasmas','wiki','Lorne Sept18',1,1191878287),('graphics','wiki','Lorne Sept18',1,1191878287),('talent','wiki','Lorne Sept18',1,1191878287),('book','wiki','Lorne Sept18',3,1191878287),('studio','wiki','Lorne Sept18',2,1191878287),('live?','wiki','Lorne Sept18',1,1191878287),('judges','wiki','Lorne Sept18',1,1191878287),('find','wiki','Lorne Sept18',1,1191878287),('brown','wiki','Lorne Sept18',1,1191878287),('alton','wiki','Lorne Sept18',1,1191878287),('emeril','wiki','Lorne Sept18',1,1191878287),('post-production?','wiki','Lorne Sept18',1,1191878287),('props','wiki','Lorne Sept18',1,1191878287),('gear','wiki','Lorne Sept18',2,1191878287),('crew','wiki','Lorne Sept18',2,1191878287),('shoot','wiki','Lorne Sept18',6,1191878287),('producutcion','wiki','Lorne Sept18',1,1191878287),('script','wiki','Lorne Sept18',5,1191878287),('live','wiki','Lorne Sept18',1,1191878287),('chef','wiki','Lorne Sept18',1,1191878287),('iron','wiki','Lorne Sept18',1,1191878287),('avaya','wiki','Lorne Sept18',2,1191878287),('"script"','wiki','Lorne Sept18',1,1191878287),('kurt','wiki','Lorne Sept18',1,1191878287),('talk','wiki','Lorne Sept18',1,1191878287),('lyrics','wiki','Lorne Sept18',1,1191878287),('song','wiki','Lorne Sept18',1,1191878287),('video','wiki','Lorne Sept18',3,1191878287),('edit','wiki','Lorne Sept18',1,1191878287),('treatment','wiki','Lorne Sept18',2,1191878287),('video-','wiki','Lorne Sept18',1,1191878287),('choir','wiki','Lorne Sept18',1,1191878287),('opening','wiki','Lorne Sept18',1,1191878287),('flight','wiki','Lorne Sept18',1,1191878287),('finalize','wiki','Lorne Sept18',1,1191878287),('time?','wiki','Lorne Sept18',1,1191878287),('change','wiki','Lorne Sept18',1,1191878287),('reception','wiki','Lorne Sept18',1,1191878287),('arrangements','wiki','Lorne Sept18',2,1191878287),('make','wiki','Lorne Sept18',1,1191878287),('lori','wiki','Lorne Sept18',1,1191878287),('coordinate','wiki','Lorne Sept18',1,1191878287),('amenity','wiki','Lorne Sept18',1,1191878287),('balance','wiki','Lorne Sept18',1,1191878287),('send','wiki','Lorne Sept18',1,1191878287),('gerstner','wiki','Lorne Sept18',1,1191878287),('music','wiki','Lorne Sept18',1,1191878287),('lorne/emily/ben','wiki','Lorne Sept18',1,1191878287),('hillarie','wiki','Lorne Sept18',1,1191878287),('supplies','wiki','Lorne Sept18',1,1191878287),('office','wiki','Lorne Sept18',1,1191878287),('rich/mig','wiki','Lorne Sept18',1,1191878287),('plot','wiki','Lorne Sept18',1,1191878287),('lighting','wiki','Lorne Sept18',2,1191878287),('stage','wiki','Lorne Sept18',1,1191878287),('lorne/steve/rich','wiki','Lorne Sept18',2,1191878287),('elements','wiki','Lorne Sept18',2,1191878287),('drape','wiki','Lorne Sept18',1,1191878287),('fork','wiki','Lorne Sept18',1,1191878287),('lifts','wiki','Lorne Sept18',2,1191878287),('center','wiki','Lorne Sept18',1,1191878287),('convention','wiki','Lorne Sept18',1,1191878287),('gobos','wiki','Lorne Sept18',1,1191878287),('manfred/matthew','wiki','Lorne Sept18',1,1191878287),('animations','wiki','Lorne Sept18',1,1191878287),('graphic','wiki','Lorne Sept18',1,1191878287),('screen','wiki','Lorne Sept18',1,1191878287),('wide','wiki','Lorne Sept18',1,1191878287),('manfred/carlos','wiki','Lorne Sept18',1,1191878287),('etc.)','wiki','Lorne Sept18',1,1191878287),('camera','wiki','Lorne Sept18',1,1191878287),('backstage','wiki','Lorne Sept18',1,1191878287),('(stage/','wiki','Lorne Sept18',1,1191878287),('prodution','wiki','Lorne Sept18',1,1191878287),('session','wiki','Lorne Sept18',2,1191878287),('general','wiki','Lorne Sept18',2,1191878287),('rehearsal','wiki','Lorne Sept18',2,1191878287),('spealer','wiki','Lorne Sept18',1,1191878287),('flow','wiki','Lorne Sept18',2,1191878287),('tech','wiki','Lorne Sept18',2,1191878287),('(from','wiki','Lorne Sept 13',1,1166482384),('stick','wiki','Lorne Sept 13',1,1166482384),('screens','wiki','Lorne Sept 13',1,1166482384),('rope','wiki','Lorne Sept 13',1,1166482384),('delay','wiki','Lorne Sept 13',1,1166482384),('tons','wiki','Lorne Sept 13',2,1166482384),('motors:','wiki','Lorne Sept 13',1,1166482384),('rich','wiki','Lorne Sept 13',1,1166482384),('plot','wiki','Lorne Sept 13',2,1166482384),('motors','wiki','Lorne Sept 13',2,1166482384),('mixes','wiki','Lorne Sept 13',1,1166482384),('gear','wiki','Lorne Sept 13',1,1166482384),('mic\'s','wiki','Lorne Sept 13',1,1166482384),('done','wiki','Lorne Sept 13',1,1166482384),('meeting','wiki','Lorne Sept 13',1,1166482384),('tuesday\'s','wiki','Lorne Sept 13',1,1166482384),('meetings','wiki','Lorne Sept 13',1,1166482384),('cisco','wiki','Lorne Sept 13',1,1166482384),('switchers','wiki','Lorne Sept 13',1,1166482384),('sound','wiki','Lorne Sept 13',1,1166482384),('stagehands','wiki','Lorne Sept 13',1,1166482384),('hours)','wiki','Lorne Sept 13',1,1166482384),('loaders','wiki','Lorne Sept 13',1,1166482384),('truck','wiki','Lorne Sept 13',1,1166482384),('forklift','wiki','Lorne Sept 13',1,1166482384),('projectors)','wiki','Lorne Sept 13',1,1166482384),('call','wiki','Lorne Sept 13',1,1166482384),('scissor','wiki','Lorne Sept 13',1,1166482384),('fascia,','wiki','Lorne Sept 13',1,1166482384),('forklift)','wiki','Lorne Sept 13',1,1166482384),('(manlift','wiki','Lorne Sept 13',2,1166482384),('talk','wiki','Lorne Sept 13',1,1166482384),('venue','wiki','Lorne Sept 13',3,1166482384),('lift','wiki','Lorne Sept 13',3,1166482384),('fork','wiki','Lorne Sept 13',1,1166482384),('projectors','wiki','Lorne Sept 13',1,1166482384),('runoff','wiki','Lorne Sept 13',1,1166482384),('(sides,','wiki','Lorne Sept 13',1,1166482384),('tech,','wiki','Lorne Sept 13',1,1166482384),('provides)','wiki','Lorne Sept 13',1,1166482384),('figure','wiki','Lorne Sept 13',1,1166482384),('positions','wiki','Lorne Sept 13',1,1166482384),('camera','wiki','Lorne Sept 13',1,1166482384),('much','wiki','Lorne Sept 13',1,1166482384),('going','wiki','Lorne Sept 13',1,1166482384),('drape','wiki','Lorne Sept 13',2,1166482384),('bo\'s)','wiki','Lorne Sept 13',1,1166482384),('supply','wiki','Lorne Sept 13',3,1166482384),('(viva','wiki','Lorne Sept 13',2,1166482384),('b/os','wiki','Lorne Sept 13',1,1166482384),('laptop','wiki','Lorne Sept 13',1,1166482384),('reqs','wiki','Lorne Sept 13',1,1166482384),('cable','wiki','Lorne Sept 13',1,1166482384),('truss,','wiki','Lorne Sept 13',1,1166482384),('flown','wiki','Lorne Sept 13',1,1166482384),('projection,','wiki','Lorne Sept 13',1,1166482384),('monitor','wiki','Lorne Sept 13',1,1166482384),('confidence','wiki','Lorne Sept 13',2,1166482384),('11a)','wiki','Lorne Sept 13',1,1166482384),('projector?','wiki','Lorne Sept 13',1,1166482384),('cart','wiki','Lorne Sept 13',1,1166482384),('dropdown?','wiki','Lorne Sept 13',1,1166482384),('where','wiki','Lorne Sept 13',2,1166482384),('lenses)','wiki','Lorne Sept 13',1,1166482384),('placement,','wiki','Lorne Sept 13',1,1166482384),('wiring,','wiki','Lorne Sept 13',1,1166482384),('(confirm','wiki','Lorne Sept 13',1,1166482384),('projection','wiki','Lorne Sept 13',1,1166482384),('breakout','wiki','Lorne Sept 13',1,1166482384),('usb)','wiki','Lorne Sept 13',1,1166482384),('firewire','wiki','Lorne Sept 13',1,1166482384),('(get','wiki','Lorne Sept 13',1,1166482384),('format','wiki','Lorne Sept 13',1,1166482384),('lacie','wiki','Lorne Sept 13',1,1166482384),('ddr)','wiki','Lorne Sept 13',1,1166482384),('(need','wiki','Lorne Sept 13',1,1166482384),('this','wiki','Lorne Sept 13',1,1166482384),('transfer','wiki','Lorne Sept 13',1,1166482384),('videos','wiki','Lorne Sept 13',1,1166482384),('drive','wiki','Lorne Sept 13',1,1166482384),('pc-based','wiki','Lorne Sept 13',1,1166482384),('choir','wiki','Lorne Sept 13',1,1166482384),('holding','wiki','Lorne Sept 13',1,1166482384),('have?','wiki','Lorne Sept 13',1,1166482384),('convention','wiki','Lorne Sept 13',1,1166482384),('these)','wiki','Lorne Sept 13',1,1166482384),('video','wiki','Lorne Sept 13',3,1166482384),('stage','wiki','Lorne Sept 13',1,1166482384),('back','wiki','Lorne Sept 13',1,1166482384),('taperesources','wiki','Lorne Sept 13',1,1166482384),('from','wiki','Lorne Sept 13',3,1166482384),('order','wiki','Lorne Sept 13',2,1166482384),('tape,','wiki','Lorne Sept 13',1,1166482384),('spec','wiki','Lorne Sept 13',1,1166482384),('manfred','wiki','Lorne Sept 13',1,1166482384),('with','wiki','Lorne Sept 13',4,1166482384),('work','wiki','Lorne Sept 13',3,1166482384),('get)','wiki','Lorne Sept 13',1,1166482384),('ones','wiki','Lorne Sept 13',1,1166482384),('best','wiki','Lorne Sept 13',1,1166482384),('(chris','wiki','Lorne Sept 13',1,1166482384),('provides','wiki','Lorne Sept 13',1,1166482384),('viva','wiki','Lorne Sept 13',2,1166482384),('stock','wiki','Lorne Sept 13',1,1166482384),('dvd-r','wiki','Lorne Sept 13',1,1166482384),('rent','wiki','Lorne Sept 13',2,1166482384),('record','wiki','Lorne Sept 13',1,1166482384),('(dsr','wiki','Lorne Sept 13',1,1166482384),('decks','wiki','Lorne Sept 13',2,1166482384),('dvcam','wiki','Lorne Sept 13',1,1166482384),('company?','wiki','Lorne Sept 13',1,1166482384),('rich/ben','wiki','Lorne Sept18',2,1191878287),('leadership','wiki','AVAYA Sales Conference',1,1170266811),('session','wiki','AVAYA Sales Conference',2,1170266811),('creative','wiki','AVAYA Sales Conference',1,1170266811),('services','wiki','AVAYA Sales Conference',1,1170266811),('integrated','wiki','AVAYA Sales Conference',1,1170266811),('global','wiki','AVAYA Sales Conference',1,1170266811),('conference','wiki','AVAYA Sales Conference',2,1170266811),('phone','wiki','AVAYA Sales Conference',1,1170266811),('september','wiki','AVAYA Sales Conference',1,1170266811),('evan','wiki','AVAYA Sales Conference',1,1170266811),('equipment','wiki','Lorne Sept18',2,1191878287),('computers','wiki','Lorne Sept18',2,1191878287),('viva','wiki','Lorne Sept18',2,1191878287),('steve/rich','wiki','Lorne Sept18',1,1191878287),('kerwyn','wiki','Lorne Sept18',1,1191878287),('steve/lorne','wiki','Lorne Sept18',1,1191878287),('gobos/signs/etc','wiki','Lorne Sept18',1,1191878287),('elements:','wiki','Lorne Sept18',1,1191878287),('steve/ben','wiki','Lorne Sept18',1,1191878287),('meal','wiki','Lorne Sept18',2,1191878287),('feeney','wiki','Lorne Sept18',1,1191878287),('lori/jack','wiki','Lorne Sept18',1,1191878287),('with','wiki','Lorne Sept18',2,1191878287),('details','wiki','Lorne Sept18',2,1191878287),('kivinski','wiki','Lorne Sept18',1,1191878287),('steve/rich/lorne','wiki','Lorne Sept18',1,1191878287),('confirm','wiki','Lorne Sept18',2,1191878287),('truck','wiki','Lorne Sept18',2,1191878287),('seating','wiki','Lorne Sept18',2,1191878287),('from','wiki','AOL Webcast',1,1165855044),('required','wiki','AOL Webcast',1,1165855044),('confirm','wiki','Steve Sept 15',1,1166460652),('orleans','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('sheraton','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('staging','wiki','Lorne Sept18',1,1191878287),('power','wiki','Lorne Sept18',2,1191878287),('requests','wiki','Lorne Sept18',2,1191878287),('hotel','wiki','Lorne Sept18',1,1191878287),('security','wiki','Lorne Sept18',2,1191878287),('ben/hillarie','wiki','Lorne Sept18',5,1191878287),('list','wiki','Lorne Sept18',4,1191878287),('contact','wiki','Lorne Sept18',2,1191878287),('local','wiki','Lorne Sept 13',1,1166482384),('rental?','wiki','Lorne Sept 13',1,1166482384),('have)','wiki','Lorne Sept 13',1,1166482384),('does','wiki','Lorne Sept 13',2,1166482384),('(mig','wiki','Lorne Sept 13',1,1166482384),('monitors','wiki','Lorne Sept 13',2,1166482384),('89.6\')','wiki','Lorne Sept 13',1,1166482384),('23.5\'','wiki','Lorne Sept 13',1,1166482384),('(physical','wiki','Lorne Sept 13',1,1166482384),('surround','wiki','Lorne Sept 13',1,1166482384),('20"','wiki','Lorne Sept 13',1,1166482384),('points','wiki','Lorne Sept 13',1,1166482384),('hang','wiki','Lorne Sept 13',1,1166482384),('create','wiki','Lorne Sept 13',4,1166482384),('confirm','wiki','Lorne Sept 13',4,1166482384),('(5x3)','wiki','Lorne Sept 13',1,1166482384),('tall','wiki','Lorne Sept 13',2,1166482384),('11"','wiki','Lorne Sept 13',1,1166482384),('30"wide','wiki','Lorne Sept 13',1,1166482384),('chris','wiki','Lorne Sept 13',1,1166482384),('&','wiki','Lorne Sept 13',3,1166482384),('layout','wiki','Lorne Sept 13',1,1166482384),('room','wiki','Lorne Sept 13',2,1166482384),('send','wiki','Lorne Sept 13',1,1166482384),('projects','wiki','Projects',1,1165606638),('completed','wiki','Projects',1,1165606638),('active','wiki','Projects',1,1165606638),('steve','wiki','Lorne Sept18',5,1191878287),('schedule','wiki','Lorne Sept18',17,1191878287),('proudciton','wiki','Lorne Sept18',1,1191878287),('rich','wiki','Lorne Sept18',4,1191878287),('layout','wiki','Lorne Sept18',2,1191878287),('room','wiki','Lorne Sept18',4,1191878287),('production','wiki','Lorne Sept18',9,1191878287),('sunday','wiki','Lorne Sept18',1,1191878287),('with','wiki','AVAYA Sales Conference',1,1170266811),('responsibilities','wiki','AVAYA Sales Conference',1,1170266811),('determine','wiki','AVAYA Sales Conference',1,1170266811),('"call','wiki','Global Integrated Services Creative Session',1,1191877829),('session','wiki','Global Integrated Services Creative Session',2,1191877829),('creative','wiki','Global Integrated Services Creative Session',3,1191877829),('meeting','wiki','August 16 Meeting to determine responsibilities',7,1170266665),('management','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('wiki','wiki','HomePage',1,1191877960),('possible','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('list','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('itemized','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('determine','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('activities','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('team-building','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('alternate','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('think','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('other','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('positive','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('combines','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('also','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('centers','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('around','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('proposal','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('creative','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('revised','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('create','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('items:','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('action','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('demographic','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('captures','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('narrow','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('sports','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('presentations/videos','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('into','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('tool','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('good','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('tele-strator','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('just','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('opposed','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('high','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('level,','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('operating','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('bowl','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('emphasizes','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('super','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('nicely','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('tie-in','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('"peak','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('connects','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('valid','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('outdated/not','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('lastâ€','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('“built','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('name;','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('rethink','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('readily','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('sub-themes','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('work','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('together','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('building','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('business','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('different','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('metaphorically','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('tied','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('whimsical','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('interesting;','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('serious','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('performers','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('new/interesting','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('rhythmic','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('connecting','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('emotionally','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('kudos','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('mucho','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('opening','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('sequence','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('last"','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('"built','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('played','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('been','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('bristol;','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('related','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('closely','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('racing','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('theme','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('cons:','wiki','Proposal Phone Conference 4 Dec 06',3,1166040858),('culture','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('based','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('performance','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('driving','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('youâ€','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('highlights','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('with','wiki','Proposal Phone Conference 4 Dec 06',3,1166040858),('starts','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('message;','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('“it','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('actionable','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('concept','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('team','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('promotes','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('pros:','wiki','Proposal Phone Conference 4 Dec 06',3,1166040858),('performance"','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('"driving','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('demographics','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('varied','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('appeal','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('entertainment','wiki','Lorne Sept 18',1,1165618484),('qoute','wiki','Lorne Sept 18',1,1165618484),('expo','wiki','Lorne Sept 18',1,1165618484),('plan','wiki','Lorne Sept 18',2,1165618484),('shooting','wiki','Lorne Sept 18',1,1165618484),('partners','wiki','Lorne Sept 18',3,1165618484),('business','wiki','Lorne Sept 18',1,1165618484),('stock','wiki','Lorne Sept 18',1,1165618484),('&','wiki','Lorne Sept 18',1,1165618484),('on-site','wiki','Lorne Sept 18',1,1165618484),('closing','wiki','Lorne Sept 18',1,1165618484),('editing','wiki','Lorne Sept 18',2,1165618484),('cisco','wiki','Lorne Sept 18',1,1165618484),('beat','wiki','Lorne Sept 18',1,1165618484),('healthcare','wiki','Lorne Sept 18',1,1165618484),('intermountain?','wiki','Lorne Sept 18',1,1165618484),('approved)','wiki','Lorne Sept 18',1,1165618484),('rights','wiki','Lorne Sept 18',1,1165618484),('(once','wiki','Lorne Sept 18',1,1165618484),('evan','wiki','Lorne Sept 18',1,1165618484),('modify','wiki','Lorne Sept 18',1,1165618484),('from','wiki','Lorne Sept 18',1,1165618484),('approval','wiki','Lorne Sept 18',1,1165618484),('whirlpool','wiki','Lorne Sept 18',1,1165618484),('crew?','wiki','Lorne Sept 18',1,1165618484),('thursday?','wiki','Lorne Sept 18',1,1165618484),('allstate','wiki','Lorne Sept 18',1,1165618484),('videos','wiki','Lorne Sept 18',2,1165618484),('customer','wiki','Lorne Sept 18',1,1165618484),('drives','wiki','Lorne Sept 18',2,1165618484),('hard','wiki','Lorne Sept 18',2,1165618484),('stock,','wiki','Lorne Sept 18',1,1165618484),('tape','wiki','Lorne Sept 18',2,1165618484),('prompter','wiki','Lorne Sept 18',1,1165618484),('audio,','wiki','Lorne Sept 18',1,1165618484),('gaffer,','wiki','Lorne Sept 18',1,1165618484),('crew:','wiki','Lorne Sept 18',1,1165618484),('plasmas','wiki','Lorne Sept 18',1,1165618484),('graphics','wiki','Lorne Sept 18',1,1165618484),('talent','wiki','Lorne Sept 18',1,1165618484),('studio','wiki','Lorne Sept 18',2,1165618484),('book','wiki','Lorne Sept 18',3,1165618484),('judges','wiki','Lorne Sept 18',1,1165618484),('live?','wiki','Lorne Sept 18',1,1165618484),('find','wiki','Lorne Sept 18',1,1165618484),('brown','wiki','Lorne Sept 18',1,1165618484),('emeril','wiki','Lorne Sept 18',1,1165618484),('alton','wiki','Lorne Sept 18',1,1165618484),('post-production?','wiki','Lorne Sept 18',1,1165618484),('props','wiki','Lorne Sept 18',1,1165618484),('crew','wiki','Lorne Sept 18',2,1165618484),('gear','wiki','Lorne Sept 18',2,1165618484),('producutcion','wiki','Lorne Sept 18',1,1165618484),('shoot','wiki','Lorne Sept 18',6,1165618484),('live','wiki','Lorne Sept 18',1,1165618484),('script','wiki','Lorne Sept 18',5,1165618484),('chef','wiki','Lorne Sept 18',1,1165618484),('iron','wiki','Lorne Sept 18',1,1165618484),('avaya','wiki','Lorne Sept 18',2,1165618484),('"script"','wiki','Lorne Sept 18',1,1165618484),('kurt','wiki','Lorne Sept 18',1,1165618484),('talk','wiki','Lorne Sept 18',1,1165618484),('lyrics','wiki','Lorne Sept 18',1,1165618484),('song','wiki','Lorne Sept 18',1,1165618484),('video','wiki','Lorne Sept 18',3,1165618484),('edit','wiki','Lorne Sept 18',1,1165618484),('treatment','wiki','Lorne Sept 18',2,1165618484),('video-','wiki','Lorne Sept 18',1,1165618484),('choir','wiki','Lorne Sept 18',1,1165618484),('opening','wiki','Lorne Sept 18',1,1165618484),('flight','wiki','Lorne Sept 18',1,1165618484),('finalize','wiki','Lorne Sept 18',1,1165618484),('time?','wiki','Lorne Sept 18',1,1165618484),('change','wiki','Lorne Sept 18',1,1165618484),('arrangements','wiki','Lorne Sept 18',2,1165618484),('reception','wiki','Lorne Sept 18',1,1165618484),('make','wiki','Lorne Sept 18',1,1165618484),('lori','wiki','Lorne Sept 18',1,1165618484),('coordinate','wiki','Lorne Sept 18',1,1165618484),('amenity','wiki','Lorne Sept 18',1,1165618484),('balance','wiki','Lorne Sept 18',1,1165618484),('send','wiki','Lorne Sept 18',1,1165618484),('gerstner','wiki','Lorne Sept 18',1,1165618484),('music','wiki','Lorne Sept 18',1,1165618484),('lorne/emily/ben','wiki','Lorne Sept 18',1,1165618484),('hillarie','wiki','Lorne Sept 18',1,1165618484),('supplies','wiki','Lorne Sept 18',1,1165618484),('rich/mig','wiki','Lorne Sept 18',1,1165618484),('office','wiki','Lorne Sept 18',1,1165618484),('lighting','wiki','Lorne Sept 18',2,1165618484),('plot','wiki','Lorne Sept 18',1,1165618484),('stage','wiki','Lorne Sept 18',1,1165618484),('lorne/steve/rich','wiki','Lorne Sept 18',2,1165618484),('elements','wiki','Lorne Sept 18',2,1165618484),('fork','wiki','Lorne Sept 18',1,1165618484),('drape','wiki','Lorne Sept 18',1,1165618484),('lifts','wiki','Lorne Sept 18',2,1165618484),('center','wiki','Lorne Sept 18',1,1165618484),('convention','wiki','Lorne Sept 18',1,1165618484),('gobos','wiki','Lorne Sept 18',1,1165618484),('manfred/matthew','wiki','Lorne Sept 18',1,1165618484),('animations','wiki','Lorne Sept 18',1,1165618484),('graphic','wiki','Lorne Sept 18',1,1165618484),('screen','wiki','Lorne Sept 18',1,1165618484),('wide','wiki','Lorne Sept 18',1,1165618484),('manfred/carlos','wiki','Lorne Sept 18',1,1165618484),('etc.)','wiki','Lorne Sept 18',1,1165618484),('camera','wiki','Lorne Sept 18',1,1165618484),('backstage','wiki','Lorne Sept 18',1,1165618484),('(stage/','wiki','Lorne Sept 18',1,1165618484),('prodution','wiki','Lorne Sept 18',1,1165618484),('session','wiki','Lorne Sept 18',2,1165618484),('general','wiki','Lorne Sept 18',2,1165618484),('rehearsal','wiki','Lorne Sept 18',2,1165618484),('spealer','wiki','Lorne Sept 18',1,1165618484),('etc)','wiki','Lorne Sept 13',1,1166482384),('band?','wiki','Lorne Sept 13',2,1166482384),('rigging','wiki','Lorne Sept 13',1,1166482384),('(speakers','wiki','Lorne Sept 13',1,1166482384),('schematic)','wiki','Lorne Sept 13',1,1166482384),('(wiring','wiki','Lorne Sept 13',1,1166482384),('rigs','wiki','Lorne Sept 13',1,1166482384),('discreet','wiki','Lorne Sept 13',1,1166482384),('measurements','wiki','Lorne Sept 13',1,1166482384),('provide','wiki','Lorne Sept 13',2,1166482384),('need','wiki','Lorne Sept 13',7,1166482384),('cabling','wiki','Lorne Sept 13',1,1166482384),('leadership','wiki','Lorne Sept18',1,1191878287),('august','wiki','AVAYA Sales Conference',2,1170266811),('notes','wiki','AVAYA Sales Conference',1,1170266811),('meeting','wiki','AVAYA Sales Conference',4,1170266811),('conference','wiki','King Pharmaceuticals Leadership 24 Jan 07',2,1165617872),('preliminary','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('phone','wiki','King Pharmaceuticals Leadership 24 Jan 07',2,1165617872),('production','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('proposal','wiki','King Pharmaceuticals Leadership 24 Jan 07',3,1165617872),('completed','wiki','Completed',1,1166560506),('conference','wiki','Completed',1,1166560506),('sales','wiki','Completed',1,1166560506),('avaya','wiki','Completed',1,1166560506),('general','wiki','General Session',1,1170266617),('list','wiki','General Session',1,1170266617),('task','wiki','General Session',1,1170266617),('lists','wiki','Task Lists',1,1191871640),('task','wiki','Task Lists',1,1191871640),('steve','wiki','Task Lists',2,1191871640),('sept','wiki','Task Lists',5,1191871640),('lorne','wiki','Task Lists',3,1191871640),('feeney','wiki','Leadership Meeting',1,1166482408),('jack','wiki','Leadership Meeting',1,1166482408),('intial','wiki','Leadership Meeting',1,1166482408),('thanks,','wiki','Leadership Meeting',1,1166482408),('information?','wiki','Leadership Meeting',1,1166482408),('week.','wiki','Leadership Meeting',1,1166482408),('next','wiki','Leadership Meeting',1,1166482408),('prior','wiki','Leadership Meeting',1,1166482408),('answered','wiki','Leadership Meeting',1,1166482408),('questions','wiki','Leadership Meeting',1,1166482408),('some','wiki','Leadership Meeting',2,1166482408),('also,','wiki','Leadership Meeting',1,1166482408),('alex','wiki','Leadership Meeting',1,1166482408),('contacts.','wiki','Leadership Meeting',1,1166482408),('share','wiki','Leadership Meeting',1,1166482408),('electronically','wiki','Leadership Meeting',1,1166482408),('requirements?','wiki','Leadership Meeting',1,1166482408),('regards','wiki','Leadership Meeting',1,1166482408),('"resend"','wiki','Leadership Meeting',1,1166482408),('please','wiki','Leadership Meeting',1,1166482408),('josh.','wiki','Leadership Meeting',1,1166482408),('thanks','wiki','Leadership Meeting',1,1166482408),('wrote:','wiki','Leadership Meeting',1,1166482408),('6:36','wiki','Leadership Meeting',1,1166482408),('melissa?','wiki','Leadership Meeting',1,1166482408),('2006,','wiki','Leadership Meeting',1,1166482408),('--jk','wiki','Leadership Meeting',1,1166482408),('requirements.','wiki','Leadership Meeting',1,1166482408),('off,','wiki','Leadership Meeting',1,1166482408),('turned','wiki','Leadership Meeting',1,1166482408),('wireless','wiki','Leadership Meeting',1,1166482408),('drops','wiki','Leadership Meeting',1,1166482408),('than','wiki','Leadership Meeting',1,1166482408),('power','wiki','Leadership Meeting',1,1166482408),('tests.','wiki','Leadership Meeting',1,1166482408),('figure','wiki','Leadership Meeting',1,1166482408),('start','wiki','Leadership Meeting',1,1166482408),('best','wiki','Leadership Meeting',1,1166482408),('shot','wiki','Leadership Meeting',1,1166482408),('think','wiki','Leadership Meeting',1,1166482408),('then.','wiki','Leadership Meeting',1,1166482408),('come','wiki','Leadership Meeting',1,1166482408),('expect','wiki','Leadership Meeting',1,1166482408),('sure','wiki','Leadership Meeting',1,1166482408),('realistic','wiki','Leadership Meeting',1,1166482408),('8:00,','wiki','Leadership Meeting',1,1166482408),('7:30','wiki','Leadership Meeting',1,1166482408),('evening,','wiki','Leadership Meeting',1,1166482408),('saturday','wiki','Leadership Meeting',2,1166482408),('separated','wiki','Leadership Meeting',1,1166482408),('airwall?','wiki','Leadership Meeting',1,1166482408),('meeting','wiki','Leadership Meeting',3,1166482408),('part','wiki','Leadership Meeting',1,1166482408),('them','wiki','Leadership Meeting',3,1166482408),('schedule','wiki','Leadership Meeting',2,1166482408),('prefer','wiki','Leadership Meeting',1,1166482408),('network.','wiki','Leadership Meeting',1,1166482408),('test','wiki','Leadership Meeting',1,1166482408),('connected','wiki','Leadership Meeting',1,1166482408),('laptops','wiki','Leadership Meeting',1,1166482408),('their','wiki','Leadership Meeting',1,1166482408),('comes','wiki','Leadership Meeting',1,1166482408),('participants','wiki','Leadership Meeting',1,1166482408),('when','wiki','Leadership Meeting',1,1166482408),('really','wiki','Leadership Meeting',1,1166482408),('question','wiki','Leadership Meeting',1,1166482408),('complete.','wiki','Leadership Meeting',1,1166482408),('network/server','wiki','Leadership Meeting',1,1166482408),('points','wiki','Leadership Meeting',1,1166482408),('remaining','wiki','Leadership Meeting',1,1166482408),('6:00,','wiki','Leadership Meeting',1,1166482408),('after','wiki','Leadership Meeting',2,1166482408),('table.','wiki','Leadership Meeting',1,1166482408),('point','wiki','Leadership Meeting',2,1166482408),('possible?','wiki','Leadership Meeting',1,1166482408),('time,','wiki','Leadership Meeting',1,1166482408),('using','wiki','Leadership Meeting',1,1166482408),('whole','wiki','Leadership Meeting',1,1166482408),('they','wiki','Leadership Meeting',3,1166482408),('correctly,','wiki','Leadership Meeting',1,1166482408),('understand','wiki','Leadership Meeting',1,1166482408),('timeslot.','wiki','Leadership Meeting',1,1166482408),('3:00','wiki','Leadership Meeting',1,1166482408),('available','wiki','Leadership Meeting',1,1166482408),('above,','wiki','Leadership Meeting',1,1166482408),('described','wiki','Leadership Meeting',1,1166482408),('power,','wiki','Leadership Meeting',1,1166482408),('server','wiki','Leadership Meeting',4,1166482408),('points.','wiki','Leadership Meeting',1,1166482408),('access','wiki','Leadership Meeting',4,1166482408),('wirless','wiki','Leadership Meeting',1,1166482408),('where','wiki','Leadership Meeting',2,1166482408),('places,','wiki','Leadership Meeting',1,1166482408),('different','wiki','Leadership Meeting',1,1166482408),('three','wiki','Leadership Meeting',1,1166482408),('into','wiki','Leadership Meeting',1,1166482408),('cables','wiki','Leadership Meeting',1,1166482408),('switch','wiki','Leadership Meeting',1,1166482408),('from','wiki','Leadership Meeting',1,1166482408),('switch.','wiki','Leadership Meeting',1,1166482408),('ethernet','wiki','Leadership Meeting',3,1166482408),('laptop','wiki','Leadership Meeting',2,1166482408),('room.','wiki','Leadership Meeting',1,1166482408),('side','wiki','Leadership Meeting',1,1166482408),('back','wiki','Leadership Meeting',1,1166482408),('table,','wiki','Leadership Meeting',1,1166482408),('30"','wiki','Leadership Meeting',1,1166482408),('entails','wiki','Leadership Meeting',1,1166482408),('fine.','wiki','Leadership Meeting',1,1166482408),('this','wiki','Leadership Meeting',3,1166482408),('afternoon','wiki','Leadership Meeting',3,1166482408),('before,','wiki','Leadership Meeting',2,1166482408),('sometime','wiki','Leadership Meeting',1,1166482408),('would','wiki','Leadership Meeting',5,1166482408),('ideally,','wiki','Leadership Meeting',1,1166482408),('deb:','wiki','Leadership Meeting',1,1166482408),('sent','wiki','Leadership Meeting',2,1166482408),('here\'s','wiki','Leadership Meeting',1,1166482408),('&','wiki','Leadership Meeting',1,1166482408),('york).','wiki','Leadership Meeting',1,1166482408),('(ohio','wiki','Leadership Meeting',1,1166482408),('tomorrow','wiki','Leadership Meeting',1,1166482408),('weeks','wiki','Leadership Meeting',1,1166482408),('starting','wiki','Leadership Meeting',2,1166482408),('east','wiki','Leadership Meeting',1,1166482408),('though,','wiki','Leadership Meeting',1,1166482408),('will,','wiki','Leadership Meeting',1,1166482408),('emergency.','wiki','Leadership Meeting',1,1166482408),('unless','wiki','Leadership Meeting',1,1166482408),('there','wiki','Leadership Meeting',2,1166482408),('eastern','wiki','Leadership Meeting',1,1166482408),('11am','wiki','Leadership Meeting',1,1166482408),('before','wiki','Leadership Meeting',3,1166482408),('people','wiki','Leadership Meeting',1,1166482408),('that','wiki','Leadership Meeting',6,1166482408),('coast','wiki','Leadership Meeting',2,1166482408),('531-5937.','wiki','Leadership Meeting',1,1166482408),('west','wiki','Leadership Meeting',1,1166482408),('(415)','wiki','Leadership Meeting',1,1166482408),('cell','wiki','Leadership Meeting',2,1166482408),('phone','wiki','Leadership Meeting',1,1166482408),('process','wiki','Leadership Meeting',1,1166482408),('covision?','wiki','Leadership Meeting',1,1166482408),('requirements','wiki','Leadership Meeting',1,1166482408),('technical','wiki','Leadership Meeting',2,1166482408),('meeting:','wiki','Leadership Meeting',1,1166482408),('managers','wiki','Leadership Meeting',1,1166482408),('gs&m','wiki','Leadership Meeting',1,1166482408),('subject:','wiki','Leadership Meeting',1,1166482408),('smackey@getviva.com','wiki','Leadership Meeting',1,1166482408),('(john);','wiki','Leadership Meeting',1,1166482408),('tuck,','wiki','Leadership Meeting',1,1166482408),('(alex);','wiki','Leadership Meeting',1,1166482408),('kiang','wiki','Leadership Meeting',1,1166482408),('pang,','wiki','Leadership Meeting',1,1166482408),('(melissa)','wiki','Leadership Meeting',1,1166482408),('melissa','wiki','Leadership Meeting',3,1166482408),('d\'anton,','wiki','Leadership Meeting',2,1166482408),('10:32','wiki','Leadership Meeting',1,1166482408),('2006','wiki','Leadership Meeting',1,1166482408),('september','wiki','Leadership Meeting',1,1166482408),('wednesday,','wiki','Leadership Meeting',1,1166482408),('sent:','wiki','Leadership Meeting',1,1166482408),('mailto:joshk@covision.com','wiki','Leadership Meeting',1,1166482408),('kaufman','wiki','Leadership Meeting',1,1166482408),('josh','wiki','Leadership Meeting',1,1166482408),('from:','wiki','Leadership Meeting',1,1166482408),('--------------------------------------------------------------------------------','wiki','Leadership Meeting',1,1166482408),('tuck','wiki','Leadership Meeting',1,1166482408),('regards,','wiki','Leadership Meeting',1,1166482408),('john','wiki','Leadership Meeting',3,1166482408),('you.','wiki','Leadership Meeting',1,1166482408),('thank','wiki','Leadership Meeting',1,1166482408),('internet.','wiki','Leadership Meeting',1,1166482408),('addresses','wiki','Leadership Meeting',1,1166482408),('drops/ip','wiki','Leadership Meeting',1,1166482408),('immediately','wiki','Leadership Meeting',1,1166482408),('know','wiki','Leadership Meeting',1,1166482408),('connectivity,','wiki','Leadership Meeting',1,1166482408),('year.','wiki','Leadership Meeting',2,1166482408),('last','wiki','Leadership Meeting',2,1166482408),('setup','wiki','Leadership Meeting',6,1166482408),('self','wiki','Leadership Meeting',1,1166482408),('contained','wiki','Leadership Meeting',1,1166482408),('have','wiki','Leadership Meeting',5,1166482408),('like','wiki','Leadership Meeting',2,1166482408),('sounds','wiki','Leadership Meeting',1,1166482408),('not,','wiki','Leadership Meeting',2,1166482408),('then','wiki','Leadership Meeting',2,1166482408),('access?','wiki','Leadership Meeting',1,1166482408),('servers','wiki','Leadership Meeting',3,1166482408),('internet','wiki','Leadership Meeting',2,1166482408),('your','wiki','Leadership Meeting',3,1166482408),('will','wiki','Leadership Meeting',9,1166482408),('thread','wiki','Leadership Meeting',1,1166482408),('care','wiki','Leadership Meeting',1,1166482408),('email','wiki','Leadership Meeting',3,1166482408),('taken','wiki','Leadership Meeting',1,1166482408),('(from','wiki','Production Task List',1,1166041367),('stick','wiki','Production Task List',1,1166041367),('screens','wiki','Production Task List',1,1166041367),('rope','wiki','Production Task List',1,1166041367),('delay','wiki','Production Task List',1,1166041367),('motors:','wiki','Production Task List',1,1166041367),('tons','wiki','Production Task List',2,1166041367),('plot','wiki','Production Task List',2,1166041367),('rich','wiki','Production Task List',1,1166041367),('motors','wiki','Production Task List',2,1166041367),('mixes','wiki','Production Task List',1,1166041367),('mic\'s','wiki','Production Task List',1,1166041367),('gear','wiki','Production Task List',1,1166041367),('done','wiki','Production Task List',1,1166041367),('meeting','wiki','Production Task List',1,1166041367),('tuesday\'s','wiki','Production Task List',1,1166041367),('cisco','wiki','Production Task List',1,1166041367),('meetings','wiki','Production Task List',1,1166041367),('switchers','wiki','Production Task List',1,1166041367),('sound','wiki','Production Task List',1,1166041367),('stagehands','wiki','Production Task List',1,1166041367),('hours)','wiki','Production Task List',1,1166041367),('truck','wiki','Production Task List',1,1166041367),('loaders','wiki','Production Task List',1,1166041367),('projectors)','wiki','Production Task List',1,1166041367),('call','wiki','Production Task List',1,1166041367),('fascia,','wiki','Production Task List',1,1166041367),('forklift','wiki','Production Task List',1,1166041367),('scissor','wiki','Production Task List',1,1166041367),('forklift)','wiki','Production Task List',1,1166041367),('(manlift','wiki','Production Task List',2,1166041367),('lift','wiki','Production Task List',3,1166041367),('venue','wiki','Production Task List',3,1166041367),('talk','wiki','Production Task List',1,1166041367),('fork','wiki','Production Task List',1,1166041367),('flown?','wiki','Production Task List',1,1166041367),('projectors','wiki','Production Task List',1,1166041367),('runoff','wiki','Production Task List',1,1166041367),('tech,','wiki','Production Task List',1,1166041367),('(sides,','wiki','Production Task List',1,1166041367),('provides)','wiki','Production Task List',1,1166041367),('figure','wiki','Production Task List',1,1166041367),('positions','wiki','Production Task List',1,1166041367),('going','wiki','Production Task List',1,1166041367),('camera','wiki','Production Task List',1,1166041367),('much','wiki','Production Task List',1,1166041367),('drape','wiki','Production Task List',2,1166041367),('bo\'s)','wiki','Production Task List',1,1166041367),('supply','wiki','Production Task List',3,1166041367),('(viva','wiki','Production Task List',2,1166041367),('b/os','wiki','Production Task List',1,1166041367),('reqs','wiki','Production Task List',1,1166041367),('laptop','wiki','Production Task List',1,1166041367),('cable','wiki','Production Task List',1,1166041367),('flown','wiki','Production Task List',1,1166041367),('truss,','wiki','Production Task List',1,1166041367),('projection,','wiki','Production Task List',1,1166041367),('monitor','wiki','Production Task List',1,1166041367),('confidence','wiki','Production Task List',2,1166041367),('projector?','wiki','Production Task List',1,1166041367),('11a)','wiki','Production Task List',1,1166041367),('cart','wiki','Production Task List',1,1166041367),('dropdown?','wiki','Production Task List',1,1166041367),('where','wiki','Production Task List',2,1166041367),('lenses)','wiki','Production Task List',1,1166041367),('wiring,','wiki','Production Task List',1,1166041367),('placement,','wiki','Production Task List',1,1166041367),('(confirm','wiki','Production Task List',1,1166041367),('breakout','wiki','Production Task List',1,1166041367),('projection','wiki','Production Task List',1,1166041367),('usb)','wiki','Production Task List',1,1166041367),('firewire','wiki','Production Task List',1,1166041367),('format','wiki','Production Task List',1,1166041367),('(get','wiki','Production Task List',1,1166041367),('lacie','wiki','Production Task List',1,1166041367),('ddr)','wiki','Production Task List',1,1166041367),('transfer','wiki','Production Task List',1,1166041367),('this','wiki','Production Task List',1,1166041367),('(need','wiki','Production Task List',1,1166041367),('videos','wiki','Production Task List',1,1166041367),('drive','wiki','Production Task List',1,1166041367),('pc-based','wiki','Production Task List',1,1166041367),('choir','wiki','Production Task List',1,1166041367),('have?','wiki','Production Task List',1,1166041367),('holding','wiki','Production Task List',1,1166041367),('convention','wiki','Production Task List',1,1166041367),('these)','wiki','Production Task List',1,1166041367),('video','wiki','Production Task List',3,1166041367),('stage','wiki','Production Task List',1,1166041367),('back','wiki','Production Task List',1,1166041367),('from','wiki','Production Task List',3,1166041367),('taperesources','wiki','Production Task List',1,1166041367),('order','wiki','Production Task List',2,1166041367),('tape,','wiki','Production Task List',1,1166041367),('spec','wiki','Production Task List',1,1166041367),('manfred','wiki','Production Task List',1,1166041367),('with','wiki','Production Task List',4,1166041367),('get)','wiki','Production Task List',1,1166041367),('work','wiki','Production Task List',3,1166041367),('best','wiki','Production Task List',1,1166041367),('ones','wiki','Production Task List',1,1166041367),('(chris','wiki','Production Task List',1,1166041367),('provides','wiki','Production Task List',1,1166041367),('viva','wiki','Production Task List',2,1166041367),('stock','wiki','Production Task List',1,1166041367),('rent','wiki','Production Task List',2,1166041367),('dvd-r','wiki','Production Task List',1,1166041367),('record','wiki','Production Task List',1,1166041367),('(dsr','wiki','Production Task List',1,1166041367),('dvcam','wiki','Production Task List',1,1166041367),('decks','wiki','Production Task List',2,1166041367),('local','wiki','Production Task List',1,1166041367),('company?','wiki','Production Task List',1,1166041367),('rental?','wiki','Production Task List',1,1166041367),('have)','wiki','Production Task List',1,1166041367),('does','wiki','Production Task List',2,1166041367),('(mig','wiki','Production Task List',1,1166041367),('budget','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('creative','wiki','King Pharmaceuticals Leadership 24 Jan 07',2,1165617872),('talk','wiki','Lorne Sept 20',1,1166040568),('needed','wiki','Lorne Sept 20',1,1166040568),('requirements','wiki','Lorne Sept 20',1,1166040568),('rigging','wiki','Lorne Sept 20',1,1166040568),('expo','wiki','Lorne Sept 20',1,1166040568),('lighting','wiki','Lorne Sept 20',1,1166040568),('quote','wiki','Lorne Sept 20',1,1166040568),('confirm','wiki','Lorne Sept 20',1,1166040568),('photographer','wiki','Lorne Sept 20',1,1166040568),('photos','wiki','Lorne Sept 20',1,1166040568),('backdrops','wiki','Lorne Sept 20',1,1166040568),('furniture','wiki','Lorne Sept 20',1,1166040568),('reception','wiki','Lorne Sept 20',1,1166040568),('order','wiki','Lorne Sept 20',1,1166040568),('rehearsal','wiki','Lorne Sept 20',1,1166040568),('schedules','wiki','Lorne Sept 20',3,1166040568),('production','wiki','Lorne Sept 20',1,1166040568),('security','wiki','Lorne Sept 20',1,1166040568),('lists','wiki','Lorne Sept 20',1,1166040568),('contact','wiki','Lorne Sept 20',1,1166040568),('too)','wiki','Lorne Sept 20',1,1166040568),('need','wiki','Lorne Sept 20',2,1166040568),('(may','wiki','Lorne Sept 20',1,1166040568),('&','wiki','Lorne Sept 20',1,1166040568),('insurance','wiki','Lorne Sept 20',1,1166040568),('certificates','wiki','Lorne Sept 20',1,1166040568),('hotel)','wiki','Lorne Sept 20',1,1166040568),('spoken','wiki','Lorne Sept 20',1,1166040568),('(have','wiki','Lorne Sept 20',1,1166040568),('request','wiki','Lorne Sept 20',1,1166040568),('hotel','wiki','Lorne Sept 20',2,1166040568),('meeting','wiki','Lorne Sept 20',2,1166040568),('managers','wiki','Lorne Sept 20',2,1166040568),('layout','wiki','Lorne Sept 20',1,1166040568),('rooms)','wiki','Lorne Sept 20',1,1166040568),('backstage','wiki','Lorne Sept 20',1,1166040568),('(including','wiki','Lorne Sept 20',1,1166040568),('conv','wiki','Lorne Sept 20',2,1166040568),('confidence','wiki','Lorne Sept 20',1,1166040568),('screens','wiki','Lorne Sept 20',1,1166040568),('location','wiki','Lorne Sept 20',1,1166040568),('estimate','wiki','Lorne Sept 20',1,1166040568),('final','wiki','Lorne Sept 20',1,1166040568),('labor','wiki','Lorne Sept 20',1,1166040568),('these)','wiki','Lorne Sept 20',1,1166040568),('local','wiki','Lorne Sept 20',1,1166040568),('pre-print','wiki','Lorne Sept 20',1,1166040568),('should','wiki','Lorne Sept 20',1,1166040568),('dvd-r','wiki','Lorne Sept 20',1,1166040568),('stock','wiki','Lorne Sept 20',2,1166040568),('tape','wiki','Lorne Sept 20',1,1166040568),('&firewire)','wiki','Lorne Sept 20',1,1166040568),('(usb','wiki','Lorne Sept 20',1,1166040568),('formatted','wiki','Lorne Sept 20',1,1166040568),('drive','wiki','Lorne Sept 20',1,1166040568),('transfer','wiki','Lorne Sept 20',1,1166040568),('editing','wiki','Lorne Sept 20',1,1166040568),('drives','wiki','Lorne Sept 20',1,1166040568),('hard','wiki','Lorne Sept 20',2,1166040568),('http://www.verrents.com/vtrs.php','wiki','Lorne Sept 20',1,1166040568),('http://www.digitalsystemsrentals.com/dsr45.shtml','wiki','Lorne Sept 20',1,1166040568),('dsr45s)','wiki','Lorne Sept 20',1,1166040568),('(need','wiki','Lorne Sept 20',1,1166040568),('session','wiki','Lorne Sept 20',1,1166040568),('general','wiki','Lorne Sept 20',1,1166040568),('decks','wiki','Lorne Sept 20',1,1166040568),('dvcam','wiki','Lorne Sept 20',1,1166040568),('dsr-250)','wiki','Lorne Sept 20',1,1166040568),('light','wiki','Lorne Sept 20',1,1166040568),('with','wiki','Lorne Sept 20',1,1166040568),('estimate','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('checklists','wiki','Operations',1,1166461000),('strategy','wiki','Creative Proposal 1 Dec 06',1,1191871605),('performance.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('peak','wiki','Creative Proposal 1 Dec 06',5,1191871605),('wide','wiki','Creative Proposal 1 Dec 06',2,1191871605),('playsâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“winning','wiki','Creative Proposal 1 Dec 06',1,1191871605),('implement','wiki','Creative Proposal 1 Dec 06',1,1191871605),('needs','wiki','Creative Proposal 1 Dec 06',1,1191871605),('game.â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“top','wiki','Creative Proposal 1 Dec 06',1,1191871605),('company’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('execute','wiki','Creative Proposal 1 Dec 06',1,1191871605),('season.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('gearing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('on!â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“game','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“peak','wiki','Creative Proposal 1 Dec 06',1,1191871605),('setting.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ballroom','wiki','Creative Proposal 1 Dec 06',3,1191871605),('implemented','wiki','Creative Proposal 1 Dec 06',1,1191871605),('teams,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('between','wiki','Creative Proposal 1 Dec 06',2,1191871605),('races','wiki','Creative Proposal 1 Dec 06',1,1191871605),('culminates','wiki','Creative Proposal 1 Dec 06',1,1191871605),('90-minute','wiki','Creative Proposal 1 Dec 06',1,1191871605),('communication','wiki','Creative Proposal 1 Dec 06',1,1191871605),('clear','wiki','Creative Proposal 1 Dec 06',1,1191871605),('solving,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('problem','wiki','Creative Proposal 1 Dec 06',1,1191871605),('innovation,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('edge.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('winning','wiki','Creative Proposal 1 Dec 06',2,1191871605),('gain','wiki','Creative Proposal 1 Dec 06',1,1191871605),('figure','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cars!','wiki','Creative Proposal 1 Dec 06',1,1191871605),('release','wiki','Creative Proposal 1 Dec 06',1,1191871605),('activity','wiki','Creative Proposal 1 Dec 06',2,1191871605),('brief','wiki','Creative Proposal 1 Dec 06',1,1191871605),('facilitator','wiki','Creative Proposal 1 Dec 06',1,1191871605),('more.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('uniforms,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('decorations,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('tape,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('wood,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('string,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('heavy','wiki','Creative Proposal 1 Dec 06',1,1191871605),('glue,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('bolts,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('nuts','wiki','Creative Proposal 1 Dec 06',1,1191871605),('connectors,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('wheels,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('components','wiki','Creative Proposal 1 Dec 06',1,1191871605),('tools,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('instructions,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('race','wiki','Creative Proposal 1 Dec 06',2,1191871605),('includes:','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ccar-kit','wiki','Creative Proposal 1 Dec 06',1,1191871605),('receive','wiki','Creative Proposal 1 Dec 06',1,1191871605),('racecars.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('groups','wiki','Creative Proposal 1 Dec 06',1,1191871605),('divide','wiki','Creative Proposal 1 Dec 06',1,1191871605),('interactive','wiki','Creative Proposal 1 Dec 06',1,1191871605),('consider','wiki','Creative Proposal 1 Dec 06',1,1191871605),('activity,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('alternative','wiki','Creative Proposal 1 Dec 06',1,1191871605),('teambuilding','wiki','Creative Proposal 1 Dec 06',1,1191871605),('alternate','wiki','Creative Proposal 1 Dec 06',1,1191871605),('success.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('stratosphere','wiki','Creative Proposal 1 Dec 06',1,1191871605),('reach','wiki','Creative Proposal 1 Dec 06',1,1191871605),('left','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sky.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('soars','wiki','Creative Proposal 1 Dec 06',1,1191871605),('fighter','wiki','Creative Proposal 1 Dec 06',1,1191871605),('transforms','wiki','Creative Proposal 1 Dec 06',1,1191871605),('crashing,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('instead','wiki','Creative Proposal 1 Dec 06',1,1191871605),('breakneck','wiki','Creative Proposal 1 Dec 06',1,1191871605),('track','wiki','Creative Proposal 1 Dec 06',1,1191871605),('hurtles','wiki','Creative Proposal 1 Dec 06',1,1191871605),('vehicle.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('audience’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('brings','wiki','Creative Proposal 1 Dec 06',1,1191871605),('swoosh','wiki','Creative Proposal 1 Dec 06',1,1191871605),('logo','wiki','Creative Proposal 1 Dec 06',1,1191871605),('point,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('reaches','wiki','Creative Proposal 1 Dec 06',1,1191871605),('needle','wiki','Creative Proposal 1 Dec 06',1,1191871605),('branding.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('dial','wiki','Creative Proposal 1 Dec 06',1,1191871605),('marked','wiki','Creative Proposal 1 Dec 06',1,1191871605),('speed,','wiki','Creative Proposal 1 Dec 06',2,1191871605),('towards','wiki','Creative Proposal 1 Dec 06',2,1191871605),('rising','wiki','Creative Proposal 1 Dec 06',1,1191871605),('steadily','wiki','Creative Proposal 1 Dec 06',1,1191871605),('speedometer','wiki','Creative Proposal 1 Dec 06',1,1191871605),('track,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('begins','wiki','Creative Proposal 1 Dec 06',1,1191871605),('heights.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('propel','wiki','Creative Proposal 1 Dec 06',1,1191871605),('stellar','wiki','Creative Proposal 1 Dec 06',1,1191871605),('goal','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ultimate','wiki','Creative Proposal 1 Dec 06',2,1191871605),('performance…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('illustrating','wiki','Creative Proposal 1 Dec 06',1,1191871605),('meeting,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('tone','wiki','Creative Proposal 1 Dec 06',1,1191871605),('which','wiki','Creative Proposal 1 Dec 06',4,1191871605),('platform','wiki','Creative Proposal 1 Dec 06',1,1191871605),('have','wiki','Creative Proposal 1 Dec 06',1,1191871605),('act,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('evps','wiki','Creative Proposal 1 Dec 06',2,1191871605),('surprised','wiki','Creative Proposal 1 Dec 06',1,1191871605),('helmets.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('remove','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ends','wiki','Creative Proposal 1 Dec 06',1,1191871605),('competition.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('achieve','wiki','Creative Proposal 1 Dec 06',3,1191871605),('working','wiki','Creative Proposal 1 Dec 06',1,1191871605),('explain','wiki','Creative Proposal 1 Dec 06',1,1191871605),('emerges.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('again,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('once','wiki','Creative Proposal 1 Dec 06',1,1191871605),('high-performance.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('accountability,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('leadership,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('reinforcing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pace,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('accelerated','wiki','Creative Proposal 1 Dec 06',1,1191871605),('racing!','wiki','Creative Proposal 1 Dec 06',1,1191871605),('accelerates','wiki','Creative Proposal 1 Dec 06',1,1191871605),('where','wiki','Creative Proposal 1 Dec 06',1,1191871605),('teamwork,','wiki','Creative Proposal 1 Dec 06',3,1191871605),('display','wiki','Creative Proposal 1 Dec 06',1,1191871605),('quick','wiki','Creative Proposal 1 Dec 06',1,1191871605),('uniforms.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pharmaceuticals’','wiki','Creative Proposal 1 Dec 06',1,1191871605),('dressed','wiki','Creative Proposal 1 Dec 06',1,1191871605),('emerges','wiki','Creative Proposal 1 Dec 06',1,1191871605),('crew','wiki','Creative Proposal 1 Dec 06',4,1191871605),('real','wiki','Creative Proposal 1 Dec 06',2,1191871605),('appears','wiki','Creative Proposal 1 Dec 06',3,1191871605),('“kingâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('actual','wiki','Creative Proposal 1 Dec 06',2,1191871605),('lights,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('flash','wiki','Creative Proposal 1 Dec 06',2,1191871605),('stop...','wiki','Creative Proposal 1 Dec 06',1,1191871605),('toward','wiki','Creative Proposal 1 Dec 06',1,1191871605),('maneuvers','wiki','Creative Proposal 1 Dec 06',1,1191871605),('suddenly','wiki','Creative Proposal 1 Dec 06',3,1191871605),('you!â€)','wiki','Creative Proposal 1 Dec 06',1,1191871605),('innovation,â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“rev','wiki','Creative Proposal 1 Dec 06',1,1191871605),('success,â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“you','wiki','Creative Proposal 1 Dec 06',1,1191871605),('wheel,â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“you’re','wiki','Creative Proposal 1 Dec 06',1,1191871605),('(e.g.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('team.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('faced','wiki','Creative Proposal 1 Dec 06',1,1191871605),('challenges','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“vehicleâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('throughout,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('intercut','wiki','Creative Proposal 1 Dec 06',2,1191871605),('turns.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('twists','wiki','Creative Proposal 1 Dec 06',1,1191871605),('racetrack','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“rideâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('symbolic','wiki','Creative Proposal 1 Dec 06',1,1191871605),('seat','wiki','Creative Proposal 1 Dec 06',2,1191871605),('driver’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('out.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('inside','wiki','Creative Proposal 1 Dec 06',1,1191871605),('looking','wiki','Creative Proposal 1 Dec 06',2,1191871605),('outside','wiki','Creative Proposal 1 Dec 06',2,1191871605),('perspective','wiki','Creative Proposal 1 Dec 06',2,1191871605),('shifts','wiki','Creative Proposal 1 Dec 06',1,1191871605),('effect','wiki','Creative Proposal 1 Dec 06',2,1191871605),('post-production','wiki','Creative Proposal 1 Dec 06',2,1191871605),('swooshing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('racetrack.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('speeding','wiki','Creative Proposal 1 Dec 06',2,1191871605),('racecar','wiki','Creative Proposal 1 Dec 06',4,1191871605),('pharmaceutical','wiki','Creative Proposal 1 Dec 06',1,1191871605),('close-up','wiki','Creative Proposal 1 Dec 06',1,1191871605),('screens','wiki','Creative Proposal 1 Dec 06',2,1191871605),('silence','wiki','Creative Proposal 1 Dec 06',1,1191871605),('engines','wiki','Creative Proposal 1 Dec 06',2,1191871605),('roaring','wiki','Creative Proposal 1 Dec 06',1,1191871605),('black,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('seats,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('look.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“nascarâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('flags','wiki','Creative Proposal 1 Dec 06',2,1191871605),('checkered','wiki','Creative Proposal 1 Dec 06',1,1191871605),('set…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('notice','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“drive','wiki','Creative Proposal 1 Dec 06',1,1191871605),('teams','wiki','Creative Proposal 1 Dec 06',3,1191871605),('back','wiki','Creative Proposal 1 Dec 06',3,1191871605),('accountable','wiki','Creative Proposal 1 Dec 06',1,1191871605),('held','wiki','Creative Proposal 1 Dec 06',1,1191871605),('seatâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“driver’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('need','wiki','Creative Proposal 1 Dec 06',1,1191871605),('race.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('competition','wiki','Creative Proposal 1 Dec 06',1,1191871605),('beat','wiki','Creative Proposal 1 Dec 06',2,1191871605),('enable','wiki','Creative Proposal 1 Dec 06',1,1191871605),('driving','wiki','Creative Proposal 1 Dec 06',2,1191871605),('level.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('whole','wiki','Creative Proposal 1 Dec 06',3,1191871605),('“buckle-upâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('asking','wiki','Creative Proposal 1 Dec 06',1,1191871605),('effort.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“jump-startâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('required','wiki','Creative Proposal 1 Dec 06',1,1191871605),('status-quo','wiki','Creative Proposal 1 Dec 06',1,1191871605),('change','wiki','Creative Proposal 1 Dec 06',2,1191871605),('culture.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('high-performance','wiki','Creative Proposal 1 Dec 06',1,1191871605),('reality','wiki','Creative Proposal 1 Dec 06',1,1191871605),('theory','wiki','Creative Proposal 1 Dec 06',1,1191871605),('move','wiki','Creative Proposal 1 Dec 06',1,1191871605),('focus','wiki','Creative Proposal 1 Dec 06',1,1191871605),('major','wiki','Creative Proposal 1 Dec 06',1,1191871605),('performanceâ€','wiki','Creative Proposal 1 Dec 06',4,1191871605),('“driving','wiki','Creative Proposal 1 Dec 06',2,1191871605),('support:','wiki','Creative Proposal 1 Dec 06',1,1191871605),('presentation','wiki','Creative Proposal 1 Dec 06',1,1191871605),('thematic','wiki','Creative Proposal 1 Dec 06',3,1191871605),('song…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('reprise','wiki','Creative Proposal 1 Dec 06',1,1191871605),('them.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('away','wiki','Creative Proposal 1 Dec 06',1,1191871605),('attendee','wiki','Creative Proposal 1 Dec 06',1,1191871605),('delivered','wiki','Creative Proposal 1 Dec 06',1,1191871605),('then','wiki','Creative Proposal 1 Dec 06',2,1191871605),('responsibility','wiki','Creative Proposal 1 Dec 06',1,1191871605),('person','wiki','Creative Proposal 1 Dec 06',1,1191871605),('idea','wiki','Creative Proposal 1 Dec 06',1,1191871605),('reveals','wiki','Creative Proposal 1 Dec 06',1,1191871605),('until','wiki','Creative Proposal 1 Dec 06',1,1191871605),('builds','wiki','Creative Proposal 1 Dec 06',2,1191871605),('graphical','wiki','Creative Proposal 1 Dec 06',1,1191871605),('takes','wiki','Creative Proposal 1 Dec 06',4,1191871605),('shrinks','wiki','Creative Proposal 1 Dec 06',1,1191871605),('appears,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('days.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('previous','wiki','Creative Proposal 1 Dec 06',1,1191871605),('shot','wiki','Creative Proposal 1 Dec 06',2,1191871605),('begin','wiki','Creative Proposal 1 Dec 06',1,1191871605),('feeling,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('leave','wiki','Creative Proposal 1 Dec 06',1,1191871605),('order','wiki','Creative Proposal 1 Dec 06',1,1191871605),('conference.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('beyond','wiki','Creative Proposal 1 Dec 06',1,1191871605),('continue','wiki','Creative Proposal 1 Dec 06',1,1191871605),('directive','wiki','Creative Proposal 1 Dec 06',1,1191871605),('implies','wiki','Creative Proposal 1 Dec 06',1,1191871605),('dvd)','wiki','Creative Proposal 1 Dec 06',1,1191871605),('distribution','wiki','Creative Proposal 1 Dec 06',1,1191871605),('positing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('(also','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sendoff,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('tool-kit','wiki','Creative Proposal 1 Dec 06',1,1191871605),('video:','wiki','Creative Proposal 1 Dec 06',2,1191871605),('closing','wiki','Creative Proposal 1 Dec 06',6,1191871605),('lessons.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('codify','wiki','Creative Proposal 1 Dec 06',1,1191871605),('seek','wiki','Creative Proposal 1 Dec 06',1,1191871605),('helpful','wiki','Creative Proposal 1 Dec 06',1,1191871605),('particularly','wiki','Creative Proposal 1 Dec 06',1,1191871605),('would','wiki','Creative Proposal 1 Dec 06',2,1191871605),('sessions','wiki','Creative Proposal 1 Dec 06',1,1191871605),('weave','wiki','Creative Proposal 1 Dec 06',1,1191871605),('scattergram.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('plotted','wiki','Creative Proposal 1 Dec 06',1,1191871605),('results','wiki','Creative Proposal 1 Dec 06',2,1191871605),('criteria','wiki','Creative Proposal 1 Dec 06',1,1191871605),('against','wiki','Creative Proposal 1 Dec 06',1,1191871605),('issues','wiki','Creative Proposal 1 Dec 06',1,1191871605),('assess','wiki','Creative Proposal 1 Dec 06',1,1191871605),('mapping','wiki','Creative Proposal 1 Dec 06',1,1191871605),('listing,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('prioritize','wiki','Creative Proposal 1 Dec 06',1,1191871605),('your','wiki','Creative Proposal 1 Dec 06',2,1191871605),('poll','wiki','Creative Proposal 1 Dec 06',1,1191871605),('allow','wiki','Creative Proposal 1 Dec 06',1,1191871605),('applications','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ranking','wiki','Creative Proposal 1 Dec 06',1,1191871605),('priority','wiki','Creative Proposal 1 Dec 06',1,1191871605),('questions,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('choice','wiki','Creative Proposal 1 Dec 06',1,1191871605),('multiple','wiki','Creative Proposal 1 Dec 06',3,1191871605),('capability','wiki','Creative Proposal 1 Dec 06',1,1191871605),('charts.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('graphs,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pencil','wiki','Creative Proposal 1 Dec 06',1,1191871605),('charts,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('including','wiki','Creative Proposal 1 Dec 06',1,1191871605),('displayed,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('immediately','wiki','Creative Proposal 1 Dec 06',3,1191871605),('graphs','wiki','Creative Proposal 1 Dec 06',1,1191871605),('result','wiki','Creative Proposal 1 Dec 06',1,1191871605),('many','wiki','Creative Proposal 1 Dec 06',2,1191871605),('applications.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('game','wiki','Creative Proposal 1 Dec 06',2,1191871605),('well','wiki','Creative Proposal 1 Dec 06',1,1191871605),('audience,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('quizzing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('allows','wiki','Creative Proposal 1 Dec 06',3,1191871605),('executive','wiki','Creative Proposal 1 Dec 06',3,1191871605),('valuable','wiki','Creative Proposal 1 Dec 06',1,1191871605),('prove','wiki','Creative Proposal 1 Dec 06',3,1191871605),('abilities','wiki','Creative Proposal 1 Dec 06',1,1191871605),('polling','wiki','Creative Proposal 1 Dec 06',2,1191871605),('capture','wiki','Creative Proposal 1 Dec 06',1,1191871605),('data','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sophisticated','wiki','Creative Proposal 1 Dec 06',1,1191871605),('delivers','wiki','Creative Proposal 1 Dec 06',1,1191871605),('retention','wiki','Creative Proposal 1 Dec 06',1,1191871605),('boosts','wiki','Creative Proposal 1 Dec 06',1,1191871605),('interactivity,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('technology','wiki','Creative Proposal 1 Dec 06',3,1191871605),('does','wiki','Creative Proposal 1 Dec 06',1,1191871605),('only','wiki','Creative Proposal 1 Dec 06',1,1191871605),('attendee.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('systems','wiki','Creative Proposal 1 Dec 06',1,1191871605),('addition','wiki','Creative Proposal 1 Dec 06',1,1191871605),('vital,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('during','wiki','Creative Proposal 1 Dec 06',3,1191871605),('interest','wiki','Creative Proposal 1 Dec 06',1,1191871605),('maintain','wiki','Creative Proposal 1 Dec 06',1,1191871605),('critical','wiki','Creative Proposal 1 Dec 06',2,1191871605),('one,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('systems:','wiki','Creative Proposal 1 Dec 06',1,1191871605),('response','wiki','Creative Proposal 1 Dec 06',2,1191871605),('show.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('morning','wiki','Creative Proposal 1 Dec 06',1,1191871605),('like','wiki','Creative Proposal 1 Dec 06',3,1191871605),('feel','wiki','Creative Proposal 1 Dec 06',1,1191871605),('broadcast','wiki','Creative Proposal 1 Dec 06',1,1191871605),('morning’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('edit','wiki','Creative Proposal 1 Dec 06',1,1191871605),('work.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('commentary','wiki','Creative Proposal 1 Dec 06',1,1191871605),('fieldâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“in','wiki','Creative Proposal 1 Dec 06',1,1191871605),('on-site','wiki','Creative Proposal 1 Dec 06',1,1191871605),('actually','wiki','Creative Proposal 1 Dec 06',2,1191871605),('activity…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('style','wiki','Creative Proposal 1 Dec 06',2,1191871605),('news','wiki','Creative Proposal 1 Dec 06',2,1191871605),('illustrations.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('visual','wiki','Creative Proposal 1 Dec 06',1,1191871605),('other','wiki','Creative Proposal 1 Dec 06',3,1191871605),('graphics','wiki','Creative Proposal 1 Dec 06',4,1191871605),('messages','wiki','Creative Proposal 1 Dec 06',2,1191871605),('enhance','wiki','Creative Proposal 1 Dec 06',2,1191871605),('opportunity','wiki','Creative Proposal 1 Dec 06',1,1191871605),('provide','wiki','Creative Proposal 1 Dec 06',1,1191871605),('value,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('production','wiki','Creative Proposal 1 Dec 06',2,1191871605),('increase','wiki','Creative Proposal 1 Dec 06',1,1191871605),('program,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('part','wiki','Creative Proposal 1 Dec 06',1,1191871605),('remain','wiki','Creative Proposal 1 Dec 06',1,1191871605),('levels','wiki','Creative Proposal 1 Dec 06',1,1191871605),('energy','wiki','Creative Proposal 1 Dec 06',2,1191871605),('bumpers','wiki','Creative Proposal 1 Dec 06',1,1191871605),('short','wiki','Creative Proposal 1 Dec 06',1,1191871605),('these','wiki','Creative Proposal 1 Dec 06',1,1191871605),('story.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sharing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('individual','wiki','Creative Proposal 1 Dec 06',3,1191871605),('each','wiki','Creative Proposal 1 Dec 06',11,1191871605),('intros/outros','wiki','Creative Proposal 1 Dec 06',1,1191871605),('scripted','wiki','Creative Proposal 1 Dec 06',1,1191871605),('studios','wiki','Creative Proposal 1 Dec 06',1,1191871605),('personality','wiki','Creative Proposal 1 Dec 06',2,1191871605),('host','wiki','Creative Proposal 1 Dec 06',3,1191871605),('videotape','wiki','Creative Proposal 1 Dec 06',1,1191871605),('host.â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('incorporation','wiki','Creative Proposal 1 Dec 06',1,1191871605),('propose','wiki','Creative Proposal 1 Dec 06',2,1191871605),('stories,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('people','wiki','Creative Proposal 1 Dec 06',2,1191871605),('invite','wiki','Creative Proposal 1 Dec 06',1,1191871605),('just','wiki','Creative Proposal 1 Dec 06',1,1191871605),('than','wiki','Creative Proposal 1 Dec 06',1,1191871605),('rather','wiki','Creative Proposal 1 Dec 06',1,1191871605),('2006.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('share','wiki','Creative Proposal 1 Dec 06',2,1191871605),('excited','wiki','Creative Proposal 1 Dec 06',2,1191871605),('conference,','wiki','Creative Proposal 1 Dec 06',2,1191871605),('after','wiki','Creative Proposal 1 Dec 06',6,1191871605),('hostâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('show','wiki','Creative Proposal 1 Dec 06',3,1191871605),('talk','wiki','Creative Proposal 1 Dec 06',2,1191871605),('“virtual','wiki','Creative Proposal 1 Dec 06',2,1191871605),('activity:','wiki','Creative Proposal 1 Dec 06',2,1191871605),('2007.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('discussion','wiki','Creative Proposal 1 Dec 06',1,1191871605),('segue','wiki','Creative Proposal 1 Dec 06',1,1191871605),('piece.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('culture,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('build','wiki','Creative Proposal 1 Dec 06',4,1191871605),('work','wiki','Creative Proposal 1 Dec 06',2,1191871605),('brian','wiki','Creative Proposal 1 Dec 06',2,1191871605),('concludes,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('executives.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('from','wiki','Creative Proposal 1 Dec 06',6,1191871605),('bytes','wiki','Creative Proposal 1 Dec 06',4,1191871605),('interview','wiki','Creative Proposal 1 Dec 06',1,1191871605),('incorporating','wiki','Creative Proposal 1 Dec 06',1,1191871605),('also','wiki','Creative Proposal 1 Dec 06',4,1191871605),('perhaps','wiki','Creative Proposal 1 Dec 06',1,1191871605),('about','wiki','Creative Proposal 1 Dec 06',3,1191871605),('montage','wiki','Creative Proposal 1 Dec 06',1,1191871605),('crescendo','wiki','Creative Proposal 1 Dec 06',1,1191871605),('music','wiki','Creative Proposal 1 Dec 06',1,1191871605),('logo.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('pharmaceuticals','wiki','Creative Proposal 1 Dec 06',5,1191871605),('comes','wiki','Creative Proposal 1 Dec 06',2,1191871605),('entire','wiki','Creative Proposal 1 Dec 06',1,1191871605),('placed,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('final','wiki','Creative Proposal 1 Dec 06',2,1191871605),('when','wiki','Creative Proposal 1 Dec 06',6,1191871605),('eyes.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('audiences’','wiki','Creative Proposal 1 Dec 06',1,1191871605),('before','wiki','Creative Proposal 1 Dec 06',1,1191871605),('blocks','wiki','Creative Proposal 1 Dec 06',1,1191871605),('assembling','wiki','Creative Proposal 1 Dec 06',1,1191871605),('literally','wiki','Creative Proposal 1 Dec 06',1,1191871605),('onstage.','wiki','Creative Proposal 1 Dec 06',3,1191871605),('built','wiki','Creative Proposal 1 Dec 06',1,1191871605),('wall','wiki','Creative Proposal 1 Dec 06',3,1191871605),('continues','wiki','Creative Proposal 1 Dec 06',3,1191871605),('voices.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('their','wiki','Creative Proposal 1 Dec 06',10,1191871605),('sound','wiki','Creative Proposal 1 Dec 06',5,1191871605),('natural','wiki','Creative Proposal 1 Dec 06',1,1191871605),('infused','wiki','Creative Proposal 1 Dec 06',1,1191871605),('soundtrack','wiki','Creative Proposal 1 Dec 06',1,1191871605),('etc).','wiki','Creative Proposal 1 Dec 06',1,1191871605),('social','wiki','Creative Proposal 1 Dec 06',1,1191871605),('political','wiki','Creative Proposal 1 Dec 06',1,1191871605),('leaders,','wiki','Creative Proposal 1 Dec 06',3,1191871605),('sports','wiki','Creative Proposal 1 Dec 06',5,1191871605),('could','wiki','Creative Proposal 1 Dec 06',3,1191871605),('(these','wiki','Creative Proposal 1 Dec 06',1,1191871605),('quotations.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('inspirational,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('saying','wiki','Creative Proposal 1 Dec 06',1,1191871605),('leaders','wiki','Creative Proposal 1 Dec 06',2,1191871605),('famous','wiki','Creative Proposal 1 Dec 06',1,1191871605),('footage','wiki','Creative Proposal 1 Dec 06',2,1191871605),('they','wiki','Creative Proposal 1 Dec 06',5,1191871605),('amazed.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('around','wiki','Creative Proposal 1 Dec 06',3,1191871605),('boxes','wiki','Creative Proposal 1 Dec 06',2,1191871605),('stack','wiki','Creative Proposal 1 Dec 06',1,1191871605),('playing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('image','wiki','Creative Proposal 1 Dec 06',3,1191871605),('video','wiki','Creative Proposal 1 Dec 06',19,1191871605),('place,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('instant','wiki','Creative Proposal 1 Dec 06',1,1191871605),('very','wiki','Creative Proposal 1 Dec 06',2,1191871605),('center','wiki','Creative Proposal 1 Dec 06',1,1191871605),('large','wiki','Creative Proposal 1 Dec 06',2,1191871605),('places','wiki','Creative Proposal 1 Dec 06',1,1191871605),('performer','wiki','Creative Proposal 1 Dec 06',1,1191871605),('onstage…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('something','wiki','Creative Proposal 1 Dec 06',1,1191871605),('start','wiki','Creative Proposal 1 Dec 06',1,1191871605),('choreography','wiki','Creative Proposal 1 Dec 06',2,1191871605),('perfect','wiki','Creative Proposal 1 Dec 06',5,1191871605),('boxes.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('metal-frame','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sized','wiki','Creative Proposal 1 Dec 06',1,1191871605),('different','wiki','Creative Proposal 1 Dec 06',2,1191871605),('others','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pipe,','wiki','Creative Proposal 1 Dec 06',2,1191871605),('pieces','wiki','Creative Proposal 1 Dec 06',1,1191871605),('carry','wiki','Creative Proposal 1 Dec 06',1,1191871605),('some','wiki','Creative Proposal 1 Dec 06',1,1191871605),('stage.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('costumes','wiki','Creative Proposal 1 Dec 06',1,1191871605),('construction','wiki','Creative Proposal 1 Dec 06',1,1191871605),('performers','wiki','Creative Proposal 1 Dec 06',5,1191871605),('rhythmic','wiki','Creative Proposal 1 Dec 06',1,1191871605),('group','wiki','Creative Proposal 1 Dec 06',2,1191871605),('full','wiki','Creative Proposal 1 Dec 06',1,1191871605),('escalates','wiki','Creative Proposal 1 Dec 06',1,1191871605),('song','wiki','Creative Proposal 1 Dec 06',1,1191871605),('song.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('original','wiki','Creative Proposal 1 Dec 06',1,1191871605),('energizing','wiki','Creative Proposal 1 Dec 06',2,1191871605),('together','wiki','Creative Proposal 1 Dec 06',4,1191871605),('come','wiki','Creative Proposal 1 Dec 06',4,1191871605),('saws','wiki','Creative Proposal 1 Dec 06',1,1191871605),('hammers,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('drills,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('black.','wiki','Creative Proposal 1 Dec 06',2,1191871605),('seated','wiki','Creative Proposal 1 Dec 06',1,1191871605),('everyone','wiki','Creative Proposal 1 Dec 06',4,1191871605),('k–i–n–g?.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('outline','wiki','Creative Proposal 1 Dec 06',1,1191871605),('form','wiki','Creative Proposal 1 Dec 06',1,1191871605),('buildings','wiki','Creative Proposal 1 Dec 06',1,1191871605),('edges','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“skylineâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('abstract','wiki','Creative Proposal 1 Dec 06',1,1191871605),('backdrop','wiki','Creative Proposal 1 Dec 06',1,1191871605),('set.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('stage','wiki','Creative Proposal 1 Dec 06',8,1191871605),('highlight','wiki','Creative Proposal 1 Dec 06',1,1191871605),('lights','wiki','Creative Proposal 1 Dec 06',8,1191871605),('moving','wiki','Creative Proposal 1 Dec 06',1,1191871605),('slow','wiki','Creative Proposal 1 Dec 06',1,1191871605),('construction.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sounds','wiki','Creative Proposal 1 Dec 06',3,1191871605),('subtle','wiki','Creative Proposal 1 Dec 06',1,1191871605),('hear','wiki','Creative Proposal 1 Dec 06',1,1191871605),('room','wiki','Creative Proposal 1 Dec 06',3,1191871605),('enter','wiki','Creative Proposal 1 Dec 06',2,1191871605),('piece','wiki','Creative Proposal 1 Dec 06',3,1191871605),('building','wiki','Creative Proposal 1 Dec 06',3,1191871605),('sequence:','wiki','Creative Proposal 1 Dec 06',3,1191871605),('opening','wiki','Creative Proposal 1 Dec 06',5,1191871605),('last.â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ensuring','wiki','Creative Proposal 1 Dec 06',1,1191871605),('language','wiki','Creative Proposal 1 Dec 06',1,1191871605),('adopt','wiki','Creative Proposal 1 Dec 06',1,1191871605),('action,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ownership,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('take','wiki','Creative Proposal 1 Dec 06',7,1191871605),('them','wiki','Creative Proposal 1 Dec 06',3,1191871605),('stirs','wiki','Creative Proposal 1 Dec 06',1,1191871605),('presented','wiki','Creative Proposal 1 Dec 06',1,1191871605),('content','wiki','Creative Proposal 1 Dec 06',2,1191871605),('leaders.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('king’s','wiki','Creative Proposal 1 Dec 06',3,1191871605),('among','wiki','Creative Proposal 1 Dec 06',1,1191871605),('action','wiki','Creative Proposal 1 Dec 06',2,1191871605),('must','wiki','Creative Proposal 1 Dec 06',5,1191871605),('this','wiki','Creative Proposal 1 Dec 06',19,1191871605),('power','wiki','Creative Proposal 1 Dec 06',1,1191871605),('keystone','wiki','Creative Proposal 1 Dec 06',1,1191871605),('future.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('into','wiki','Creative Proposal 1 Dec 06',9,1191871605),('long','wiki','Creative Proposal 1 Dec 06',1,1191871605),('prosper','wiki','Creative Proposal 1 Dec 06',1,1191871605),('test','wiki','Creative Proposal 1 Dec 06',1,1191871605),('stand','wiki','Creative Proposal 1 Dec 06',1,1191871605),('organization','wiki','Creative Proposal 1 Dec 06',1,1191871605),('successful','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ensure','wiki','Creative Proposal 1 Dec 06',2,1191871605),('place','wiki','Creative Proposal 1 Dec 06',2,1191871605),('practices/attitudes','wiki','Creative Proposal 1 Dec 06',1,1191871605),('accountability','wiki','Creative Proposal 1 Dec 06',1,1191871605),('aims','wiki','Creative Proposal 1 Dec 06',1,1191871605),('vision,','wiki','Creative Proposal 1 Dec 06',2,1191871605),('future-focused','wiki','Creative Proposal 1 Dec 06',1,1191871605),('leadership.','wiki','Creative Proposal 1 Dec 06',3,1191871605),('cultivates','wiki','Creative Proposal 1 Dec 06',1,1191871605),('values','wiki','Creative Proposal 1 Dec 06',1,1191871605),('promote','wiki','Creative Proposal 1 Dec 06',1,1191871605),('time','wiki','Creative Proposal 1 Dec 06',3,1191871605),('change.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cultural','wiki','Creative Proposal 1 Dec 06',1,1191871605),('recognize','wiki','Creative Proposal 1 Dec 06',3,1191871605),('executives','wiki','Creative Proposal 1 Dec 06',3,1191871605),('crossroads,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('start-up.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('feeling','wiki','Creative Proposal 1 Dec 06',2,1191871605),('young','wiki','Creative Proposal 1 Dec 06',1,1191871605),('rationale:','wiki','Creative Proposal 1 Dec 06',3,1191871605),('lastâ€','wiki','Creative Proposal 1 Dec 06',2,1191871605),('“built','wiki','Creative Proposal 1 Dec 06',3,1191871605),('inspirational','wiki','Creative Proposal 1 Dec 06',1,1191871605),('demand','wiki','Creative Proposal 1 Dec 06',2,1191871605),('available','wiki','Creative Proposal 1 Dec 06',1,1191871605),('webcast','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pizzaz','wiki','Creative Proposal 1 Dec 06',1,1191871605),('interactivity','wiki','Creative Proposal 1 Dec 06',2,1191871605),('more','wiki','Creative Proposal 1 Dec 06',5,1191871605),('celebrating','wiki','Creative Proposal 1 Dec 06',2,1191871605),('enough','wiki','Creative Proposal 1 Dec 06',2,1191871605),('doesn’t','wiki','Creative Proposal 1 Dec 06',1,1191871605),('2006','wiki','Creative Proposal 1 Dec 06',2,1191871605),('successes','wiki','Creative Proposal 1 Dec 06',3,1191871605),('celebrate','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cultures','wiki','Creative Proposal 1 Dec 06',1,1191871605),('high','wiki','Creative Proposal 1 Dec 06',5,1191871605),('home','wiki','Creative Proposal 1 Dec 06',2,1191871605),('drive','wiki','Creative Proposal 1 Dec 06',8,1191871605),('differenceâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('you,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('with','wiki','Creative Proposal 1 Dec 06',24,1191871605),('starts','wiki','Creative Proposal 1 Dec 06',3,1191871605),('“it','wiki','Creative Proposal 1 Dec 06',2,1191871605),('action:','wiki','Creative Proposal 1 Dec 06',1,1191871605),('call','wiki','Creative Proposal 1 Dec 06',3,1191871605),('give','wiki','Creative Proposal 1 Dec 06',3,1191871605),('objectives','wiki','Creative Proposal 1 Dec 06',2,1191871605),('corporate','wiki','Creative Proposal 1 Dec 06',1,1191871605),('understand','wiki','Creative Proposal 1 Dec 06',1,1191871605),('attendees','wiki','Creative Proposal 1 Dec 06',8,1191871605),('help','wiki','Creative Proposal 1 Dec 06',4,1191871605),('approach','wiki','Creative Proposal 1 Dec 06',4,1191871605),('creative','wiki','Creative Proposal 1 Dec 06',8,1191871605),('year','wiki','Creative Proposal 1 Dec 06',1,1191871605),('fiscal','wiki','Creative Proposal 1 Dec 06',1,1191871605),('throughout','wiki','Creative Proposal 1 Dec 06',4,1191871605),('culture','wiki','Creative Proposal 1 Dec 06',2,1191871605),('direct','wiki','Creative Proposal 1 Dec 06',1,1191871605),('powerful','wiki','Creative Proposal 1 Dec 06',2,1191871605),('lasting,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('establish','wiki','Creative Proposal 1 Dec 06',1,1191871605),('presentations','wiki','Creative Proposal 1 Dec 06',2,1191871605),('staging,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('music,','wiki','Creative Proposal 1 Dec 06',2,1191871605),('performance,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('live','wiki','Creative Proposal 1 Dec 06',4,1191871605),('video,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('high-energy','wiki','Creative Proposal 1 Dec 06',4,1191871605),('through','wiki','Creative Proposal 1 Dec 06',7,1191871605),('life','wiki','Creative Proposal 1 Dec 06',5,1191871605),('bring','wiki','Creative Proposal 1 Dec 06',5,1191871605),('ways','wiki','Creative Proposal 1 Dec 06',1,1191871605),('conceptualize','wiki','Creative Proposal 1 Dec 06',1,1191871605),('company','wiki','Creative Proposal 1 Dec 06',8,1191871605),('growth-oriented','wiki','Creative Proposal 1 Dec 06',1,1191871605),('creating','wiki','Creative Proposal 1 Dec 06',2,1191871605),('practices','wiki','Creative Proposal 1 Dec 06',1,1191871605),('exemplary','wiki','Creative Proposal 1 Dec 06',1,1191871605),('emphasize','wiki','Creative Proposal 1 Dec 06',1,1191871605),('message','wiki','Creative Proposal 1 Dec 06',8,1191871605),('business','wiki','Creative Proposal 1 Dec 06',1,1191871605),('relevant','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pragmatic','wiki','Creative Proposal 1 Dec 06',1,1191871605),('delivering','wiki','Creative Proposal 1 Dec 06',2,1191871605),('while','wiki','Creative Proposal 1 Dec 06',1,1191871605),('audience','wiki','Creative Proposal 1 Dec 06',14,1191871605),('experience','wiki','Creative Proposal 1 Dec 06',2,1191871605),('emotional','wiki','Creative Proposal 1 Dec 06',1,1191871605),('exciting,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('create','wiki','Creative Proposal 1 Dec 06',6,1191871605),('team','wiki','Creative Proposal 1 Dec 06',12,1191871605),('within','wiki','Creative Proposal 1 Dec 06',5,1191871605),('cultureâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('performance','wiki','Creative Proposal 1 Dec 06',12,1191871605),('“high','wiki','Creative Proposal 1 Dec 06',1,1191871605),('89.6\')','wiki','Production Task List',1,1166041367),('monitors','wiki','Production Task List',2,1166041367),('23.5\'','wiki','Production Task List',1,1166041367),('(physical','wiki','Production Task List',1,1166041367),('surround','wiki','Production Task List',1,1166041367),('20"','wiki','Production Task List',1,1166041367),('points','wiki','Production Task List',1,1166041367),('confirm','wiki','Production Task List',4,1166041367),('hang','wiki','Production Task List',1,1166041367),('(5x3)','wiki','Production Task List',1,1166041367),('create','wiki','Production Task List',4,1166041367),('tall','wiki','Production Task List',2,1166041367),('11"','wiki','Production Task List',1,1166041367),('30"wide','wiki','Production Task List',1,1166041367),('chris','wiki','Production Task List',1,1166041367),('layout','wiki','Production Task List',1,1166041367),('&','wiki','Production Task List',3,1166041367),('room','wiki','Production Task List',2,1166041367),('send','wiki','Production Task List',1,1166041367),('etc)','wiki','Production Task List',1,1166041367),('rigging','wiki','Production Task List',1,1166041367),('band?','wiki','Production Task List',2,1166041367),('(speakers','wiki','Production Task List',1,1166041367),('schematic)','wiki','Production Task List',1,1166041367),('(wiring','wiki','Production Task List',1,1166041367),('rigs','wiki','Production Task List',1,1166041367),('discreet','wiki','Production Task List',1,1166041367),('sure','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('make','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('men.','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('all,','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('mostly,','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('audience','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('that','wiki','Proposal Phone Conference 4 Dec 06',3,1166040858),('aware','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('need','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('elements','wiki','Proposal Phone Conference 4 Dec 06',5,1166040858),('integrate','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('like','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('would','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('approaches','wiki','Proposal Phone Conference 4 Dec 06',2,1166040858),('proposed','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('liked','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('overall:','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('feedback','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('notes','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('call','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('conf.','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('12/4/06','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('tech','wiki','Lorne Sept 18',2,1165618484),('flow','wiki','Lorne Sept 18',2,1165618484),('rich/ben','wiki','Lorne Sept 18',2,1165618484),('equipment','wiki','Lorne Sept 18',2,1165618484),('computers','wiki','Lorne Sept 18',2,1165618484),('viva','wiki','Lorne Sept 18',2,1165618484),('steve/rich','wiki','Lorne Sept 18',1,1165618484),('kerwyn','wiki','Lorne Sept 18',1,1165618484),('steve/lorne','wiki','Lorne Sept 18',1,1165618484),('gobos/signs/etc','wiki','Lorne Sept 18',1,1165618484),('elements:','wiki','Lorne Sept 18',1,1165618484),('steve/ben','wiki','Lorne Sept 18',1,1165618484),('meal','wiki','Lorne Sept 18',2,1165618484),('feeney','wiki','Lorne Sept 18',1,1165618484),('lori/jack','wiki','Lorne Sept 18',1,1165618484),('with','wiki','Lorne Sept 18',2,1165618484),('details','wiki','Lorne Sept 18',2,1165618484),('kivinski','wiki','Lorne Sept 18',1,1165618484),('steve/rich/lorne','wiki','Lorne Sept 18',1,1165618484),('confirm','wiki','Lorne Sept 18',2,1165618484),('truck','wiki','Lorne Sept 18',2,1165618484),('seating','wiki','Lorne Sept 18',2,1165618484),('staging','wiki','Lorne Sept 18',1,1165618484),('power','wiki','Lorne Sept 18',2,1165618484),('requests','wiki','Lorne Sept 18',2,1165618484),('hotel','wiki','Lorne Sept 18',1,1165618484),('security','wiki','Lorne Sept 18',2,1165618484),('plan','wiki','Lorne Sept 13',4,1166482384),('audio','wiki','Lorne Sept 13',5,1166482384),('escalator?','wiki','Lorne Sept 13',1,1166482384),('them','wiki','Lorne Sept 13',1,1166482384),('(talk','wiki','Lorne Sept 13',1,1166482384),('screen','wiki','Lorne Sept 13',2,1166482384),('load-in','wiki','Lorne Sept 13',1,1166482384),('center','wiki','Lorne Sept 13',2,1166482384),('conv','wiki','Lorne Sept 13',1,1166482384),('conf','wiki','Lorne Sept 13',1,1166482384),('person','wiki','Leadership Meeting',1,1166482408),('avaya','wiki','Leadership Meeting',2,1166482408),('rounds','wiki','Leadership Meeting',2,1166482408),('table','wiki','Leadership Meeting',5,1166482408),('more','wiki','Leadership Meeting',1,1166482408),('slightly','wiki','Leadership Meeting',1,1166482408),('maybe','wiki','Leadership Meeting',2,1166482408),('480,','wiki','Leadership Meeting',1,1166482408),('chairs','wiki','Leadership Meeting',1,1166482408),('round','wiki','Leadership Meeting',2,1166482408),('each','wiki','Leadership Meeting',1,1166482408),('drop','wiki','Leadership Meeting',1,1166482408),('electric','wiki','Leadership Meeting',1,1166482408),('need','wiki','Leadership Meeting',7,1166482408),('determine','wiki','Leadership Meeting',1,1166482408),('josh,','wiki','Leadership Meeting',2,1166482408),('with','wiki','Leadership Meeting',6,1166482408),('advance','wiki','Leadership Meeting',1,1166482408),('much','wiki','Leadership Meeting',1,1166482408),('lou/mike','wiki','Leadership Meeting',1,1166482408),('bit)','wiki','Leadership Meeting',1,1166482408),('rehearse','wiki','Leadership Meeting',1,1166482408),('(will','wiki','Leadership Meeting',1,1166482408),('charlie','wiki','Leadership Meeting',1,1166482408),('mike,','wiki','Leadership Meeting',1,1166482408),('lou,','wiki','Leadership Meeting',1,1166482408),('between','wiki','Leadership Meeting',1,1166482408),('rehearsals','wiki','Leadership Meeting',1,1166482408),('possible','wiki','Leadership Meeting',2,1166482408),('radios','wiki','Leadership Meeting',1,1166482408),('location???','wiki','Leadership Meeting',1,1166482408),('rehearsal','wiki','Leadership Meeting',1,1166482408),('offsite','wiki','Leadership Meeting',1,1166482408),('room','wiki','Leadership Meeting',4,1166482408),('operating','wiki','Leadership Meeting',1,1166482408),('network','wiki','Leadership Meeting',4,1166482408),('other','wiki','Leadership Meeting',4,1166482408),('covision','wiki','Leadership Meeting',2,1166482408),('call','wiki','Leadership Meeting',3,1166482408),('conference','wiki','Leadership Meeting',1,1166482408),('sept','wiki','Leadership Meeting',1,1166482408),('completely','wiki','Creative Proposal 5 Dec 06',1,1166559787),('creating','wiki','Creative Proposal 5 Dec 06',1,1166559787),('supplied','wiki','Creative Proposal 5 Dec 06',1,1166559787),('speakers\'','wiki','Creative Proposal 5 Dec 06',1,1166559787),('working','wiki','Creative Proposal 5 Dec 06',2,1166559787),('whether','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphics.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('compelling','wiki','Creative Proposal 5 Dec 06',1,1166559787),('artists','wiki','Creative Proposal 5 Dec 06',1,1166559787),('award-winning','wiki','Creative Proposal 5 Dec 06',1,1166559787),('hear.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('gathered','wiki','Creative Proposal 5 Dec 06',1,1166559787),('all,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('support.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('unparalleled','wiki','Creative Proposal 5 Dec 06',1,1166559787),('offering','wiki','Creative Proposal 5 Dec 06',1,1166559787),('prides','wiki','Creative Proposal 5 Dec 06',1,1166559787),('appropriate.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('needed','wiki','Creative Proposal 5 Dec 06',1,1166559787),('unity,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('slides,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('powerpoint?','wiki','Creative Proposal 5 Dec 06',2,1166559787),('speaker','wiki','Creative Proposal 5 Dec 06',7,1166559787),('materials,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('badges,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('name','wiki','Creative Proposal 5 Dec 06',1,1166559787),('signage,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('media,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('visual','wiki','Creative Proposal 5 Dec 06',2,1166559787),('consistent','wiki','Creative Proposal 5 Dec 06',1,1166559787),('remains','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphic','wiki','Creative Proposal 5 Dec 06',5,1166559787),('execute','wiki','Creative Proposal 5 Dec 06',1,1166559787),('effectively','wiki','Creative Proposal 5 Dec 06',1,1166559787),('support:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('presentation','wiki','Creative Proposal 5 Dec 06',1,1166559787),('events.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('cues','wiki','Creative Proposal 5 Dec 06',3,1166559787),('accuracy','wiki','Creative Proposal 5 Dec 06',1,1166559787),('program','wiki','Creative Proposal 5 Dec 06',1,1166559787),('updated','wiki','Creative Proposal 5 Dec 06',1,1166559787),('show—','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sheet','wiki','Creative Proposal 5 Dec 06',1,1166559787),('program.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('day’s','wiki','Creative Proposal 5 Dec 06',2,1166559787),('execution','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“approvalâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“cue-to-cueâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('daily','wiki','Creative Proposal 5 Dec 06',2,1166559787),('conduct','wiki','Creative Proposal 5 Dec 06',1,1166559787),('crew','wiki','Creative Proposal 5 Dec 06',1,1166559787),('services','wiki','Creative Proposal 5 Dec 06',2,1166559787),('program,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('implementation','wiki','Creative Proposal 5 Dec 06',1,1166559787),('flawless','wiki','Creative Proposal 5 Dec 06',1,1166559787),('behind','wiki','Creative Proposal 5 Dec 06',1,1166559787),('goes','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stage,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('control','wiki','Creative Proposal 5 Dec 06',1,1166559787),('together,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('right','wiki','Creative Proposal 5 Dec 06',1,1166559787),('supposed','wiki','Creative Proposal 5 Dec 06',1,1166559787),('ensure','wiki','Creative Proposal 5 Dec 06',2,1166559787),('vips.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('handle','wiki','Creative Proposal 5 Dec 06',1,1166559787),('assist','wiki','Creative Proposal 5 Dec 06',3,1166559787),('rehearsals,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('managers','wiki','Creative Proposal 5 Dec 06',1,1166559787),('constant','wiki','Creative Proposal 5 Dec 06',1,1166559787),('flawless.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sure','wiki','Creative Proposal 5 Dec 06',1,1166559787),('flow','wiki','Creative Proposal 5 Dec 06',2,1166559787),('pace','wiki','Creative Proposal 5 Dec 06',2,1166559787),('monitor','wiki','Creative Proposal 5 Dec 06',1,1166559787),('constantly','wiki','Creative Proposal 5 Dec 06',2,1166559787),('cue,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('transition,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('oversee','wiki','Creative Proposal 5 Dec 06',1,1166559787),('director','wiki','Creative Proposal 5 Dec 06',1,1166559787),('load-out.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('load-in','wiki','Creative Proposal 5 Dec 06',1,1166559787),('detail','wiki','Creative Proposal 5 Dec 06',1,1166559787),('manage','wiki','Creative Proposal 5 Dec 06',1,1166559787),('most','wiki','Creative Proposal 5 Dec 06',2,1166559787),('provide','wiki','Creative Proposal 5 Dec 06',4,1166559787),('broadway','wiki','Creative Proposal 5 Dec 06',1,1166559787),('professionalism','wiki','Creative Proposal 5 Dec 06',1,1166559787),('seamless','wiki','Creative Proposal 5 Dec 06',1,1166559787),('chair,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('director’s','wiki','Creative Proposal 5 Dec 06',1,1166559787),('development','wiki','Creative Proposal 5 Dec 06',1,1166559787),('renderings','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pictures','wiki','Creative Proposal 5 Dec 06',1,1166559787),('upload','wiki','Creative Proposal 5 Dec 06',1,1166559787),('site','wiki','Creative Proposal 5 Dec 06',1,1166559787),('online','wiki','Creative Proposal 5 Dec 06',1,1166559787),('times,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('phase','wiki','Creative Proposal 5 Dec 06',1,1166559787),('move','wiki','Creative Proposal 5 Dec 06',1,1166559787),('timelines,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('schedules','wiki','Creative Proposal 5 Dec 06',1,1166559787),('staff,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('optimum','wiki','Creative Proposal 5 Dec 06',1,1166559787),('assemble','wiki','Creative Proposal 5 Dec 06',1,1166559787),('plan,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('implement','wiki','Creative Proposal 5 Dec 06',1,1166559787),('staff','wiki','Creative Proposal 5 Dec 06',2,1166559787),('point,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('achieved.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('exceptional','wiki','Creative Proposal 5 Dec 06',1,1166559787),('until','wiki','Creative Proposal 5 Dec 06',1,1166559787),('design','wiki','Creative Proposal 5 Dec 06',2,1166559787),('iterative','wiki','Creative Proposal 5 Dec 06',1,1166559787),('begin','wiki','Creative Proposal 5 Dec 06',2,1166559787),('input,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('team’s','wiki','Creative Proposal 5 Dec 06',2,1166559787),('goals','wiki','Creative Proposal 5 Dec 06',1,1166559787),('fulfill','wiki','Creative Proposal 5 Dec 06',1,1166559787),('meet','wiki','Creative Proposal 5 Dec 06',1,1166559787),('process','wiki','Creative Proposal 5 Dec 06',2,1166559787),('collaborative','wiki','Creative Proposal 5 Dec 06',1,1166559787),('highly','wiki','Creative Proposal 5 Dec 06',1,1166559787),('side','wiki','Creative Proposal 5 Dec 06',1,1166559787),('continually','wiki','Creative Proposal 5 Dec 06',1,1166559787),('needs.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('match','wiki','Creative Proposal 5 Dec 06',1,1166559787),('personnel','wiki','Creative Proposal 5 Dec 06',1,1166559787),('skilled','wiki','Creative Proposal 5 Dec 06',1,1166559787),('technical','wiki','Creative Proposal 5 Dec 06',7,1166559787),('director,','wiki','Creative Proposal 5 Dec 06',3,1166559787),('producer,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('senior','wiki','Creative Proposal 5 Dec 06',1,1166559787),('project','wiki','Creative Proposal 5 Dec 06',2,1166559787),('assign','wiki','Creative Proposal 5 Dec 06',1,1166559787),('production,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('commence','wiki','Creative Proposal 5 Dec 06',1,1166559787),('light','wiki','Creative Proposal 5 Dec 06',1,1166559787),('green','wiki','Creative Proposal 5 Dec 06',1,1166559787),('receiving','wiki','Creative Proposal 5 Dec 06',1,1166559787),('upon','wiki','Creative Proposal 5 Dec 06',1,1166559787),('management','wiki','Creative Proposal 5 Dec 06',1,1166559787),('preproduction','wiki','Creative Proposal 5 Dec 06',1,1166559787),('services:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('production','wiki','Creative Proposal 5 Dec 06',10,1166559787),('viva’s','wiki','Creative Proposal 5 Dec 06',1,1166559787),('relaxing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('enjoy','wiki','Creative Proposal 5 Dec 06',1,1166559787),('while','wiki','Creative Proposal 5 Dec 06',1,1166559787),('forefront,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('keep','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tasteful','wiki','Creative Proposal 5 Dec 06',1,1166559787),('vineyard','wiki','Creative Proposal 5 Dec 06',1,1166559787),('grapes','wiki','Creative Proposal 5 Dec 06',1,1166559787),('cultivating','wiki','Creative Proposal 5 Dec 06',2,1166559787),('metaphors','wiki','Creative Proposal 5 Dec 06',1,1166559787),('draws','wiki','Creative Proposal 5 Dec 06',1,1166559787),('winemaker','wiki','Creative Proposal 5 Dec 06',1,1166559787),('itself,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('property','wiki','Creative Proposal 5 Dec 06',1,1166559787),('inspired','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tasting','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wine','wiki','Creative Proposal 5 Dec 06',1,1166559787),('minute)','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(5-10','wiki','Creative Proposal 5 Dec 06',1,1166559787),('messaging.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('present','wiki','Creative Proposal 5 Dec 06',2,1166559787),('events','wiki','Creative Proposal 5 Dec 06',3,1166559787),('mingle,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('guests','wiki','Creative Proposal 5 Dec 06',1,1166559787),('casual','wiki','Creative Proposal 5 Dec 06',1,1166559787),('intended','wiki','Creative Proposal 5 Dec 06',1,1166559787),('dinners','wiki','Creative Proposal 5 Dec 06',1,1166559787),('although','wiki','Creative Proposal 5 Dec 06',1,1166559787),('teambuilding:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('enhancement','wiki','Creative Proposal 5 Dec 06',1,1166559787),('evening','wiki','Creative Proposal 5 Dec 06',2,1166559787),('setting.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('ballroom','wiki','Creative Proposal 5 Dec 06',1,1166559787),('implemented','wiki','Creative Proposal 5 Dec 06',1,1166559787),('teams,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('races','wiki','Creative Proposal 5 Dec 06',1,1166559787),('culminates','wiki','Creative Proposal 5 Dec 06',1,1166559787),('90-minute','wiki','Creative Proposal 5 Dec 06',1,1166559787),('success.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('communication','wiki','Creative Proposal 5 Dec 06',2,1166559787),('solving,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('problem','wiki','Creative Proposal 5 Dec 06',1,1166559787),('innovation,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('teamwork,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('edge.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('winning','wiki','Creative Proposal 5 Dec 06',1,1166559787),('gain','wiki','Creative Proposal 5 Dec 06',1,1166559787),('figure','wiki','Creative Proposal 5 Dec 06',1,1166559787),('cars.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('release','wiki','Creative Proposal 5 Dec 06',1,1166559787),('then','wiki','Creative Proposal 5 Dec 06',4,1166559787),('overview','wiki','Creative Proposal 5 Dec 06',1,1166559787),('brief','wiki','Creative Proposal 5 Dec 06',2,1166559787),('give','wiki','Creative Proposal 5 Dec 06',1,1166559787),('more.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('uniforms,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('decorations,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tape,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('heavy','wiki','Creative Proposal 5 Dec 06',1,1166559787),('glue,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('bolts,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('nuts','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wheels,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('like','wiki','Creative Proposal 5 Dec 06',1,1166559787),('components','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tools,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('instructions,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('race','wiki','Creative Proposal 5 Dec 06',2,1166559787),('includes:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('car-kit','wiki','Creative Proposal 5 Dec 06',1,1166559787),('receive','wiki','Creative Proposal 5 Dec 06',1,1166559787),('racecars.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('actually','wiki','Creative Proposal 5 Dec 06',1,1166559787),('which','wiki','Creative Proposal 5 Dec 06',3,1166559787),('experience','wiki','Creative Proposal 5 Dec 06',1,1166559787),('consider','wiki','Creative Proposal 5 Dec 06',2,1166559787),('driving','wiki','Creative Proposal 5 Dec 06',1,1166559787),('metaphor','wiki','Creative Proposal 5 Dec 06',1,1166559787),('building:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('racecar','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wins!','wiki','Creative Proposal 5 Dec 06',1,1166559787),('away','wiki','Creative Proposal 5 Dec 06',1,1166559787),('farthest','wiki','Creative Proposal 5 Dec 06',1,1166559787),('uprights','wiki','Creative Proposal 5 Dec 06',1,1166559787),('ball','wiki','Creative Proposal 5 Dec 06',1,1166559787),('puts','wiki','Creative Proposal 5 Dec 06',1,1166559787),('whose','wiki','Creative Proposal 5 Dec 06',1,1166559787),('where','wiki','Creative Proposal 5 Dec 06',3,1166559787),('competition','wiki','Creative Proposal 5 Dec 06',1,1166559787),('ends','wiki','Creative Proposal 5 Dec 06',1,1166559787),('victorious.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('resources','wiki','Creative Proposal 5 Dec 06',1,1166559787),('available','wiki','Creative Proposal 5 Dec 06',1,1166559787),('traits','wiki','Creative Proposal 5 Dec 06',1,1166559787),('utilize','wiki','Creative Proposal 5 Dec 06',4,1166559787),('communicates','wiki','Creative Proposal 5 Dec 06',1,1166559787),('best','wiki','Creative Proposal 5 Dec 06',3,1166559787),('achieves','wiki','Creative Proposal 5 Dec 06',1,1166559787),('machine','wiki','Creative Proposal 5 Dec 06',1,1166559787),('game.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('order','wiki','Creative Proposal 5 Dec 06',1,1166559787),('posts','wiki','Creative Proposal 5 Dec 06',1,1166559787),('goal','wiki','Creative Proposal 5 Dec 06',1,1166559787),('football','wiki','Creative Proposal 5 Dec 06',1,1166559787),('propel','wiki','Creative Proposal 5 Dec 06',1,1166559787),('explain','wiki','Creative Proposal 5 Dec 06',1,1166559787),('facilitator','wiki','Creative Proposal 5 Dec 06',2,1166559787),('decorations.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('connectors,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('wood,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('string,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('springs,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('spoons,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('plastic','wiki','Creative Proposal 5 Dec 06',2,1166559787),('catapult','wiki','Creative Proposal 5 Dec 06',3,1166559787),('challenges','wiki','Creative Proposal 5 Dec 06',1,1166559787),('team','wiki','Creative Proposal 5 Dec 06',12,1166559787),('relevant','wiki','Creative Proposal 5 Dec 06',1,1166559787),('another','wiki','Creative Proposal 5 Dec 06',2,1166559787),('mind,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('bowl.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('super','wiki','Creative Proposal 5 Dec 06',1,1166559787),('weekend','wiki','Creative Proposal 5 Dec 06',1,1166559787),('uprights:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('communication!','wiki','Creative Proposal 5 Dec 06',1,1166559787),('verbal','wiki','Creative Proposal 5 Dec 06',1,1166559787),('without','wiki','Creative Proposal 5 Dec 06',1,1166559787),('seconds','wiki','Creative Proposal 5 Dec 06',1,1166559787),('have','wiki','Creative Proposal 5 Dec 06',1,1166559787),('period,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('planning','wiki','Creative Proposal 5 Dec 06',1,1166559787),('catch','wiki','Creative Proposal 5 Dec 06',1,1166559787),('provided.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sets','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tinker-toy','wiki','Creative Proposal 5 Dec 06',1,1166559787),('structure','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tallest','wiki','Creative Proposal 5 Dec 06',1,1166559787),('told','wiki','Creative Proposal 5 Dec 06',1,1166559787),('groups','wiki','Creative Proposal 5 Dec 06',2,1166559787),('divide','wiki','Creative Proposal 5 Dec 06',2,1166559787),('activity.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('focus','wiki','Creative Proposal 5 Dec 06',1,1166559787),('achieve','wiki','Creative Proposal 5 Dec 06',3,1166559787),('teams','wiki','Creative Proposal 5 Dec 06',4,1166559787),('tower:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('triumph','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tinker','wiki','Creative Proposal 5 Dec 06',1,1166559787),('message.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('maximize','wiki','Creative Proposal 5 Dec 06',1,1166559787),('discover','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pleased','wiki','Creative Proposal 5 Dec 06',2,1166559787),('appropriate','wiki','Creative Proposal 5 Dec 06',1,1166559787),('none','wiki','Creative Proposal 5 Dec 06',1,1166559787),('activities,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('possible','wiki','Creative Proposal 5 Dec 06',2,1166559787),('sampling','wiki','Creative Proposal 5 Dec 06',1,1166559787),('consideration.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('activities','wiki','Creative Proposal 5 Dec 06',1,1166559787),('following','wiki','Creative Proposal 5 Dec 06',1,1166559787),('theme,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('remainder','wiki','Creative Proposal 5 Dec 06',1,1166559787),('teamwork','wiki','Creative Proposal 5 Dec 06',1,1166559787),('collaboration','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tone','wiki','Creative Proposal 5 Dec 06',1,1166559787),('break','wiki','Creative Proposal 5 Dec 06',1,1166559787),('activity','wiki','Creative Proposal 5 Dec 06',6,1166559787),('opportunity','wiki','Creative Proposal 5 Dec 06',3,1166559787),('presents','wiki','Creative Proposal 5 Dec 06',1,1166559787),('discussed,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('activities:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('teambuilding','wiki','Creative Proposal 5 Dec 06',3,1166559787),('members!','wiki','Creative Proposal 5 Dec 06',1,1166559787),('even','wiki','Creative Proposal 5 Dec 06',2,1166559787),('execution,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('moments','wiki','Creative Proposal 5 Dec 06',1,1166559787),('penalties,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('showing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('2006,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('plays','wiki','Creative Proposal 5 Dec 06',1,1166559787),('highlighting','wiki','Creative Proposal 5 Dec 06',2,1166559787),('example,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('effects.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('event','wiki','Creative Proposal 5 Dec 06',3,1166559787),('sporting','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tool,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('monitor.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('screen','wiki','Creative Proposal 5 Dec 06',1,1166559787),('touch','wiki','Creative Proposal 5 Dec 06',2,1166559787),('tablet','wiki','Creative Proposal 5 Dec 06',1,1166559787),('drawing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('controlled','wiki','Creative Proposal 5 Dec 06',1,1166559787),('time','wiki','Creative Proposal 5 Dec 06',1,1166559787),('real','wiki','Creative Proposal 5 Dec 06',2,1166559787),('using','wiki','Creative Proposal 5 Dec 06',2,1166559787),('technology,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“sketchpadâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('presenters','wiki','Creative Proposal 5 Dec 06',4,1166559787),('additionally,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('telestrator','wiki','Creative Proposal 5 Dec 06',2,1166559787),('lessons.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('codify','wiki','Creative Proposal 5 Dec 06',1,1166559787),('seek','wiki','Creative Proposal 5 Dec 06',1,1166559787),('helpful','wiki','Creative Proposal 5 Dec 06',1,1166559787),('particularly','wiki','Creative Proposal 5 Dec 06',1,1166559787),('weave','wiki','Creative Proposal 5 Dec 06',1,1166559787),('scattergram.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('plotted','wiki','Creative Proposal 5 Dec 06',1,1166559787),('results','wiki','Creative Proposal 5 Dec 06',1,1166559787),('criteria','wiki','Creative Proposal 5 Dec 06',1,1166559787),('against','wiki','Creative Proposal 5 Dec 06',1,1166559787),('issues','wiki','Creative Proposal 5 Dec 06',1,1166559787),('assess','wiki','Creative Proposal 5 Dec 06',1,1166559787),('mapping','wiki','Creative Proposal 5 Dec 06',1,1166559787),('listings,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('prioritize','wiki','Creative Proposal 5 Dec 06',1,1166559787),('your','wiki','Creative Proposal 5 Dec 06',21,1166559787),('poll','wiki','Creative Proposal 5 Dec 06',1,1166559787),('allow','wiki','Creative Proposal 5 Dec 06',1,1166559787),('applications','wiki','Creative Proposal 5 Dec 06',1,1166559787),('ranking','wiki','Creative Proposal 5 Dec 06',1,1166559787),('priority','wiki','Creative Proposal 5 Dec 06',1,1166559787),('questions,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('choice','wiki','Creative Proposal 5 Dec 06',1,1166559787),('multiple','wiki','Creative Proposal 5 Dec 06',3,1166559787),('capability','wiki','Creative Proposal 5 Dec 06',1,1166559787),('charts.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphs,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pencil','wiki','Creative Proposal 5 Dec 06',1,1166559787),('charts,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('including','wiki','Creative Proposal 5 Dec 06',2,1166559787),('displayed,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('immediately','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphs','wiki','Creative Proposal 5 Dec 06',1,1166559787),('result','wiki','Creative Proposal 5 Dec 06',1,1166559787),('many','wiki','Creative Proposal 5 Dec 06',1,1166559787),('applications.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('game','wiki','Creative Proposal 5 Dec 06',1,1166559787),('well','wiki','Creative Proposal 5 Dec 06',2,1166559787),('audience,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('quizzing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('allows','wiki','Creative Proposal 5 Dec 06',2,1166559787),('executive','wiki','Creative Proposal 5 Dec 06',2,1166559787),('valuable','wiki','Creative Proposal 5 Dec 06',1,1166559787),('prove','wiki','Creative Proposal 5 Dec 06',2,1166559787),('abilities','wiki','Creative Proposal 5 Dec 06',1,1166559787),('polling','wiki','Creative Proposal 5 Dec 06',2,1166559787),('capture','wiki','Creative Proposal 5 Dec 06',1,1166559787),('data','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sophisticated','wiki','Creative Proposal 5 Dec 06',1,1166559787),('delivers','wiki','Creative Proposal 5 Dec 06',1,1166559787),('retention','wiki','Creative Proposal 5 Dec 06',1,1166559787),('boosts','wiki','Creative Proposal 5 Dec 06',1,1166559787),('interactivity,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('demand','wiki','Creative Proposal 5 Dec 06',2,1166559787),('technology','wiki','Creative Proposal 5 Dec 06',3,1166559787),('does','wiki','Creative Proposal 5 Dec 06',1,1166559787),('only','wiki','Creative Proposal 5 Dec 06',3,1166559787),('attendee.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('systems','wiki','Creative Proposal 5 Dec 06',1,1166559787),('through','wiki','Creative Proposal 5 Dec 06',6,1166559787),('interactivity','wiki','Creative Proposal 5 Dec 06',1,1166559787),('addition','wiki','Creative Proposal 5 Dec 06',1,1166559787),('vital,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('during','wiki','Creative Proposal 5 Dec 06',3,1166559787),('interest','wiki','Creative Proposal 5 Dec 06',1,1166559787),('critical','wiki','Creative Proposal 5 Dec 06',2,1166559787),('one,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('system:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('response','wiki','Creative Proposal 5 Dec 06',2,1166559787),('technologies:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('below','wiki','Creative Proposal 5 Dec 06',1,1166559787),('message,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('engaged','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stays','wiki','Creative Proposal 5 Dec 06',1,1166559787),('liven','wiki','Creative Proposal 5 Dec 06',1,1166559787),('engaging.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('interactive','wiki','Creative Proposal 5 Dec 06',4,1166559787),('kept','wiki','Creative Proposal 5 Dec 06',1,1166559787),('presentations','wiki','Creative Proposal 5 Dec 06',3,1166559787),('information','wiki','Creative Proposal 5 Dec 06',1,1166559787),('retain','wiki','Creative Proposal 5 Dec 06',1,1166559787),('interactivity:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('act.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('reprise','wiki','Creative Proposal 5 Dec 06',1,1166559787),('messages.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('powerfully','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pre-produced','wiki','Creative Proposal 5 Dec 06',1,1166559787),('leader,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('future,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('attendee','wiki','Creative Proposal 5 Dec 06',1,1166559787),('every','wiki','Creative Proposal 5 Dec 06',5,1166559787),('thingsâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“top','wiki','Creative Proposal 5 Dec 06',1,1166559787),('recap','wiki','Creative Proposal 5 Dec 06',1,1166559787),('finale,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('excitement,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('shows','wiki','Creative Proposal 5 Dec 06',1,1166559787),('edited','wiki','Creative Proposal 5 Dec 06',1,1166559787),('event.','wiki','Creative Proposal 5 Dec 06',4,1166559787),('course','wiki','Creative Proposal 5 Dec 06',1,1166559787),('over','wiki','Creative Proposal 5 Dec 06',1,1166559787),('experienced','wiki','Creative Proposal 5 Dec 06',3,1166559787),('what','wiki','Creative Proposal 5 Dec 06',4,1166559787),('include','wiki','Creative Proposal 5 Dec 06',2,1166559787),('dvd).','wiki','Creative Proposal 5 Dec 06',1,1166559787),('distribution','wiki','Creative Proposal 5 Dec 06',1,1166559787),('positing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(also','wiki','Creative Proposal 5 Dec 06',1,1166559787),('attendees.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('motivate','wiki','Creative Proposal 5 Dec 06',1,1166559787),('further','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tool','wiki','Creative Proposal 5 Dec 06',1,1166559787),('candids','wiki','Creative Proposal 5 Dec 06',1,1166559787),('on-site','wiki','Creative Proposal 5 Dec 06',6,1166559787),('inclusion','wiki','Creative Proposal 5 Dec 06',2,1166559787),('propose','wiki','Creative Proposal 5 Dec 06',2,1166559787),('sendoff,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('tool-kit','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(2-3','wiki','Creative Proposal 5 Dec 06',1,1166559787),('closing','wiki','Creative Proposal 5 Dec 06',3,1166559787),('it’s','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stand','wiki','Creative Proposal 5 Dec 06',1,1166559787),('able','wiki','Creative Proposal 5 Dec 06',2,1166559787),('story.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('power','wiki','Creative Proposal 5 Dec 06',1,1166559787),('facilities','wiki','Creative Proposal 5 Dec 06',1,1166559787),('products,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('offices,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphics,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('style.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('engaging','wiki','Creative Proposal 5 Dec 06',1,1166559787),('offices','wiki','Creative Proposal 5 Dec 06',1,1166559787),('on-location','wiki','Creative Proposal 5 Dec 06',1,1166559787),('shot','wiki','Creative Proposal 5 Dec 06',2,1166559787),('interviews','wiki','Creative Proposal 5 Dec 06',1,1166559787),('communities.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('relationships,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('lives,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('patient’s','wiki','Creative Proposal 5 Dec 06',1,1166559787),('make','wiki','Creative Proposal 5 Dec 06',3,1166559787),('employees,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('actual','wiki','Creative Proposal 5 Dec 06',2,1166559787),('vital','wiki','Creative Proposal 5 Dec 06',1,1166559787),('day.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('business','wiki','Creative Proposal 5 Dec 06',2,1166559787),('bring','wiki','Creative Proposal 5 Dec 06',1,1166559787),('commitment','wiki','Creative Proposal 5 Dec 06',1,1166559787),('personal','wiki','Creative Proposal 5 Dec 06',1,1166559787),('discipline','wiki','Creative Proposal 5 Dec 06',1,1166559787),('creativity,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('people','wiki','Creative Proposal 5 Dec 06',1,1166559787),('advantage','wiki','Creative Proposal 5 Dec 06',1,1166559787),('competitive','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pharmaceuticals’','wiki','Creative Proposal 5 Dec 06',1,1166559787),('emphasizing','wiki','Creative Proposal 5 Dec 06',2,1166559787),('positioning,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('employee','wiki','Creative Proposal 5 Dec 06',1,1166559787),('strengthen','wiki','Creative Proposal 5 Dec 06',2,1166559787),('proud,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('substantive,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('element','wiki','Creative Proposal 5 Dec 06',1,1166559787),('kick-off','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(3-4','wiki','Creative Proposal 5 Dec 06',1,1166559787),('difference','wiki','Creative Proposal 5 Dec 06',2,1166559787),('“our','wiki','Creative Proposal 5 Dec 06',1,1166559787),('music.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stock','wiki','Creative Proposal 5 Dec 06',1,1166559787),('narration,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphics/animations,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('video.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('linked','wiki','Creative Proposal 5 Dec 06',1,1166559787),('individual','wiki','Creative Proposal 5 Dec 06',2,1166559787),('either','wiki','Creative Proposal 5 Dec 06',2,1166559787),('beyond','wiki','Creative Proposal 5 Dec 06',2,1166559787),('live','wiki','Creative Proposal 5 Dec 06',3,1166559787),('style','wiki','Creative Proposal 5 Dec 06',1,1166559787),('clean','wiki','Creative Proposal 5 Dec 06',1,1166559787),('crisp,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('produced','wiki','Creative Proposal 5 Dec 06',1,1166559787),('attendance.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('leadershipâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“language','wiki','Creative Proposal 5 Dec 06',1,1166559787),('common','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sessions','wiki','Creative Proposal 5 Dec 06',2,1166559787),('speakers','wiki','Creative Proposal 5 Dec 06',4,1166559787),('played','wiki','Creative Proposal 5 Dec 06',2,1166559787),('could','wiki','Creative Proposal 5 Dec 06',5,1166559787),('king.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('exemplary','wiki','Creative Proposal 5 Dec 06',1,1166559787),('practices','wiki','Creative Proposal 5 Dec 06',1,1166559787),('functions','wiki','Creative Proposal 5 Dec 06',1,1166559787),('five','wiki','Creative Proposal 5 Dec 06',1,1166559787),('motivational','wiki','Creative Proposal 5 Dec 06',1,1166559787),('thanks.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('heads?','wiki','Creative Proposal 5 Dec 06',1,1166559787),('talking','wiki','Creative Proposal 5 Dec 06',2,1166559787),('each)','wiki','Creative Proposal 5 Dec 06',1,1166559787),('minute','wiki','Creative Proposal 5 Dec 06',4,1166559787),('(:30','wiki','Creative Proposal 5 Dec 06',1,1166559787),('vignettes','wiki','Creative Proposal 5 Dec 06',3,1166559787),('possible).','wiki','Creative Proposal 5 Dec 06',1,1166559787),('client,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('provided','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(b-roll','wiki','Creative Proposal 5 Dec 06',1,1166559787),('points','wiki','Creative Proposal 5 Dec 06',1,1166559787),('story','wiki','Creative Proposal 5 Dec 06',1,1166559787),('support','wiki','Creative Proposal 5 Dec 06',6,1166559787),('assets','wiki','Creative Proposal 5 Dec 06',1,1166559787),('b-roll','wiki','Creative Proposal 5 Dec 06',2,1166559787),('animations,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('post-produced','wiki','Creative Proposal 5 Dec 06',1,1166559787),('organization.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('“playersâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('2006.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('successes','wiki','Creative Proposal 5 Dec 06',1,1166559787),('greatest','wiki','Creative Proposal 5 Dec 06',2,1166559787),('highlights','wiki','Creative Proposal 5 Dec 06',2,1166559787),('succinctly','wiki','Creative Proposal 5 Dec 06',1,1166559787),('package','wiki','Creative Proposal 5 Dec 06',1,1166559787),('narrated','wiki','Creative Proposal 5 Dec 06',1,1166559787),('upbeat,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('review.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('pharmaceutical’s','wiki','Creative Proposal 5 Dec 06',1,1166559787),('story:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('leading','wiki','Creative Proposal 5 Dec 06',1,1166559787),('introduces','wiki','Creative Proposal 5 Dec 06',1,1166559787),('minutes)','wiki','Creative Proposal 5 Dec 06',3,1166559787),('(3-5','wiki','Creative Proposal 5 Dec 06',1,1166559787),('video:','wiki','Creative Proposal 5 Dec 06',2,1166559787),('review','wiki','Creative Proposal 5 Dec 06',2,1166559787),('year','wiki','Creative Proposal 5 Dec 06',2,1166559787),('example:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('content.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('core','wiki','Creative Proposal 5 Dec 06',3,1166559787),('other','wiki','Creative Proposal 5 Dec 06',5,1166559787),('presenters,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('sessions,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('each','wiki','Creative Proposal 5 Dec 06',8,1166559787),('lines','wiki','Creative Proposal 5 Dec 06',1,1166559787),('scripted','wiki','Creative Proposal 5 Dec 06',1,1166559787),('delivering','wiki','Creative Proposal 5 Dec 06',1,1166559787),('hostâ€','wiki','Creative Proposal 5 Dec 06',2,1166559787),('“on-camera','wiki','Creative Proposal 5 Dec 06',2,1166559787),('pre-taped','wiki','Creative Proposal 5 Dec 06',2,1166559787),('incorporates','wiki','Creative Proposal 5 Dec 06',1,1166559787),('approach','wiki','Creative Proposal 5 Dec 06',1,1166559787),('positioning.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('brand','wiki','Creative Proposal 5 Dec 06',2,1166559787),('reinforce','wiki','Creative Proposal 5 Dec 06',2,1166559787),('monitors','wiki','Creative Proposal 5 Dec 06',1,1166559787),('display','wiki','Creative Proposal 5 Dec 06',1,1166559787),('plasma','wiki','Creative Proposal 5 Dec 06',1,1166559787),('graphics','wiki','Creative Proposal 5 Dec 06',9,1166559787),('custom','wiki','Creative Proposal 5 Dec 06',4,1166559787),('branding.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('incorporate','wiki','Creative Proposal 5 Dec 06',2,1166559787),('would','wiki','Creative Proposal 5 Dec 06',3,1166559787),('itself','wiki','Creative Proposal 5 Dec 06',2,1166559787),('show.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('espn','wiki','Creative Proposal 5 Dec 06',1,1166559787),('feel','wiki','Creative Proposal 5 Dec 06',1,1166559787),('look','wiki','Creative Proposal 5 Dec 06',4,1166559787),('branded','wiki','Creative Proposal 5 Dec 06',1,1166559787),('slick,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('imagine','wiki','Creative Proposal 5 Dec 06',1,1166559787),('bumpers.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('videos','wiki','Creative Proposal 5 Dec 06',3,1166559787),('format','wiki','Creative Proposal 5 Dec 06',1,1166559787),('styleâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('news','wiki','Creative Proposal 5 Dec 06',3,1166559787),('"sports','wiki','Creative Proposal 5 Dec 06',1,1166559787),('speakers.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('dynamically','wiki','Creative Proposal 5 Dec 06',1,1166559787),('content','wiki','Creative Proposal 5 Dec 06',3,1166559787),('introduce','wiki','Creative Proposal 5 Dec 06',3,1166559787),('preview','wiki','Creative Proposal 5 Dec 06',1,1166559787),('designed','wiki','Creative Proposal 5 Dec 06',1,1166559787),('messages','wiki','Creative Proposal 5 Dec 06',2,1166559787),('thematic','wiki','Creative Proposal 5 Dec 06',3,1166559787),('deliver','wiki','Creative Proposal 5 Dec 06',3,1166559787),('these','wiki','Creative Proposal 5 Dec 06',11,1166559787),('presenters.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('between','wiki','Creative Proposal 5 Dec 06',4,1166559787),('inserted','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“vignettesâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“bumpersâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('small','wiki','Creative Proposal 5 Dec 06',3,1166559787),('several','wiki','Creative Proposal 5 Dec 06',1,1166559787),('video,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('contentâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“major','wiki','Creative Proposal 5 Dec 06',1,1166559787),('envision','wiki','Creative Proposal 5 Dec 06',3,1166559787),('conference.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('throughout','wiki','Creative Proposal 5 Dec 06',3,1166559787),('energy','wiki','Creative Proposal 5 Dec 06',3,1166559787),('maintain','wiki','Creative Proposal 5 Dec 06',2,1166559787),('help','wiki','Creative Proposal 5 Dec 06',5,1166559787),('elements','wiki','Creative Proposal 5 Dec 06',5,1166559787),('various','wiki','Creative Proposal 5 Dec 06',1,1166559787),('creation','wiki','Creative Proposal 5 Dec 06',1,1166559787),('proposes','wiki','Creative Proposal 5 Dec 06',4,1166559787),('viva','wiki','Creative Proposal 5 Dec 06',7,1166559787),('opening,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('such','wiki','Creative Proposal 5 Dec 06',2,1166559787),('after','wiki','Creative Proposal 5 Dec 06',7,1166559787),('elements:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('video/animated','wiki','Creative Proposal 5 Dec 06',1,1166559787),('proposed','wiki','Creative Proposal 5 Dec 06',3,1166559787),('2007.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('objectives','wiki','Creative Proposal 5 Dec 06',1,1166559787),('discussion','wiki','Creative Proposal 5 Dec 06',1,1166559787),('into','wiki','Creative Proposal 5 Dec 06',4,1166559787),('segue','wiki','Creative Proposal 5 Dec 06',1,1166559787),('piece.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('culture,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('message','wiki','Creative Proposal 5 Dec 06',6,1166559787),('home','wiki','Creative Proposal 5 Dec 06',1,1166559787),('drive','wiki','Creative Proposal 5 Dec 06',3,1166559787),('markison','wiki','Creative Proposal 5 Dec 06',1,1166559787),('brian','wiki','Creative Proposal 5 Dec 06',1,1166559787),('concludes,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('executives.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('from','wiki','Creative Proposal 5 Dec 06',8,1166559787),('bytes','wiki','Creative Proposal 5 Dec 06',3,1166559787),('interview','wiki','Creative Proposal 5 Dec 06',1,1166559787),('prerecorded','wiki','Creative Proposal 5 Dec 06',1,1166559787),('incorporating','wiki','Creative Proposal 5 Dec 06',2,1166559787),('also','wiki','Creative Proposal 5 Dec 06',5,1166559787),('perhaps','wiki','Creative Proposal 5 Dec 06',1,1166559787),('about','wiki','Creative Proposal 5 Dec 06',3,1166559787),('montage','wiki','Creative Proposal 5 Dec 06',1,1166559787),('high-energy','wiki','Creative Proposal 5 Dec 06',3,1166559787),('crescendo','wiki','Creative Proposal 5 Dec 06',1,1166559787),('music','wiki','Creative Proposal 5 Dec 06',3,1166559787),('logo.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pharmaceuticals','wiki','Creative Proposal 5 Dec 06',1,1166559787),('life','wiki','Creative Proposal 5 Dec 06',2,1166559787),('comes','wiki','Creative Proposal 5 Dec 06',2,1166559787),('entire','wiki','Creative Proposal 5 Dec 06',1,1166559787),('placed,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('final','wiki','Creative Proposal 5 Dec 06',3,1166559787),('eyes.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('audiences’','wiki','Creative Proposal 5 Dec 06',1,1166559787),('before','wiki','Creative Proposal 5 Dec 06',1,1166559787),('blocks','wiki','Creative Proposal 5 Dec 06',1,1166559787),('assembling','wiki','Creative Proposal 5 Dec 06',1,1166559787),('literally','wiki','Creative Proposal 5 Dec 06',1,1166559787),('onstage','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wall','wiki','Creative Proposal 5 Dec 06',2,1166559787),('continues','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pharmaceuticals.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('part','wiki','Creative Proposal 5 Dec 06',2,1166559787),('proud','wiki','Creative Proposal 5 Dec 06',1,1166559787),('makes','wiki','Creative Proposal 5 Dec 06',1,1166559787),('visuals','wiki','Creative Proposal 5 Dec 06',2,1166559787),('performance,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('inspires','wiki','Creative Proposal 5 Dec 06',1,1166559787),('great','wiki','Creative Proposal 5 Dec 06',2,1166559787),('them','wiki','Creative Proposal 5 Dec 06',3,1166559787),('motivates','wiki','Creative Proposal 5 Dec 06',1,1166559787),('imagery','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sees','wiki','Creative Proposal 5 Dec 06',2,1166559787),('audience','wiki','Creative Proposal 5 Dec 06',9,1166559787),('voices.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sound','wiki','Creative Proposal 5 Dec 06',4,1166559787),('infused','wiki','Creative Proposal 5 Dec 06',1,1166559787),('soundtrack','wiki','Creative Proposal 5 Dec 06',1,1166559787),('etc).','wiki','Creative Proposal 5 Dec 06',1,1166559787),('social','wiki','Creative Proposal 5 Dec 06',2,1166559787),('political','wiki','Creative Proposal 5 Dec 06',1,1166559787),('leaders,','wiki','Creative Proposal 5 Dec 06',4,1166559787),('(sports','wiki','Creative Proposal 5 Dec 06',1,1166559787),('quotations','wiki','Creative Proposal 5 Dec 06',1,1166559787),('powerful','wiki','Creative Proposal 5 Dec 06',4,1166559787),('inspirational,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('saying','wiki','Creative Proposal 5 Dec 06',1,1166559787),('famous','wiki','Creative Proposal 5 Dec 06',1,1166559787),('footage','wiki','Creative Proposal 5 Dec 06',3,1166559787),('they','wiki','Creative Proposal 5 Dec 06',7,1166559787),('around','wiki','Creative Proposal 5 Dec 06',1,1166559787),('boxes','wiki','Creative Proposal 5 Dec 06',2,1166559787),('more','wiki','Creative Proposal 5 Dec 06',2,1166559787),('stack','wiki','Creative Proposal 5 Dec 06',1,1166559787),('within','wiki','Creative Proposal 5 Dec 06',4,1166559787),('playing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('image','wiki','Creative Proposal 5 Dec 06',1,1166559787),('video','wiki','Creative Proposal 5 Dec 06',17,1166559787),('place,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('instant','wiki','Creative Proposal 5 Dec 06',2,1166559787),('center','wiki','Creative Proposal 5 Dec 06',1,1166559787),('large','wiki','Creative Proposal 5 Dec 06',2,1166559787),('places','wiki','Creative Proposal 5 Dec 06',1,1166559787),('performer','wiki','Creative Proposal 5 Dec 06',1,1166559787),('onstage…','wiki','Creative Proposal 5 Dec 06',1,1166559787),('something','wiki','Creative Proposal 5 Dec 06',1,1166559787),('start','wiki','Creative Proposal 5 Dec 06',1,1166559787),('music,','wiki','Creative Proposal 5 Dec 06',4,1166559787),('choreography','wiki','Creative Proposal 5 Dec 06',2,1166559787),('perfect','wiki','Creative Proposal 5 Dec 06',2,1166559787),('boxes.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('metal-frame','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sized','wiki','Creative Proposal 5 Dec 06',1,1166559787),('different','wiki','Creative Proposal 5 Dec 06',2,1166559787),('others','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pipe,','wiki','Creative Proposal 5 Dec 06',2,1166559787),('pieces','wiki','Creative Proposal 5 Dec 06',1,1166559787),('carry','wiki','Creative Proposal 5 Dec 06',2,1166559787),('some','wiki','Creative Proposal 5 Dec 06',2,1166559787),('screens.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('imag','wiki','Creative Proposal 5 Dec 06',1,1166559787),('show','wiki','Creative Proposal 5 Dec 06',4,1166559787),('their','wiki','Creative Proposal 5 Dec 06',6,1166559787),('shots','wiki','Creative Proposal 5 Dec 06',1,1166559787),('close','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stage.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('costumes','wiki','Creative Proposal 5 Dec 06',1,1166559787),('construction','wiki','Creative Proposal 5 Dec 06',1,1166559787),('performers','wiki','Creative Proposal 5 Dec 06',4,1166559787),('rhythmic','wiki','Creative Proposal 5 Dec 06',1,1166559787),('group','wiki','Creative Proposal 5 Dec 06',2,1166559787),('full','wiki','Creative Proposal 5 Dec 06',2,1166559787),('escalates','wiki','Creative Proposal 5 Dec 06',1,1166559787),('song','wiki','Creative Proposal 5 Dec 06',3,1166559787),('song.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('original','wiki','Creative Proposal 5 Dec 06',5,1166559787),('energizing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('come','wiki','Creative Proposal 5 Dec 06',2,1166559787),('saws','wiki','Creative Proposal 5 Dec 06',1,1166559787),('hammers,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('drills,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('black.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('seated,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('when','wiki','Creative Proposal 5 Dec 06',4,1166559787),('k–i–n–g?.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('outline','wiki','Creative Proposal 5 Dec 06',1,1166559787),('form','wiki','Creative Proposal 5 Dec 06',2,1166559787),('buildings','wiki','Creative Proposal 5 Dec 06',1,1166559787),('edges','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“skylineâ€','wiki','Creative Proposal 5 Dec 06',1,1166559787),('abstract','wiki','Creative Proposal 5 Dec 06',1,1166559787),('backdrop','wiki','Creative Proposal 5 Dec 06',1,1166559787),('set.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stage','wiki','Creative Proposal 5 Dec 06',3,1166559787),('highlight','wiki','Creative Proposal 5 Dec 06',2,1166559787),('lights','wiki','Creative Proposal 5 Dec 06',3,1166559787),('moving','wiki','Creative Proposal 5 Dec 06',1,1166559787),('slow','wiki','Creative Proposal 5 Dec 06',1,1166559787),('construction.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sounds','wiki','Creative Proposal 5 Dec 06',2,1166559787),('subtle','wiki','Creative Proposal 5 Dec 06',1,1166559787),('hear','wiki','Creative Proposal 5 Dec 06',1,1166559787),('room','wiki','Creative Proposal 5 Dec 06',1,1166559787),('enter','wiki','Creative Proposal 5 Dec 06',1,1166559787),('attendees','wiki','Creative Proposal 5 Dec 06',8,1166559787),('sequence:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('opening','wiki','Creative Proposal 5 Dec 06',2,1166559787),('future.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('steps','wiki','Creative Proposal 5 Dec 06',1,1166559787),('first','wiki','Creative Proposal 5 Dec 06',1,1166559787),('action,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('ownership,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('take','wiki','Creative Proposal 5 Dec 06',4,1166559787),('leaders','wiki','Creative Proposal 5 Dec 06',2,1166559787),('king’s','wiki','Creative Proposal 5 Dec 06',6,1166559787),('action','wiki','Creative Proposal 5 Dec 06',2,1166559787),('among','wiki','Creative Proposal 5 Dec 06',1,1166559787),('call','wiki','Creative Proposal 5 Dec 06',3,1166559787),('create','wiki','Creative Proposal 5 Dec 06',9,1166559787),('must','wiki','Creative Proposal 5 Dec 06',4,1166559787),('time.','wiki','Creative Proposal 5 Dec 06',3,1166559787),('piece','wiki','Creative Proposal 5 Dec 06',8,1166559787),('future','wiki','Creative Proposal 5 Dec 06',1,1166559787),('better','wiki','Creative Proposal 5 Dec 06',1,1166559787),('build','wiki','Creative Proposal 5 Dec 06',8,1166559787),('together','wiki','Creative Proposal 5 Dec 06',6,1166559787),('work','wiki','Creative Proposal 5 Dec 06',7,1166559787),('organization','wiki','Creative Proposal 5 Dec 06',1,1166559787),('everyone','wiki','Creative Proposal 5 Dec 06',3,1166559787),('require','wiki','Creative Proposal 5 Dec 06',1,1166559787),('will','wiki','Creative Proposal 5 Dec 06',43,1166559787),('effort','wiki','Creative Proposal 5 Dec 06',1,1166559787),('this','wiki','Creative Proposal 5 Dec 06',22,1166559787),('performance.','wiki','Creative Proposal 5 Dec 06',3,1166559787),('peak','wiki','Creative Proposal 5 Dec 06',4,1166559787),('inspire','wiki','Creative Proposal 5 Dec 06',2,1166559787),('place','wiki','Creative Proposal 5 Dec 06',1,1166559787),('practices/attitudes','wiki','Creative Proposal 5 Dec 06',1,1166559787),('accountability','wiki','Creative Proposal 5 Dec 06',1,1166559787),('aims','wiki','Creative Proposal 5 Dec 06',1,1166559787),('vision,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('future-focused','wiki','Creative Proposal 5 Dec 06',1,1166559787),('leadership.','wiki','Creative Proposal 5 Dec 06',2,1166559787),('strong','wiki','Creative Proposal 5 Dec 06',1,1166559787),('values','wiki','Creative Proposal 5 Dec 06',1,1166559787),('that','wiki','Creative Proposal 5 Dec 06',26,1166559787),('culture','wiki','Creative Proposal 5 Dec 06',1,1166559787),('high','wiki','Creative Proposal 5 Dec 06',6,1166559787),('establishing','wiki','Creative Proposal 5 Dec 06',1,1166559787),('importance','wiki','Creative Proposal 5 Dec 06',2,1166559787),('recognize','wiki','Creative Proposal 5 Dec 06',1,1166559787),('executives','wiki','Creative Proposal 5 Dec 06',1,1166559787),('spirit.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('entrepreneurial','wiki','Creative Proposal 5 Dec 06',1,1166559787),('company','wiki','Creative Proposal 5 Dec 06',1,1166559787),('young','wiki','Creative Proposal 5 Dec 06',1,1166559787),('rationale:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('theme','wiki','Creative Proposal 5 Dec 06',3,1166559787),('performance','wiki','Creative Proposal 5 Dec 06',9,1166559787),('building','wiki','Creative Proposal 5 Dec 06',8,1166559787),('alt:','wiki','Creative Proposal 5 Dec 06',2,1166559787),('youâ€','wiki','Creative Proposal 5 Dec 06',2,1166559787),('with','wiki','Creative Proposal 5 Dec 06',25,1166559787),('starts','wiki','Creative Proposal 5 Dec 06',2,1166559787),('future:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('“building','wiki','Creative Proposal 5 Dec 06',1,1166559787),('approach:','wiki','Creative Proposal 5 Dec 06',1,1166559787),('2006','wiki','Creative Proposal 5 Dec 06',1,1166559787),('december','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(revision','wiki','Creative Proposal 5 Dec 06',1,1166559787),('concepts','wiki','Creative Proposal 5 Dec 06',2,1166559787),('creative','wiki','Creative Proposal 5 Dec 06',6,1166559787),('resort','wiki','Creative Proposal 5 Dec 06',1,1166559787),('winery','wiki','Creative Proposal 5 Dec 06',1,1166559787),('&','wiki','Creative Proposal 5 Dec 06',4,1166559787),('Élan,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('chateau','wiki','Creative Proposal 5 Dec 06',1,1166559787),('braselton,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('2007','wiki','Creative Proposal 5 Dec 06',1,1166559787),('january','wiki','Creative Proposal 5 Dec 06',1,1166559787),('conference','wiki','Creative Proposal 5 Dec 06',13,1166559787),('leadership','wiki','Creative Proposal 5 Dec 06',12,1166559787),('king','wiki','Creative Proposal 5 Dec 06',12,1166559787),('annual','wiki','Creative Proposal 5 Dec 06',1,1166559787),('second','wiki','Creative Proposal 5 Dec 06',2,1166559787),('executive','wiki','Lorne Sept18',1,1191878287),('production','wiki','General Session',1,1170266617),('10/7','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('package','wiki','Lorne Sept 20',1,1166040568),('(eng','wiki','Lorne Sept 20',1,1166040568),('gear','wiki','Lorne Sept 20',1,1166040568),('camera','wiki','Lorne Sept 20',1,1166040568),('gobos','wiki','Lorne Sept 20',1,1166040568),('carpet','wiki','Lorne Sept 20',1,1166040568),('items?','wiki','Lorne Sept 20',1,1166040568),('these','wiki','Lorne Sept 20',1,1166040568),('status','wiki','Lorne Sept 20',1,1166040568),('tell','wiki','Steve Sept 18',1,1165607755),('rehearsals','wiki','Steve Sept 18',1,1165607755),('saturday','wiki','Steve Sept 18',1,1165607755),('meals','wiki','Steve Sept 18',1,1165607755),('security','wiki','Steve Sept 18',1,1165607755),('adjust','wiki','Steve Sept 18',1,1165607755),('labor','wiki','Steve Sept 18',1,1165607755),('call','wiki','Steve Sept 18',1,1165607755),('schedule','wiki','Steve Sept 18',2,1165607755),('confirm','wiki','Steve Sept 18',1,1165607755),('monday','wiki','Steve Sept 18',1,1165607755),('hotel','wiki','Steve Sept 18',2,1165607755),('drops','wiki','Steve Sept 18',1,1165607755),('leadership','wiki','Steve Sept 18',1,1165607755),('meeting','wiki','Steve Sept 18',1,1165607755),('need','wiki','Steve Sept 18',2,1165607755),('cameramen!!!','wiki','Steve Sept 18',1,1165607755),('sent','wiki','Steve Sept 18',3,1165607755),('request','wiki','Steve Sept 18',2,1165607755),('td!!!','wiki','Steve Sept 18',1,1165607755),('windows','wiki','Steve Sept 18',1,1165607755),('hard','wiki','Steve Sept 18',1,1165607755),('drive','wiki','Steve Sept 18',1,1165607755),('dvd-r','wiki','Steve Sept 18',1,1165607755),('tape','wiki','Steve Sept 18',1,1165607755),('stock','wiki','Steve Sept 18',1,1165607755),('camera','wiki','Steve Sept 18',1,1165607755),('monitors','wiki','Steve Sept 18',1,1165607755),('snakes?','wiki','Steve Sept 18',1,1165607755),('stage','wiki','Steve Sept 18',2,1165607755),('carpet','wiki','Steve Sept 18',1,1165607755),('rfps','wiki','Steve Sept 18',1,1165607755),('bishop','wiki','Steve Sept 18',1,1165607755),('avaya','wiki','Steve Sept 18',1,1165607755),('both','wiki','Steve Sept 18',1,1165607755),('movers','wiki','Steve Sept 18',1,1165607755),('sheraton','wiki','Steve Sept 18',1,1165607755),('sheet','wiki','Steve Sept 18',1,1165607755),('power,','wiki','Steve Sept 18',1,1165607755),('agreements','wiki','Steve Sept 18',1,1165607755),('steve','wiki','Steve Sept 18',1,1165607755),('sept','wiki','Steve Sept 18',1,1165607755),('king','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('pharmaceuticals','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('leadership','wiki','King Pharmaceuticals Leadership 24 Jan 07',1,1165617872),('ben/hillarie','wiki','Lorne Sept 18',5,1165618484),('list','wiki','Lorne Sept 18',4,1165618484),('contact','wiki','Lorne Sept 18',2,1165618484),('steve','wiki','Lorne Sept 18',5,1165618484),('schedule','wiki','Lorne Sept 18',17,1165618484),('proudciton','wiki','Lorne Sept 18',1,1165618484),('rich','wiki','Lorne Sept 18',4,1165618484),('layout','wiki','Lorne Sept 18',2,1165618484),('room','wiki','Lorne Sept 18',4,1165618484),('production','wiki','Lorne Sept 18',9,1165618484),('sunday','wiki','Lorne Sept 18',1,1165618484),('leadership','wiki','Lorne Sept 18',1,1165618484),('executive','wiki','Lorne Sept 18',1,1165618484),('meeting','wiki','Lorne Sept 18',2,1165618484),('widescreen','wiki','Lorne Sept 18',2,1165618484),('rehearsals,','wiki','Lorne Sept 18',4,1165618484),('businsess','wiki','Lorne Sept 18',1,1165618484),('video??','wiki','Lorne Sept 18',1,1165618484),('technical','wiki','Lorne Sept 18',1,1165618484),('conference','wiki','Lorne Sept 18',1,1165618484),('mandatory','wiki','Lorne Sept 18',1,1165618484),('breakouts','wiki','Lorne Sept 18',1,1165618484),('lorne','wiki','Lorne Sept 18',1,1165618484),('sept','wiki','Lorne Sept 18',1,1165618484),('productions','wiki','HomePage',1,1191877960),('importance','wiki','Creative Proposal 1 Dec 06',3,1191871605),('express','wiki','Creative Proposal 1 Dec 06',1,1191871605),('will','wiki','Creative Proposal 1 Dec 06',21,1191871605),('that','wiki','Creative Proposal 1 Dec 06',23,1191871605),('theme','wiki','Creative Proposal 1 Dec 06',8,1191871605),('develop','wiki','Creative Proposal 1 Dec 06',2,1191871605),('objectives:','wiki','Creative Proposal 1 Dec 06',1,1191871605),('viva’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('overview','wiki','Creative Proposal 1 Dec 06',2,1191871605),('resort','wiki','Creative Proposal 1 Dec 06',1,1191871605),('&','wiki','Creative Proposal 1 Dec 06',5,1191871605),('winery','wiki','Creative Proposal 1 Dec 06',1,1191871605),('Élan,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('chateau','wiki','Creative Proposal 1 Dec 06',1,1191871605),('braselton,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('2007','wiki','Creative Proposal 1 Dec 06',6,1191871605),('january','wiki','Creative Proposal 1 Dec 06',1,1191871605),('conference','wiki','Creative Proposal 1 Dec 06',8,1191871605),('leadership','wiki','Creative Proposal 1 Dec 06',16,1191871605),('king','wiki','Creative Proposal 1 Dec 06',35,1191871605),('annual','wiki','Creative Proposal 1 Dec 06',1,1191871605),('second','wiki','Creative Proposal 1 Dec 06',1,1191871605),('measurements','wiki','Production Task List',1,1166041367),('provide','wiki','Production Task List',2,1166041367),('need','wiki','Production Task List',7,1166041367),('cabling','wiki','Production Task List',1,1166041367),('plan','wiki','Production Task List',4,1166041367),('audio','wiki','Production Task List',5,1166041367),('escalator?)','wiki','Production Task List',1,1166041367),('them','wiki','Production Task List',1,1166041367),('(talk','wiki','Production Task List',1,1166041367),('screen','wiki','Production Task List',2,1166041367),('load-in','wiki','Production Task List',1,1166041367),('center','wiki','Production Task List',2,1166041367),('conv','wiki','Production Task List',1,1166041367),('conf','wiki','Production Task List',1,1166041367),('kurt','wiki','Lorne Sept 20',1,1166040568),('yeager','wiki','Lorne Sept 20',1,1166040568),('about','wiki','Lorne Sept 20',1,1166040568),('sessions','wiki','Lorne Sept 20',1,1166040568),('ben/lorne','wiki','Lorne Sept 20',1,1166040568),('lorne','wiki','Lorne Sept 20',1,1166040568),('sept','wiki','Lorne Sept 20',1,1166040568),('production','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('(video','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('event)','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('phone','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('conference','wiki','Proposal Phone Conference 4 Dec 06',1,1166040858),('king','wiki','Active',1,1166040882),('pharmaceuticals','wiki','Active',1,1166040882),('leadership','wiki','Active',1,1166040882),('active','wiki','Active',1,1166040882),('second','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('annual','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('king','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('leadership','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('conference','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('preliminary','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('budget','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('estimate','wiki','Preliminary Budget Estimate 6 Dec 06',3,1166041175),('december','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('2006','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('itemtotalevent','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('production','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('&','wiki','Preliminary Budget Estimate 6 Dec 06',5,1166041175),('management','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('servicesa.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('event','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('pre-productionb.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('graphics','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('pre-productionc.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('on-site?','wiki','Preliminary Budget Estimate 6 Dec 06',3,1166041175),('show','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('productiond.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('support$53,425general','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('session','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('audio/visual','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('supporta.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('staging','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('custom','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('(dual','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('screens','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('plus','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('projection','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('opening','wiki','Preliminary Budget Estimate 6 Dec 06',3,1166041175),('act)b.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('sound','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('supportc.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('lighting','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('supportd.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('video','wiki','Preliminary Budget Estimate 6 Dec 06',3,1166041175),('(plus','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('imag','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('teleprompter)e.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('labor','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('load-in/out','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('showf.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('misc.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('goods','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('(podiums,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('greenery,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('etc)g.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('trucking,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('delivery,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('security,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('etc$135,230opening','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('acta.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('creative','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('development','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('scriptingb.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('original','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('music','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('compositionc.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('performers,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('costumes,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('props$29,820video','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('production*a.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('(part','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('act)............................$27,873b.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('espn','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('news','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('style','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('bumpers..................................$17,029c.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('year','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('review','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('video**.......................................$18,829d.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('videos..................................................$15,087e.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('“our','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('difference','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('youâ€','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('video.......................................$38,339f.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('closing','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('video..................................................$16,138*','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('assumes','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('b-roll','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('will','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('provided','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('pharmaceuticals$133,295interactive','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('elementsa.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('audience','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('response','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('day)..........................................$5,717b.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('teambuilding','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('activity','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('(estimate)...................................$12,500c.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('telestrator','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('days)......................................................$7,500$25,717total','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('estimated','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('budget$377,487*','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('this','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('includes','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('proposed','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('elements,','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('including','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('videos','wiki','Preliminary Budget Estimate 6 Dec 06',2,1166041175),('setpieces.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('cost','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('savings','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('realized','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('chosen','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('modify','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('elements.','wiki','Preliminary Budget Estimate 6 Dec 06',1,1166041175),('chris)','wiki','Production Task List',1,1166041367),('house','wiki','Production Task List',1,1166041367),('lighting','wiki','Production Task List',1,1166041367),('production','wiki','Production Task List',1,1166041367),('task','wiki','Production Task List',1,1166041367),('list','wiki','Production Task List',1,1166041367),('chris)','wiki','Lorne Sept 13',1,1166482384),('house','wiki','Lorne Sept 13',1,1166482384),('lighting','wiki','Lorne Sept 13',1,1166482384),('lorne','wiki','Lorne Sept 13',1,1166482384),('sept','wiki','Lorne Sept 13',1,1166482384),('breakouts','wiki','Leadership Meeting',1,1166482408),('only','wiki','Leadership Meeting',1,1166482408),('9-noon','wiki','Leadership Meeting',1,1166482408),('lunch','wiki','Leadership Meeting',1,1166482408),('upstairs','wiki','Leadership Meeting',1,1166482408),('noon-1','wiki','Leadership Meeting',1,1166482408),('general','wiki','Leadership Meeting',1,1166482408),('session','wiki','Leadership Meeting',2,1166482408),('1-5:30','wiki','Leadership Meeting',1,1166482408),('c,d,e','wiki','Leadership Meeting',1,1166482408),('load-in','wiki','Leadership Meeting',1,1166482408),('noon','wiki','Leadership Meeting',1,1166482408),('(tentatively)','wiki','Leadership Meeting',1,1166482408),('fran','wiki','Leadership Meeting',1,1166482408),('finalizing','wiki','Leadership Meeting',1,1166482408),('agenda','wiki','Leadership Meeting',1,1166482408),('stage','wiki','Leadership Meeting',1,1166482408),('fran\'s','wiki','Leadership Meeting',1,1166482408),('crescent','wiki','Leadership Meeting',1,1166482408),('tables','wiki','Leadership Meeting',1,1166482408),('hotel','wiki','Leadership Meeting',1,1166482408),('leadership','wiki','Leadership Meeting',1,1166482408),('specifications,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('professionals','wiki','Creative Proposal 5 Dec 06',1,1166559787),('edge','wiki','Creative Proposal 5 Dec 06',1,1166559787),('screen.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('moreover,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('seasoned','wiki','Creative Proposal 5 Dec 06',1,1166559787),('artist/operator','wiki','Creative Proposal 5 Dec 06',1,1166559787),('on-site.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('always','wiki','Creative Proposal 5 Dec 06',1,1166559787),('prepared','wiki','Creative Proposal 5 Dec 06',1,1166559787),('produce,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('edit,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('modify','wiki','Creative Proposal 5 Dec 06',1,1166559787),('images','wiki','Creative Proposal 5 Dec 06',1,1166559787),('last','wiki','Creative Proposal 5 Dec 06',2,1166559787),('minute.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('professional','wiki','Creative Proposal 5 Dec 06',2,1166559787),('this,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('minimize','wiki','Creative Proposal 5 Dec 06',1,1166559787),('chances','wiki','Creative Proposal 5 Dec 06',1,1166559787),('glitches,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('laser','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pointers,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('timers,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wired','wiki','Creative Proposal 5 Dec 06',1,1166559787),('lights,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wireless','wiki','Creative Proposal 5 Dec 06',1,1166559787),('system','wiki','Creative Proposal 5 Dec 06',1,1166559787),('advance','wiki','Creative Proposal 5 Dec 06',1,1166559787),('slides','wiki','Creative Proposal 5 Dec 06',1,1166559787),('button.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('develop','wiki','Creative Proposal 5 Dec 06',1,1166559787),('aspect','wiki','Creative Proposal 5 Dec 06',1,1166559787),('meeting','wiki','Creative Proposal 5 Dec 06',1,1166559787),('(video','wiki','Creative Proposal 5 Dec 06',1,1166559787),('modules,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('animation,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('etc.)','wiki','Creative Proposal 5 Dec 06',1,1166559787),('forward','wiki','Creative Proposal 5 Dec 06',1,1166559787),('closely','wiki','Creative Proposal 5 Dec 06',1,1166559787),('arrive','wiki','Creative Proposal 5 Dec 06',1,1166559787),('exact','wiki','Creative Proposal 5 Dec 06',1,1166559787),('wish','wiki','Creative Proposal 5 Dec 06',1,1166559787),('range','wiki','Creative Proposal 5 Dec 06',1,1166559787),('elements.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('record','wiki','Creative Proposal 5 Dec 06',1,1166559787),('introductions','wiki','Creative Proposal 5 Dec 06',2,1166559787),('concert','wiki','Creative Proposal 5 Dec 06',1,1166559787),('walk-up/walk-out','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sting.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('adds','wiki','Creative Proposal 5 Dec 06',1,1166559787),('professionalism,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('keeps','wiki','Creative Proposal 5 Dec 06',1,1166559787),('moving,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('confusion','wiki','Creative Proposal 5 Dec 06',1,1166559787),('onstage.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('also,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('timers','wiki','Creative Proposal 5 Dec 06',1,1166559787),('teleprompter','wiki','Creative Proposal 5 Dec 06',1,1166559787),('those','wiki','Creative Proposal 5 Dec 06',1,1166559787),('want','wiki','Creative Proposal 5 Dec 06',1,1166559787),('composition','wiki','Creative Proposal 5 Dec 06',1,1166559787),('audio','wiki','Creative Proposal 5 Dec 06',6,1166559787),('produce','wiki','Creative Proposal 5 Dec 06',1,1166559787),('effects,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('"audio','wiki','Creative Proposal 5 Dec 06',1,1166559787),('elements"','wiki','Creative Proposal 5 Dec 06',1,1166559787),('state-of-the-art','wiki','Creative Proposal 5 Dec 06',1,1166559787),('digital','wiki','Creative Proposal 5 Dec 06',1,1166559787),('suite.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('collaborate','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pre-production','wiki','Creative Proposal 5 Dec 06',1,1166559787),('selection,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('refinements,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('placement','wiki','Creative Proposal 5 Dec 06',1,1166559787),('meeting.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('programmed','wiki','Creative Proposal 5 Dec 06',2,1166559787),('playback','wiki','Creative Proposal 5 Dec 06',1,1166559787),('general','wiki','Creative Proposal 5 Dec 06',1,1166559787),('sessions.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('computerized','wiki','Creative Proposal 5 Dec 06',1,1166559787),('accessed','wiki','Creative Proposal 5 Dec 06',1,1166559787),('planned,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('"out','wiki','Creative Proposal 5 Dec 06',1,1166559787),('order"','wiki','Creative Proposal 5 Dec 06',1,1166559787),('case','wiki','Creative Proposal 5 Dec 06',1,1166559787),('reshuffling','wiki','Creative Proposal 5 Dec 06',1,1166559787),('impromptu','wiki','Creative Proposal 5 Dec 06',1,1166559787),('on-stage','wiki','Creative Proposal 5 Dec 06',1,1166559787),('appearances.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('pre-recorded,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('mixed','wiki','Creative Proposal 5 Dec 06',1,1166559787),('stings,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('accordingly','wiki','Creative Proposal 5 Dec 06',1,1166559787),('approval.','wiki','Creative Proposal 5 Dec 06',1,1166559787),('synched','wiki','Creative Proposal 5 Dec 06',1,1166559787),('onscreen','wiki','Creative Proposal 5 Dec 06',1,1166559787),('upcoming','wiki','Creative Proposal 5 Dec 06',1,1166559787),('speaker,','wiki','Creative Proposal 5 Dec 06',1,1166559787),('impressive','wiki','Creative Proposal 5 Dec 06',1,1166559787),('audio-visual','wiki','Creative Proposal 5 Dec 06',1,1166559787),('introduction','wiki','Creative Proposal 5 Dec 06',1,1166559787),('proposal','wiki','Creative Proposal 5 Dec 06',1,1166559787),('partner','wiki','August 24 Meeting With Evan',1,1166559829),('story,','wiki','August 24 Meeting With Evan',1,1166559829),('south','wiki','August 24 Meeting With Evan',1,1166559829),('american','wiki','August 24 Meeting With Evan',1,1166559829),('august','wiki','August 24 Meeting With Evan',1,1166559829),('viva','wiki','HomePage',1,1191877960),('audio','wiki','Training',1,1170266595),('video','wiki','Training',1,1170266595),('graphics?','wiki','Training',1,1170266595),('information','wiki','Training',1,1170266595),('technology?','wiki','Training',1,1170266595),('business','wiki','Training',1,1170266595),('tools?','wiki','Training',1,1170266595),('training','wiki','Training',1,1170266595),('session','wiki','General Session',1,1170266617),('jack’s','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('thursday','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('arrive','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('friday','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('show','wiki','August 16 Meeting to determine responsibilities',2,1170266665),('saturday','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('half','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('some','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('people','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('stay','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('through','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('possibly','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('working','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('directly','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('house','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('10/5?','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('august','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('determine','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('responsibilities','wiki','August 16 Meeting to determine responsibilities',1,1170266665),('general','wiki','AVAYA Sales Conference',1,1170266811),('task','wiki','AVAYA Sales Conference',1,1170266811),('lists','wiki','AVAYA Sales Conference',1,1170266811),('avaya','wiki','AVAYA Sales Conference',1,1170266811),('sales','wiki','AVAYA Sales Conference',1,1170266811),('difference.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('great','wiki','Creative Proposal 1 Dec 06',1,1191871605),('players','wiki','Creative Proposal 1 Dec 06',1,1191871605),('field,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('coach','wiki','Creative Proposal 1 Dec 06',1,1191871605),('victory.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('techniques,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('viva','wiki','Creative Proposal 1 Dec 06',2,1191871605),('inspire','wiki','Creative Proposal 1 Dec 06',1,1191871605),('motivate','wiki','Creative Proposal 1 Dec 06',1,1191871605),('deep','wiki','Creative Proposal 1 Dec 06',1,1191871605),('themselves','wiki','Creative Proposal 1 Dec 06',2,1191871605),('best','wiki','Creative Proposal 1 Dec 06',1,1191871605),('members.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cross','wiki','Creative Proposal 1 Dec 06',1,1191871605),('finish','wiki','Creative Proposal 1 Dec 06',1,1191871605),('line','wiki','Creative Proposal 1 Dec 06',1,1191871605),('first.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('enters','wiki','Creative Proposal 1 Dec 06',1,1191871605),('far-off','wiki','Creative Proposal 1 Dec 06',1,1191871605),('crowds','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cheering.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('scoreboard','wiki','Creative Proposal 1 Dec 06',1,1191871605),('onstage','wiki','Creative Proposal 1 Dec 06',1,1191871605),('flashing','wiki','Creative Proposal 1 Dec 06',2,1191871605),('letters','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“k-i-n-g!â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('spotlights','wiki','Creative Proposal 1 Dec 06',3,1191871605),('circle','wiki','Creative Proposal 1 Dec 06',1,1191871605),('room,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('decorated','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pennant','wiki','Creative Proposal 1 Dec 06',1,1191871605),('themed','wiki','Creative Proposal 1 Dec 06',1,1191871605),('décor.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('referee’s','wiki','Creative Proposal 1 Dec 06',1,1191871605),('whistle','wiki','Creative Proposal 1 Dec 06',1,1191871605),('blasts','wiki','Creative Proposal 1 Dec 06',1,1191871605),('filled','wiki','Creative Proposal 1 Dec 06',1,1191871605),('arena','wiki','Creative Proposal 1 Dec 06',1,1191871605),('crowd','wiki','Creative Proposal 1 Dec 06',2,1191871605),('chanting','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“king,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('king,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('king.â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('screen','wiki','Creative Proposal 1 Dec 06',2,1191871605),('thrust','wiki','Creative Proposal 1 Dec 06',1,1191871605),('middle','wiki','Creative Proposal 1 Dec 06',2,1191871605),('super','wiki','Creative Proposal 1 Dec 06',1,1191871605),('bowl!','wiki','Creative Proposal 1 Dec 06',1,1191871605),('quarterback','wiki','Creative Proposal 1 Dec 06',1,1191871605),('throws','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pass,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('receiver','wiki','Creative Proposal 1 Dec 06',1,1191871605),('ctaches','wiki','Creative Proposal 1 Dec 06',1,1191871605),('dives','wiki','Creative Proposal 1 Dec 06',1,1191871605),('victoriaously','wiki','Creative Proposal 1 Dec 06',1,1191871605),('zone.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('referee','wiki','Creative Proposal 1 Dec 06',1,1191871605),('stretches','wiki','Creative Proposal 1 Dec 06',1,1191871605),('arms','wiki','Creative Proposal 1 Dec 06',1,1191871605),('signal','wiki','Creative Proposal 1 Dec 06',1,1191871605),('score','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pack','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cyclists','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pedalling','wiki','Creative Proposal 1 Dec 06',1,1191871605),('yellow','wiki','Creative Proposal 1 Dec 06',1,1191871605),('jersey','wiki','Creative Proposal 1 Dec 06',1,1191871605),('tour','wiki','Creative Proposal 1 Dec 06',1,1191871605),('france.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('manner,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('multitudes','wiki','Creative Proposal 1 Dec 06',1,1191871605),('scenes,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('showing','wiki','Creative Proposal 1 Dec 06',3,1191871605),('passion','wiki','Creative Proposal 1 Dec 06',1,1191871605),('dedication','wiki','Creative Proposal 1 Dec 06',1,1191871605),('star','wiki','Creative Proposal 1 Dec 06',1,1191871605),('athletes','wiki','Creative Proposal 1 Dec 06',1,1191871605),('pushing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('talking','wiki','Creative Proposal 1 Dec 06',1,1191871605),('organizational','wiki','Creative Proposal 1 Dec 06',1,1191871605),('onjectives','wiki','Creative Proposal 1 Dec 06',1,1191871605),('using','wiki','Creative Proposal 1 Dec 06',3,1191871605),('metaphor…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('scene','wiki','Creative Proposal 1 Dec 06',1,1191871605),('packed','wiki','Creative Proposal 1 Dec 06',1,1191871605),('basketball','wiki','Creative Proposal 1 Dec 06',1,1191871605),('arena,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('flashbulbs','wiki','Creative Proposal 1 Dec 06',1,1191871605),('popping','wiki','Creative Proposal 1 Dec 06',1,1191871605),('panning','wiki','Creative Proposal 1 Dec 06',2,1191871605),('crowd.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('springs','wiki','Creative Proposal 1 Dec 06',1,1191871605),('life,','wiki','Creative Proposal 1 Dec 06',2,1191871605),('mimicking','wiki','Creative Proposal 1 Dec 06',1,1191871605),('screen.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('noise','wiki','Creative Proposal 1 Dec 06',1,1191871605),('grows','wiki','Creative Proposal 1 Dec 06',1,1191871605),('louder','wiki','Creative Proposal 1 Dec 06',1,1191871605),('audience.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('announcer','wiki','Creative Proposal 1 Dec 06',1,1191871605),('fills','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sound-space','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“starting','wiki','Creative Proposal 1 Dec 06',1,1191871605),('line-up.â€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('announced','wiki','Creative Proposal 1 Dec 06',1,1191871605),('one-by-one,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('wearing','wiki','Creative Proposal 1 Dec 06',2,1191871605),('warm-ups','wiki','Creative Proposal 1 Dec 06',1,1191871605),('jerseys…','wiki','Creative Proposal 1 Dec 06',1,1191871605),('telestrator:','wiki','Creative Proposal 1 Dec 06',1,1191871605),('presenters','wiki','Creative Proposal 1 Dec 06',2,1191871605),('make','wiki','Creative Proposal 1 Dec 06',2,1191871605),('“sketchpadâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('technology,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('highlighter','wiki','Creative Proposal 1 Dec 06',1,1191871605),('controlled','wiki','Creative Proposal 1 Dec 06',1,1191871605),('drawing','wiki','Creative Proposal 1 Dec 06',1,1191871605),('tablet','wiki','Creative Proposal 1 Dec 06',1,1191871605),('touch','wiki','Creative Proposal 1 Dec 06',1,1191871605),('monitor.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('effect,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('sporting','wiki','Creative Proposal 1 Dec 06',1,1191871605),('event','wiki','Creative Proposal 1 Dec 06',1,1191871605),('effects.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('example,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('highlighting','wiki','Creative Proposal 1 Dec 06',2,1191871605),('plays','wiki','Creative Proposal 1 Dec 06',1,1191871605),('2006,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('penalties,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('moments','wiki','Creative Proposal 1 Dec 06',1,1191871605),('execution,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('even','wiki','Creative Proposal 1 Dec 06',1,1191871605),('members!','wiki','Creative Proposal 1 Dec 06',1,1191871605),('elements','wiki','Creative Proposal 1 Dec 06',3,1191871605),('graphic','wiki','Creative Proposal 1 Dec 06',2,1191871605),('look','wiki','Creative Proposal 1 Dec 06',2,1191871605),('fast','wiki','Creative Proposal 1 Dec 06',1,1191871605),('movement,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('energy,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('fonts','wiki','Creative Proposal 1 Dec 06',1,1191871605),('elements.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('striking','wiki','Creative Proposal 1 Dec 06',1,1191871605),('template','wiki','Creative Proposal 1 Dec 06',1,1191871605),('strong','wiki','Creative Proposal 1 Dec 06',1,1191871605),('transition','wiki','Creative Proposal 1 Dec 06',1,1191871605),('element','wiki','Creative Proposal 1 Dec 06',1,1191871605),('animated','wiki','Creative Proposal 1 Dec 06',1,1191871605),('simple','wiki','Creative Proposal 1 Dec 06',1,1191871605),('crisp','wiki','Creative Proposal 1 Dec 06',1,1191871605),('used','wiki','Creative Proposal 1 Dec 06',1,1191871605),('t-shirts,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('awards,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('etc.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('performances','wiki','Creative Proposal 1 Dec 06',1,1191871605),('included','wiki','Creative Proposal 1 Dec 06',1,1191871605),('course','wiki','Creative Proposal 1 Dec 06',1,1191871605),('appear','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“team','wiki','Creative Proposal 1 Dec 06',1,1191871605),('jerseysâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('referees.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('members','wiki','Creative Proposal 1 Dec 06',1,1191871605),('given','wiki','Creative Proposal 1 Dec 06',1,1191871605),('items','wiki','Creative Proposal 1 Dec 06',1,1191871605),('such','wiki','Creative Proposal 1 Dec 06',1,1191871605),('whistles,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('jerseys,','wiki','Creative Proposal 1 Dec 06',1,1191871605),('caps.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('range','wiki','Creative Proposal 1 Dec 06',1,1191871605),('messaging','wiki','Creative Proposal 1 Dec 06',1,1191871605),('techniques','wiki','Creative Proposal 1 Dec 06',1,1191871605),('employed.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('include','wiki','Creative Proposal 1 Dec 06',1,1191871605),('scoreboards','wiki','Creative Proposal 1 Dec 06',1,1191871605),('calling','wiki','Creative Proposal 1 Dec 06',1,1191871605),('“the','wiki','Creative Proposal 1 Dec 06',1,1191871605),('waveâ€','wiki','Creative Proposal 1 Dec 06',1,1191871605),('cheers.','wiki','Creative Proposal 1 Dec 06',1,1191871605),('proposal','wiki','Creative Proposal 1 Dec 06',1,1191871605),('salesman','wiki','Global Integrated Services Creative Session',1,1191877829),('client','wiki','Global Integrated Services Creative Session',1,1191877829),('"power','wiki','Global Integrated Services Creative Session',1,1191877829),('one"','wiki','Global Integrated Services Creative Session',1,1191877829),('logo','wiki','Global Integrated Services Creative Session',1,1191877829),('embodied','wiki','Global Integrated Services Creative Session',1,1191877829),('transform','wiki','Global Integrated Services Creative Session',1,1191877829),('your','wiki','Global Integrated Services Creative Session',1,1191877829),('thinking','wiki','Global Integrated Services Creative Session',1,1191877829),('muscle','wiki','Global Integrated Services Creative Session',1,1191877829),('brain','wiki','Global Integrated Services Creative Session',1,1191877829),('clenched','wiki','Global Integrated Services Creative Session',1,1191877829),('fist','wiki','Global Integrated Services Creative Session',1,1191877829),('into','wiki','Global Integrated Services Creative Session',1,1191877829),('thinker','wiki','Global Integrated Services Creative Session',1,1191877829),('global','wiki','Global Integrated Services Creative Session',1,1191877829),('integrated','wiki','Global Integrated Services Creative Session',1,1191877829),('services','wiki','Global Integrated Services Creative Session',1,1191877829),('homepage','wiki','HomePage',1,1191877960),('stock,','wiki','Lorne Sept18',1,1191878287),('hard','wiki','Lorne Sept18',2,1191878287),('drives','wiki','Lorne Sept18',2,1191878287),('customer','wiki','Lorne Sept18',1,1191878287),('videos','wiki','Lorne Sept18',2,1191878287),('allstate','wiki','Lorne Sept18',1,1191878287),('thursday?','wiki','Lorne Sept18',1,1191878287),('crew?','wiki','Lorne Sept18',1,1191878287),('whirlpool','wiki','Lorne Sept18',1,1191878287),('approval','wiki','Lorne Sept18',1,1191878287),('from','wiki','Lorne Sept18',1,1191878287),('modify','wiki','Lorne Sept18',1,1191878287),('evan','wiki','Lorne Sept18',1,1191878287),('(once','wiki','Lorne Sept18',1,1191878287),('rights','wiki','Lorne Sept18',1,1191878287),('approved)','wiki','Lorne Sept18',1,1191878287),('intermountain?','wiki','Lorne Sept18',1,1191878287),('healthcare','wiki','Lorne Sept18',1,1191878287),('beat','wiki','Lorne Sept18',1,1191878287),('cisco','wiki','Lorne Sept18',1,1191878287),('editing','wiki','Lorne Sept18',2,1191878287),('closing','wiki','Lorne Sept18',1,1191878287),('on-site','wiki','Lorne Sept18',1,1191878287),('&','wiki','Lorne Sept18',1,1191878287),('stock','wiki','Lorne Sept18',1,1191878287),('business','wiki','Lorne Sept18',1,1191878287),('partners','wiki','Lorne Sept18',3,1191878287),('shooting','wiki','Lorne Sept18',1,1191878287),('plan','wiki','Lorne Sept18',2,1191878287),('expo','wiki','Lorne Sept18',1,1191878287),('qoute','wiki','Lorne Sept18',1,1191878287),('entertainment','wiki','Lorne Sept18',1,1191878287),('meeting','wiki','Lorne Sept18',2,1191878287),('widescreen','wiki','Lorne Sept18',2,1191878287),('rehearsals,','wiki','Lorne Sept18',4,1191878287),('businsess','wiki','Lorne Sept18',1,1191878287),('video??','wiki','Lorne Sept18',1,1191878287),('technical','wiki','Lorne Sept18',1,1191878287),('conference','wiki','Lorne Sept18',1,1191878287),('mandatory','wiki','Lorne Sept18',1,1191878287),('breakouts','wiki','Lorne Sept18',1,1191878287),('lorne','wiki','Lorne Sept18',1,1191878287),('sept18','wiki','Lorne Sept18',1,1191878287),('overseeing','wiki','Production Team Status',1,1191878332),('creative','wiki','Production Team Status',2,1191878332),('julie','wiki','Production Team Status',2,1191878332),('writing','wiki','Production Team Status',1,1191878332),('script','wiki','Production Team Status',1,1191878332),('lots','wiki','Production Team Status',1,1191878332),('graphics','wiki','Production Team Status',1,1191878332),('mashima','wiki','Production Team Status',1,1191878332),('edit','wiki','Production Team Status',2,1191878332),('nancy','wiki','Production Team Status',1,1191878332),('malusko','wiki','Production Team Status',1,1191878332),('opted','wiki','Production Team Status',1,1191878332),('audio-only','wiki','Production Team Status',1,1191878332),('received','wiki','Production Team Status',2,1191878332),('follow','wiki','Production Team Status',4,1191878332),('format','wiki','Production Team Status',1,1191878332),('acceptable','wiki','Production Team Status',1,1191878332),('photo','wiki','Production Team Status',1,1191878332),('montage','wiki','Production Team Status',1,1191878332),('complete','wiki','Production Team Status',2,1191878332),('need','wiki','Production Team Status',5,1191878332),('make','wiki','Production Team Status',1,1191878332),('copies','wiki','Production Team Status',1,1191878332),('will','wiki','Production Team Status',4,1191878332),('label','wiki','Production Team Status',1,1191878332),('privacy','wiki','Production Team Status',1,1191878332),('information','wiki','Production Team Status',1,1191878332),('shannon','wiki','Production Team Status',4,1191878332),('ensure','wiki','Production Team Status',1,1191878332),('indemnification','wiki','Production Team Status',1,1191878332),('clause','wiki','Production Team Status',1,1191878332),('brainstorming','wiki','Production Team Status',1,1191878332),('imagery','wiki','Production Team Status',1,1191878332),('2007','wiki','Production Team Status',1,1191878332),('policy','wiki','Production Team Status',1,1191878332),('conference','wiki','Production Team Status',1,1191878332),('hughes','wiki','Production Team Status',1,1191878332),('proposal','wiki','Production Team Status',4,1191878332),('sent','wiki','Production Team Status',1,1191878332),('corporate','wiki','Production Team Status',1,1191878332),('update','wiki','Production Team Status',1,1191878332),('waitex','wiki','Production Team Status',1,1191878332),('event','wiki','Production Team Status',3,1191878332),('went','wiki','Production Team Status',1,1191878332),('really','wiki','Production Team Status',1,1191878332),('well,','wiki','Production Team Status',1,1191878332),('happy','wiki','Production Team Status',1,1191878332),('looked','wiki','Production Team Status',1,1191878332),('graphic','wiki','Production Team Status',1,1191878332),('design','wiki','Production Team Status',3,1191878332),('emea','wiki','Production Team Status',1,1191878332),('partner','wiki','Production Team Status',1,1191878332),('steve','wiki','Production Team Status',2,1191878332),('provide','wiki','Production Team Status',1,1191878332),('propoint?','wiki','Production Team Status',1,1191878332),('summary','wiki','Production Team Status',1,1191878332),('folder','wiki','Production Team Status',1,1191878332),('approved','wiki','Production Team Status',1,1191878332),('case','wiki','Production Team Status',1,1191878332),('study','wiki','Production Team Status',1,1191878332),('must','wiki','Production Team Status',1,1191878332),('begin','wiki','Production Team Status',1,1191878332),('suggestions','wiki','Production Team Status',1,1191878332),('other','wiki','Production Team Status',2,1191878332),('stock','wiki','Production Team Status',1,1191878332),('sites','wiki','Production Team Status',1,1191878332),('i.e.','wiki','Production Team Status',1,1191878332),('photos.com','wiki','Production Team Status',1,1191878332),('what','wiki','Production Team Status',1,1191878332),('alternatives','wiki','Production Team Status',1,1191878332),('jupiter','wiki','Production Team Status',1,1191878332),('images','wiki','Production Team Status',1,1191878332),('aegis','wiki','Production Team Status',1,1191878332),('activity','wiki','Production Team Status',3,1191878332),('quote','wiki','Production Team Status',3,1191878332),('ballroom','wiki','Production Team Status',1,1191878332),('send','wiki','Production Team Status',1,1191878332),('them','wiki','Production Team Status',1,1191878332),('content','wiki','Production Team Status',1,1191878332),('relation','wiki','Production Team Status',1,1191878332),('spyder','wiki','Production Team Status',1,1191878332),('screen','wiki','Production Team Status',1,1191878332),('layouts','wiki','Production Team Status',1,1191878332),('etc.','wiki','Production Team Status',1,1191878332),('rich','wiki','Production Team Status',2,1191878332),('watchout','wiki','Production Team Status',1,1191878332),('in-house','wiki','Production Team Status',1,1191878332),('weeks','wiki','Production Team Status',2,1191878332),('brian','wiki','Production Team Status',1,1191878332),('shackley','wiki','Production Team Status',1,1191878332),('setup','wiki','Production Team Status',1,1191878332),('check-in','wiki','Production Team Status',1,1191878332),('linda','wiki','Production Team Status',1,1191878332),('webcast','wiki','Production Team Status',2,1191878332),('(lorne)','wiki','Production Team Status',1,1191878332),('healthcare','wiki','Production Team Status',1,1191878332),('cancun','wiki','Production Team Status',1,1191878332),('king','wiki','Production Team Status',1,1191878332),('pharmaceuticals','wiki','Production Team Status',1,1191878332),('sign-off','wiki','Production Team Status',1,1191878332),('novartis','wiki','Production Team Status',1,1191878332),('extension','wiki','Production Team Status',1,1191878332),('november','wiki','Production Team Status',1,1191878332),('december','wiki','Production Team Status',1,1191878332),('oxman','wiki','Production Team Status',1,1191878332),('success','wiki','Production Team Status',1,1191878332),('planning','wiki','Production Team Status',1,1191878332),('noaa','wiki','Production Team Status',1,1191878332),('1/24-1/26','wiki','Production Team Status',1,1191878332),('wyndham,','wiki','Production Team Status',1,1191878332),('should','wiki','Production Team Status',2,1191878332),('sign','wiki','Production Team Status',1,1191878332),('contract','wiki','Production Team Status',1,1191878332),('int’l','wiki','Production Team Status',1,1191878332),('1/31-2/1','wiki','Production Team Status',1,1191878332),('2/22','wiki','Production Team Status',1,1191878332),('business','wiki','Production Team Status',1,1191878332),('development','wiki','Production Team Status',1,1191878332),('mbda','wiki','Production Team Status',1,1191878332),('sponsorship','wiki','Production Team Status',1,1191878332),('decision','wiki','Production Team Status',1,1191878332),('come','wiki','Production Team Status',1,1191878332),('internal','wiki','Production Team Status',1,1191878332),('trendmicro','wiki','Production Team Status',1,1191878332),('popups','wiki','Production Team Status',1,1191878332),('show?','wiki','Production Team Status',1,1191878332),('eric','wiki','Production Team Status',1,1191878332),('organization','wiki','Production Team Status',1,1191878332),('notebooks','wiki','Production Team Status',1,1191878332),('server','wiki','Production Team Status',1,1191878332),('drives','wiki','Production Team Status',1,1191878332),('site','wiki','Production Team Status',1,1191878332),('meetings','wiki','Production Team Status',1,1191878332),('ongoing','wiki','Production Team Status',1,1191878332),('freelance','wiki','Production Team Status',1,1191878332),('portal','wiki','Production Team Status',1,1191878332),('leading,','wiki','Production Team Status',1,1191878332),('oversee','wiki','Production Team Status',1,1191878332),('technical','wiki','Production Team Status',1,1191878332),('implementation','wiki','Production Team Status',1,1191878332),('office','wiki','Production Team Status',1,1191878332),('remodeling','wiki','Production Team Status',1,1191878332),('awaiting','wiki','Production Team Status',1,1191878332),('final','wiki','Production Team Status',1,1191878332),('before','wiki','Production Team Status',1,1191878332),('engaging','wiki','Production Team Status',1,1191878332),('hope','wiki','Production Team Status',1,1191878332),('next','wiki','Production Team Status',1,1191878332),('three','wiki','Production Team Status',1,1191878332),('transition','wiki','Production Team Status',1,1191878332),('logistics','wiki','Production Team Status',1,1191878332),('team','wiki','Production Team Status',1,1191878332); /*!40000 ALTER TABLE `tiki_searchindex` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_searchsyllable` -- DROP TABLE IF EXISTS `tiki_searchsyllable`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_searchsyllable` ( `syllable` varchar(80) NOT NULL default '', `lastUsed` int(11) NOT NULL default '0', `lastUpdated` int(11) NOT NULL default '0', PRIMARY KEY (`syllable`), KEY `lastUsed` (`lastUsed`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_searchsyllable` -- LOCK TABLES `tiki_searchsyllable` WRITE; /*!40000 ALTER TABLE `tiki_searchsyllable` DISABLE KEYS */; INSERT INTO `tiki_searchsyllable` VALUES ('Preliminary',1165419078,1165419078),('Budget',1165419078,1165419078),('Estimate',1165419078,1165419078),('6',1165419078,1165419078),('Dec',1165419078,1165419078),('06',1165419078,1165419078); /*!40000 ALTER TABLE `tiki_searchsyllable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_searchwords` -- DROP TABLE IF EXISTS `tiki_searchwords`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_searchwords` ( `syllable` varchar(80) NOT NULL default '', `searchword` varchar(80) NOT NULL default '', PRIMARY KEY (`syllable`,`searchword`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_searchwords` -- LOCK TABLES `tiki_searchwords` WRITE; /*!40000 ALTER TABLE `tiki_searchwords` DISABLE KEYS */; INSERT INTO `tiki_searchwords` VALUES ('06','12/4/06'),('06','2006'),('06','2006,'),('06','2006.'),('6','$22,262'),('6','$4,862'),('6','$6,169'),('6','$90,163'),('6','(x6)'),('6','1,600'),('6','12/4/06'),('6','12’x16’'),('6','15-16'),('6','2006'),('6','2006,'),('6','2006.'),('6','293-296'),('6','393-396'),('6','6:00,'),('6','6:36'),('6','89.6\')'),('Budget','budget'),('Budget','budget/services'),('Budget','budgets'),('Dec','december'),('Dec','decks'),('Dec','decorated'),('Dec','decorations,'),('Dec','decorations.'),('Estimate','estimate'),('Estimate','estimate**'),('Estimate','estimated'),('Preliminary','preliminary'); /*!40000 ALTER TABLE `tiki_searchwords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_secdb` -- DROP TABLE IF EXISTS `tiki_secdb`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_secdb` ( `md5_value` varchar(32) NOT NULL default '', `filename` varchar(250) NOT NULL default '', `tiki_version` varchar(60) NOT NULL default '', `severity` int(4) NOT NULL default '0', PRIMARY KEY (`md5_value`,`filename`(100),`tiki_version`), KEY `sdb_fn` (`filename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_secdb` -- LOCK TABLES `tiki_secdb` WRITE; /*!40000 ALTER TABLE `tiki_secdb` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_secdb` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_semaphores` -- DROP TABLE IF EXISTS `tiki_semaphores`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_semaphores` ( `semName` varchar(250) NOT NULL default '', `user` varchar(40) default NULL, `timestamp` int(14) default NULL, PRIMARY KEY (`semName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_semaphores` -- LOCK TABLES `tiki_semaphores` WRITE; /*!40000 ALTER TABLE `tiki_semaphores` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_semaphores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_sent_newsletters` -- DROP TABLE IF EXISTS `tiki_sent_newsletters`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_sent_newsletters` ( `editionId` int(12) NOT NULL auto_increment, `nlId` int(12) NOT NULL default '0', `users` int(10) default NULL, `sent` int(14) default NULL, `subject` varchar(200) default NULL, `data` longblob, PRIMARY KEY (`editionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_sent_newsletters` -- LOCK TABLES `tiki_sent_newsletters` WRITE; /*!40000 ALTER TABLE `tiki_sent_newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_sent_newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_sessions` -- DROP TABLE IF EXISTS `tiki_sessions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_sessions` ( `sessionId` varchar(32) NOT NULL default '', `user` varchar(40) default NULL, `timestamp` int(14) default NULL, `tikihost` varchar(200) default NULL, PRIMARY KEY (`sessionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_sessions` -- LOCK TABLES `tiki_sessions` WRITE; /*!40000 ALTER TABLE `tiki_sessions` DISABLE KEYS */; INSERT INTO `tiki_sessions` VALUES ('bf2e7b16f11d57ec40f7b9622784010e','smackey',1191878334,'www.producedbyviva.com'); /*!40000 ALTER TABLE `tiki_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_sheet_layout` -- DROP TABLE IF EXISTS `tiki_sheet_layout`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_sheet_layout` ( `sheetId` int(8) NOT NULL default '0', `begin` int(10) NOT NULL default '0', `end` int(10) default NULL, `headerRow` int(4) NOT NULL default '0', `footerRow` int(4) NOT NULL default '0', `className` varchar(64) default NULL, UNIQUE KEY `sheetId` (`sheetId`,`begin`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_sheet_layout` -- LOCK TABLES `tiki_sheet_layout` WRITE; /*!40000 ALTER TABLE `tiki_sheet_layout` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_sheet_layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_sheet_values` -- DROP TABLE IF EXISTS `tiki_sheet_values`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_sheet_values` ( `sheetId` int(8) NOT NULL default '0', `begin` int(10) NOT NULL default '0', `end` int(10) default NULL, `rowIndex` int(4) NOT NULL default '0', `columnIndex` int(4) NOT NULL default '0', `value` varchar(255) default NULL, `calculation` varchar(255) default NULL, `width` int(4) NOT NULL default '1', `height` int(4) NOT NULL default '1', `format` varchar(255) default NULL, UNIQUE KEY `sheetId` (`sheetId`,`begin`,`rowIndex`,`columnIndex`), KEY `sheetId_2` (`sheetId`,`rowIndex`,`columnIndex`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_sheet_values` -- LOCK TABLES `tiki_sheet_values` WRITE; /*!40000 ALTER TABLE `tiki_sheet_values` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_sheet_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_sheets` -- DROP TABLE IF EXISTS `tiki_sheets`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_sheets` ( `sheetId` int(8) NOT NULL auto_increment, `title` varchar(200) NOT NULL default '', `description` text, `author` varchar(200) NOT NULL default '', PRIMARY KEY (`sheetId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_sheets` -- LOCK TABLES `tiki_sheets` WRITE; /*!40000 ALTER TABLE `tiki_sheets` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_sheets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_shoutbox` -- DROP TABLE IF EXISTS `tiki_shoutbox`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_shoutbox` ( `msgId` int(10) NOT NULL auto_increment, `message` varchar(255) default NULL, `timestamp` int(14) default NULL, `user` varchar(40) default NULL, `hash` varchar(32) default NULL, PRIMARY KEY (`msgId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_shoutbox` -- LOCK TABLES `tiki_shoutbox` WRITE; /*!40000 ALTER TABLE `tiki_shoutbox` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_shoutbox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_shoutbox_words` -- DROP TABLE IF EXISTS `tiki_shoutbox_words`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_shoutbox_words` ( `word` varchar(40) NOT NULL default '', `qty` int(11) NOT NULL default '0', PRIMARY KEY (`word`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_shoutbox_words` -- LOCK TABLES `tiki_shoutbox_words` WRITE; /*!40000 ALTER TABLE `tiki_shoutbox_words` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_shoutbox_words` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_stats` -- DROP TABLE IF EXISTS `tiki_stats`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_stats` ( `object` varchar(255) NOT NULL default '', `type` varchar(20) NOT NULL default '', `day` int(14) NOT NULL default '0', `hits` int(14) NOT NULL default '0', PRIMARY KEY (`object`,`type`,`day`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_stats` -- LOCK TABLES `tiki_stats` WRITE; /*!40000 ALTER TABLE `tiki_stats` DISABLE KEYS */; INSERT INTO `tiki_stats` VALUES ('HomePage','wiki',1154577600,48),('AOL Webcast Project Wiki','wiki',1154577600,18),('Pre-Show','wiki',1154577600,1),('Production Team Status','wiki',1154577600,14),('HomePage','wiki',1154664000,2),('Production Team Status','wiki',1154664000,5),('AOL Webcast Project Wiki','wiki',1154664000,4),('AOL Webcast','wiki',1154664000,1),('HomePage','wiki',1155700800,6),('AVAYA Sales Conference','wiki',1155700800,2),('AOL Webcast','wiki',1155700800,1),('Production Team Status','wiki',1155700800,1),('HomePage','wiki',1156219200,2),('AVAYA Sales Conference','wiki',1156219200,2),('HomePage','wiki',1156392000,4),('AVAYA Sales Conference','wiki',1156392000,5),('August 24 Meeting With Evan','wiki',1156392000,11),('HomePage','wiki',1157601600,3),('AVAYA Sales Conference','wiki',1157601600,5),('August 24 Meeting With Evan','wiki',1157601600,1),('September 7 Phone Conference','wiki',1157601600,8),('HomePage','wiki',1157688000,3),('AVAYA Sales Conference','wiki',1157688000,4),('Global Integrated Services Creative Session','wiki',1157688000,2),('HomePage','wiki',1158120000,3),('AVAYA Sales Conference','wiki',1158120000,8),('August 16 Meeting to determine responsibilities','wiki',1158120000,2),('Global Integrated Services Creative Session','wiki',1158120000,1),('Leadership Meeting','wiki',1158120000,1),('September 7 Phone Conference','wiki',1158120000,1),('HomePage','wiki',1158206400,3),('AVAYA Sales Conference','wiki',1158206400,3),('General Session','wiki',1158206400,4),('Production Task List','wiki',1158206400,1),('Leadership Meeting','wiki',1158206400,1),('HomePage','wiki',1158724800,3),('AVAYA Sales Conference','wiki',1158724800,15),('Leadership Meeting','wiki',1158724800,4),('August 16 Meeting to determine responsibilities','wiki',1158724800,2),('General Session','wiki',1158724800,3),('Production Task List','wiki',1158724800,2),('Task Lists','wiki',1158724800,10),('Lorne Sept18','wiki',1158724800,1),('Lorne Sept 18','wiki',1158724800,1),('Steve Sept 18','wiki',1158724800,2),('Steve Sept 15','wiki',1158724800,1),('September 7 Phone Conference','wiki',1158724800,1),('HomePage','wiki',1158897600,6),('AVAYA Sales Conference','wiki',1158897600,3),('Task Lists','wiki',1158897600,9),('Lorne Sept 20','wiki',1158897600,4),('Steve Sept 18','wiki',1158897600,3),('AOL Webcast','wiki',1158897600,1),('Lorne Sept 13','wiki',1158897600,1),('Lorne Sept 18','wiki',1158897600,1),('Production Team Status','wiki',1158897600,1),('HomePage','wiki',1159502400,1),('AVAYA Sales Conference','wiki',1159502400,1),('Leadership Meeting','wiki',1159502400,1),('HomePage','wiki',1159934400,1),('AVAYA Sales Conference','wiki',1159934400,1),('Leadership Meeting','wiki',1159934400,1),('HomePage','wiki',1165208400,37),('AVAYA Sales Conference','wiki',1165208400,13),('August 16 Meeting to determine responsibilities','wiki',1165208400,2),('Task Lists','wiki',1165208400,4),('Lorne Sept 20','wiki',1165208400,1),('Steve Sept 18','wiki',1165208400,2),('Leadership Meeting','wiki',1165208400,1),('General Session','wiki',1165208400,2),('Production Task List','wiki',1165208400,2),('Global Integrated Services Creative Session','wiki',1165208400,2),('September 7 Phone Conference','wiki',1165208400,2),('Production Team Status','wiki',1165208400,3),('AOL Webcast','wiki',1165208400,3),('Projects','wiki',1165208400,20),('Active','wiki',1165208400,14),('King Pharmaceuticals Leadership 24 Jan 07','wiki',1165208400,23),('Proposal Phone Conference 4 Dec 06','wiki',1165208400,10),('August 24 Meeting With Evan','wiki',1165208400,1),('Completed','wiki',1165208400,1),('Operations','wiki',1165208400,1),('Checklists','wiki',1165208400,1),('Creative Proposal 1 Dec 06','wiki',1165208400,3),('Production Phone Conference 4 Dec 06','wiki',1165208400,2),('HomePage','wiki',1165294800,4),('Production Team Status','wiki',1165294800,1),('Projects','wiki',1165294800,3),('Active','wiki',1165294800,3),('King Pharmaceuticals Leadership 24 Jan 07','wiki',1165294800,6),('Proposal Phone Conference 4 Dec 06','wiki',1165294800,1),('HomePage','wiki',1165381200,5),('Operations','wiki',1165381200,1),('Projects','wiki',1165381200,3),('Active','wiki',1165381200,4),('King Pharmaceuticals Leadership 24 Jan 07','wiki',1165381200,14),('Creative Proposal 5 Dec 06','wiki',1165381200,2),('Preliminary Budget Estimate 6 Dec 06','wiki',1165381200,4),('Creative Proposal 1 Dec 06','wiki',1165381200,1),('HomePage','wiki',1165554000,5),('Operations','wiki',1165554000,1),('Training','wiki',1165554000,4),('Video','wiki',1165554000,6),('Compression Best Practices','wiki',1165554000,5),('Audio','wiki',1165554000,4),('Soundtrack Pro Primer','wiki',1165554000,3),('HomePage','wiki',1165813200,3),('Production Team Status','wiki',1165813200,6),('HomePage','wiki',1165986000,4),('Training','wiki',1165986000,3),('Video','wiki',1165986000,11),('Compression Best Practices','wiki',1165986000,5),('Julies Production Tips','wiki',1165986000,1),('Production Team Status','wiki',1165986000,1),('Operations','wiki',1165986000,1),('Checklists','wiki',1165986000,1),('AOL Webcast','wiki',1165986000,1),('HomePage','wiki',1166418000,2),('Production Team Status','wiki',1166418000,7),('HomePage','wiki',1166504400,5),('Operations','wiki',1166504400,6),('Training','wiki',1166504400,2),('Video','wiki',1166504400,1),('Projects','wiki',1166504400,1),('Checklists','wiki',1166504400,1),('SOPs','wiki',1166504400,3),('Digital File Naming Conventions','wiki',1166504400,2),('HomePage','wiki',1170219600,1),('Projects','wiki',1170219600,2),('Active','wiki',1170219600,4),('Completed','wiki',1170219600,3),('King Pharmaceuticals Leadership 24 Jan 07','wiki',1170219600,1),('AIPAC Policy Conference 11 March 07','wiki',1170219600,2),('Status Meetings','wiki',1170219600,2),('30 Jan','wiki',1170219600,3),('AVAYA Sales Conference','wiki',1170219600,1),('Leadership Meeting','wiki',1170219600,1),('Task Lists','wiki',1170219600,1),('Steve Sept 18','wiki',1170219600,1),('Lorne Sept 20','wiki',1170219600,1),('HomePage','wiki',1182225600,1),('Production Team Status','wiki',1182225600,1),('HomePage','wiki',1191816000,1),('Projects','wiki',1191816000,1),('Active','wiki',1191816000,2),('AIPAC Policy Conference 11 March 07','wiki',1191816000,1),('Status Meetings','wiki',1191816000,3),('AIPAC National Summit 2007','wiki',1191816000,2),('AIPAC NS 07 Random Input','wiki',1191816000,1),('AIPAC NS 8-Oct-07','wiki',1191816000,3); /*!40000 ALTER TABLE `tiki_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_structure_versions` -- DROP TABLE IF EXISTS `tiki_structure_versions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_structure_versions` ( `structure_id` int(14) NOT NULL auto_increment, `version` int(14) default NULL, PRIMARY KEY (`structure_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_structure_versions` -- LOCK TABLES `tiki_structure_versions` WRITE; /*!40000 ALTER TABLE `tiki_structure_versions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_structure_versions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_structures` -- DROP TABLE IF EXISTS `tiki_structures`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_structures` ( `page_ref_id` int(14) NOT NULL auto_increment, `structure_id` int(14) NOT NULL default '0', `parent_id` int(14) default NULL, `page_id` int(14) NOT NULL default '0', `page_version` int(8) default NULL, `page_alias` varchar(240) NOT NULL default '', `pos` int(4) default NULL, PRIMARY KEY (`page_ref_id`), KEY `pidpaid` (`page_id`,`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_structures` -- LOCK TABLES `tiki_structures` WRITE; /*!40000 ALTER TABLE `tiki_structures` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_structures` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_submissions` -- DROP TABLE IF EXISTS `tiki_submissions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_submissions` ( `subId` int(8) NOT NULL auto_increment, `topline` varchar(255) default NULL, `title` varchar(80) default NULL, `subtitle` varchar(255) default NULL, `linkto` varchar(255) default NULL, `lang` varchar(16) default NULL, `authorName` varchar(60) default NULL, `topicId` int(14) default NULL, `topicName` varchar(40) default NULL, `size` int(12) default NULL, `useImage` char(1) default NULL, `image_name` varchar(80) default NULL, `image_caption` text, `image_type` varchar(80) default NULL, `image_size` int(14) default NULL, `image_x` int(4) default NULL, `image_y` int(4) default NULL, `image_data` longblob, `publishDate` int(14) default NULL, `expireDate` int(14) default NULL, `created` int(14) default NULL, `bibliographical_references` text, `resume` text, `heading` text, `body` text, `hash` varchar(32) default NULL, `author` varchar(200) default NULL, `nbreads` int(14) default NULL, `votes` int(8) default NULL, `points` int(14) default NULL, `type` varchar(50) default NULL, `rating` decimal(3,2) default NULL, `isfloat` char(1) default NULL, PRIMARY KEY (`subId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_submissions` -- LOCK TABLES `tiki_submissions` WRITE; /*!40000 ALTER TABLE `tiki_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_suggested_faq_questions` -- DROP TABLE IF EXISTS `tiki_suggested_faq_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_suggested_faq_questions` ( `sfqId` int(10) NOT NULL auto_increment, `faqId` int(10) NOT NULL default '0', `question` text, `answer` text, `created` int(14) default NULL, `user` varchar(40) default NULL, PRIMARY KEY (`sfqId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_suggested_faq_questions` -- LOCK TABLES `tiki_suggested_faq_questions` WRITE; /*!40000 ALTER TABLE `tiki_suggested_faq_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_suggested_faq_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_survey_question_options` -- DROP TABLE IF EXISTS `tiki_survey_question_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_survey_question_options` ( `optionId` int(12) NOT NULL auto_increment, `questionId` int(12) NOT NULL default '0', `qoption` text, `votes` int(10) default NULL, PRIMARY KEY (`optionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_survey_question_options` -- LOCK TABLES `tiki_survey_question_options` WRITE; /*!40000 ALTER TABLE `tiki_survey_question_options` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_survey_question_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_survey_questions` -- DROP TABLE IF EXISTS `tiki_survey_questions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_survey_questions` ( `questionId` int(12) NOT NULL auto_increment, `surveyId` int(12) NOT NULL default '0', `question` text, `options` text, `type` char(1) default NULL, `position` int(5) default NULL, `votes` int(10) default NULL, `value` int(10) default NULL, `average` decimal(4,2) default NULL, PRIMARY KEY (`questionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_survey_questions` -- LOCK TABLES `tiki_survey_questions` WRITE; /*!40000 ALTER TABLE `tiki_survey_questions` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_survey_questions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_surveys` -- DROP TABLE IF EXISTS `tiki_surveys`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_surveys` ( `surveyId` int(12) NOT NULL auto_increment, `name` varchar(200) default NULL, `description` text, `taken` int(10) default NULL, `lastTaken` int(14) default NULL, `created` int(14) default NULL, `status` char(1) default NULL, PRIMARY KEY (`surveyId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_surveys` -- LOCK TABLES `tiki_surveys` WRITE; /*!40000 ALTER TABLE `tiki_surveys` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_surveys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tags` -- DROP TABLE IF EXISTS `tiki_tags`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tags` ( `tagName` varchar(80) NOT NULL default '', `pageName` varchar(160) NOT NULL default '', `hits` int(8) default NULL, `description` varchar(200) default NULL, `data` longblob, `lastModif` int(14) default NULL, `comment` varchar(200) default NULL, `version` int(8) NOT NULL default '0', `user` varchar(40) default NULL, `ip` varchar(15) default NULL, `flag` char(1) default NULL, PRIMARY KEY (`tagName`,`pageName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tags` -- LOCK TABLES `tiki_tags` WRITE; /*!40000 ALTER TABLE `tiki_tags` DISABLE KEYS */; INSERT INTO `tiki_tags` VALUES ('VivaTest','HomePage',4,'','',1154639566,'Tiki initialization',1,'admin','0.0.0.0',NULL); /*!40000 ALTER TABLE `tiki_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_theme_control_categs` -- DROP TABLE IF EXISTS `tiki_theme_control_categs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_theme_control_categs` ( `categId` int(12) NOT NULL default '0', `theme` varchar(250) NOT NULL default '', PRIMARY KEY (`categId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_theme_control_categs` -- LOCK TABLES `tiki_theme_control_categs` WRITE; /*!40000 ALTER TABLE `tiki_theme_control_categs` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_theme_control_categs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_theme_control_objects` -- DROP TABLE IF EXISTS `tiki_theme_control_objects`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_theme_control_objects` ( `objId` varchar(250) NOT NULL default '', `type` varchar(250) NOT NULL default '', `name` varchar(250) NOT NULL default '', `theme` varchar(250) NOT NULL default '', PRIMARY KEY (`objId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_theme_control_objects` -- LOCK TABLES `tiki_theme_control_objects` WRITE; /*!40000 ALTER TABLE `tiki_theme_control_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_theme_control_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_theme_control_sections` -- DROP TABLE IF EXISTS `tiki_theme_control_sections`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_theme_control_sections` ( `section` varchar(250) NOT NULL default '', `theme` varchar(250) NOT NULL default '', PRIMARY KEY (`section`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_theme_control_sections` -- LOCK TABLES `tiki_theme_control_sections` WRITE; /*!40000 ALTER TABLE `tiki_theme_control_sections` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_theme_control_sections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_topics` -- DROP TABLE IF EXISTS `tiki_topics`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_topics` ( `topicId` int(14) NOT NULL auto_increment, `name` varchar(40) default NULL, `image_name` varchar(80) default NULL, `image_type` varchar(80) default NULL, `image_size` int(14) default NULL, `image_data` longblob, `active` char(1) default NULL, `created` int(14) default NULL, PRIMARY KEY (`topicId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_topics` -- LOCK TABLES `tiki_topics` WRITE; /*!40000 ALTER TABLE `tiki_topics` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_topics` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tracker_fields` -- DROP TABLE IF EXISTS `tiki_tracker_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tracker_fields` ( `fieldId` int(12) NOT NULL auto_increment, `trackerId` int(12) NOT NULL default '0', `name` varchar(255) default NULL, `options` text, `position` int(4) default NULL, `type` char(1) default NULL, `isMain` char(1) default NULL, `isTblVisible` char(1) default NULL, `isSearchable` char(1) default NULL, `isPublic` char(1) NOT NULL default 'n', `isHidden` char(1) NOT NULL default 'n', `isMandatory` char(1) NOT NULL default 'n', PRIMARY KEY (`fieldId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tracker_fields` -- LOCK TABLES `tiki_tracker_fields` WRITE; /*!40000 ALTER TABLE `tiki_tracker_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_tracker_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tracker_item_attachments` -- DROP TABLE IF EXISTS `tiki_tracker_item_attachments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tracker_item_attachments` ( `attId` int(12) NOT NULL auto_increment, `itemId` int(12) NOT NULL default '0', `filename` varchar(80) default NULL, `filetype` varchar(80) default NULL, `filesize` int(14) default NULL, `user` varchar(40) default NULL, `data` longblob, `longdesc` blob, `path` varchar(255) default NULL, `downloads` int(10) default NULL, `version` varchar(40) default NULL, `created` int(14) default NULL, `comment` varchar(250) default NULL, PRIMARY KEY (`attId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tracker_item_attachments` -- LOCK TABLES `tiki_tracker_item_attachments` WRITE; /*!40000 ALTER TABLE `tiki_tracker_item_attachments` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_tracker_item_attachments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tracker_item_comments` -- DROP TABLE IF EXISTS `tiki_tracker_item_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tracker_item_comments` ( `commentId` int(12) NOT NULL auto_increment, `itemId` int(12) NOT NULL default '0', `user` varchar(40) default NULL, `data` text, `title` varchar(200) default NULL, `posted` int(14) default NULL, PRIMARY KEY (`commentId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tracker_item_comments` -- LOCK TABLES `tiki_tracker_item_comments` WRITE; /*!40000 ALTER TABLE `tiki_tracker_item_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_tracker_item_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tracker_item_fields` -- DROP TABLE IF EXISTS `tiki_tracker_item_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tracker_item_fields` ( `itemId` int(12) NOT NULL default '0', `fieldId` int(12) NOT NULL default '0', `value` text, PRIMARY KEY (`itemId`,`fieldId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tracker_item_fields` -- LOCK TABLES `tiki_tracker_item_fields` WRITE; /*!40000 ALTER TABLE `tiki_tracker_item_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_tracker_item_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tracker_items` -- DROP TABLE IF EXISTS `tiki_tracker_items`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tracker_items` ( `itemId` int(12) NOT NULL auto_increment, `trackerId` int(12) NOT NULL default '0', `created` int(14) default NULL, `status` char(1) default NULL, `lastModif` int(14) default NULL, PRIMARY KEY (`itemId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tracker_items` -- LOCK TABLES `tiki_tracker_items` WRITE; /*!40000 ALTER TABLE `tiki_tracker_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_tracker_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_tracker_options` -- DROP TABLE IF EXISTS `tiki_tracker_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_tracker_options` ( `trackerId` int(12) NOT NULL default '0', `name` varchar(80) NOT NULL default '', `value` text, PRIMARY KEY (`trackerId`,`name`(30)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_tracker_options` -- LOCK TABLES `tiki_tracker_options` WRITE; /*!40000 ALTER TABLE `tiki_tracker_options` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_tracker_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_trackers` -- DROP TABLE IF EXISTS `tiki_trackers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_trackers` ( `trackerId` int(12) NOT NULL auto_increment, `name` varchar(255) default NULL, `description` text, `created` int(14) default NULL, `lastModif` int(14) default NULL, `showCreated` char(1) default NULL, `showStatus` char(1) default NULL, `showLastModif` char(1) default NULL, `useComments` char(1) default NULL, `showComments` char(1) default NULL, `useAttachments` char(1) default NULL, `showAttachments` char(1) default NULL, `orderAttachments` varchar(255) NOT NULL default 'filename,created,filesize,downloads,desc', `items` int(10) default NULL, PRIMARY KEY (`trackerId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_trackers` -- LOCK TABLES `tiki_trackers` WRITE; /*!40000 ALTER TABLE `tiki_trackers` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_trackers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_translated_objects` -- DROP TABLE IF EXISTS `tiki_translated_objects`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_translated_objects` ( `traId` int(14) NOT NULL auto_increment, `type` varchar(50) NOT NULL default '', `objId` varchar(255) NOT NULL default '', `lang` varchar(16) default NULL, PRIMARY KEY (`type`,`objId`), KEY `tradid` (`traId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_translated_objects` -- LOCK TABLES `tiki_translated_objects` WRITE; /*!40000 ALTER TABLE `tiki_translated_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_translated_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_untranslated` -- DROP TABLE IF EXISTS `tiki_untranslated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_untranslated` ( `id` int(14) NOT NULL auto_increment, `source` tinyblob NOT NULL, `lang` varchar(16) NOT NULL default '', PRIMARY KEY (`source`(255),`lang`), UNIQUE KEY `id` (`id`), KEY `id_2` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_untranslated` -- LOCK TABLES `tiki_untranslated` WRITE; /*!40000 ALTER TABLE `tiki_untranslated` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_untranslated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_answers` -- DROP TABLE IF EXISTS `tiki_user_answers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_answers` ( `userResultId` int(10) NOT NULL default '0', `quizId` int(10) NOT NULL default '0', `questionId` int(10) NOT NULL default '0', `optionId` int(10) NOT NULL default '0', PRIMARY KEY (`userResultId`,`quizId`,`questionId`,`optionId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_answers` -- LOCK TABLES `tiki_user_answers` WRITE; /*!40000 ALTER TABLE `tiki_user_answers` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_answers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_answers_uploads` -- DROP TABLE IF EXISTS `tiki_user_answers_uploads`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_answers_uploads` ( `answerUploadId` int(4) NOT NULL auto_increment, `userResultId` int(11) NOT NULL default '0', `questionId` int(11) NOT NULL default '0', `filename` varchar(255) NOT NULL default '', `filetype` varchar(64) NOT NULL default '', `filesize` varchar(255) NOT NULL default '', `filecontent` longblob NOT NULL, PRIMARY KEY (`answerUploadId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_answers_uploads` -- LOCK TABLES `tiki_user_answers_uploads` WRITE; /*!40000 ALTER TABLE `tiki_user_answers_uploads` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_answers_uploads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_assigned_modules` -- DROP TABLE IF EXISTS `tiki_user_assigned_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_assigned_modules` ( `name` varchar(200) NOT NULL default '', `position` char(1) default NULL, `ord` int(4) default NULL, `type` char(1) default NULL, `user` varchar(40) NOT NULL default '', PRIMARY KEY (`name`,`user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_assigned_modules` -- LOCK TABLES `tiki_user_assigned_modules` WRITE; /*!40000 ALTER TABLE `tiki_user_assigned_modules` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_assigned_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_bookmarks_folders` -- DROP TABLE IF EXISTS `tiki_user_bookmarks_folders`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_bookmarks_folders` ( `folderId` int(12) NOT NULL auto_increment, `parentId` int(12) default NULL, `user` varchar(40) NOT NULL default '', `name` varchar(30) default NULL, PRIMARY KEY (`user`,`folderId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_bookmarks_folders` -- LOCK TABLES `tiki_user_bookmarks_folders` WRITE; /*!40000 ALTER TABLE `tiki_user_bookmarks_folders` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_bookmarks_folders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_bookmarks_urls` -- DROP TABLE IF EXISTS `tiki_user_bookmarks_urls`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_bookmarks_urls` ( `urlId` int(12) NOT NULL auto_increment, `name` varchar(30) default NULL, `url` varchar(250) default NULL, `data` longblob, `lastUpdated` int(14) default NULL, `folderId` int(12) NOT NULL default '0', `user` varchar(40) NOT NULL default '', PRIMARY KEY (`urlId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_bookmarks_urls` -- LOCK TABLES `tiki_user_bookmarks_urls` WRITE; /*!40000 ALTER TABLE `tiki_user_bookmarks_urls` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_bookmarks_urls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_mail_accounts` -- DROP TABLE IF EXISTS `tiki_user_mail_accounts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_mail_accounts` ( `accountId` int(12) NOT NULL auto_increment, `user` varchar(40) NOT NULL default '', `account` varchar(50) NOT NULL default '', `pop` varchar(255) default NULL, `current` char(1) default NULL, `port` int(4) default NULL, `username` varchar(100) default NULL, `pass` varchar(100) default NULL, `msgs` int(4) default NULL, `smtp` varchar(255) default NULL, `useAuth` char(1) default NULL, `smtpPort` int(4) default NULL, PRIMARY KEY (`accountId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_mail_accounts` -- LOCK TABLES `tiki_user_mail_accounts` WRITE; /*!40000 ALTER TABLE `tiki_user_mail_accounts` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_mail_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_menus` -- DROP TABLE IF EXISTS `tiki_user_menus`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_menus` ( `user` varchar(40) NOT NULL default '', `menuId` int(12) NOT NULL auto_increment, `url` varchar(250) default NULL, `name` varchar(40) default NULL, `position` int(4) default NULL, `mode` char(1) default NULL, PRIMARY KEY (`menuId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_menus` -- LOCK TABLES `tiki_user_menus` WRITE; /*!40000 ALTER TABLE `tiki_user_menus` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_menus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_modules` -- DROP TABLE IF EXISTS `tiki_user_modules`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_modules` ( `name` varchar(200) NOT NULL default '', `title` varchar(40) default NULL, `data` longblob, `parse` char(1) default NULL, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_modules` -- LOCK TABLES `tiki_user_modules` WRITE; /*!40000 ALTER TABLE `tiki_user_modules` DISABLE KEYS */; INSERT INTO `tiki_user_modules` VALUES ('mnu_application_menu','Menu','{menu id=42}','n'); /*!40000 ALTER TABLE `tiki_user_modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_notes` -- DROP TABLE IF EXISTS `tiki_user_notes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_notes` ( `user` varchar(40) NOT NULL default '', `noteId` int(12) NOT NULL auto_increment, `created` int(14) default NULL, `name` varchar(255) default NULL, `lastModif` int(14) default NULL, `data` text, `size` int(14) default NULL, `parse_mode` varchar(20) default NULL, PRIMARY KEY (`noteId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_notes` -- LOCK TABLES `tiki_user_notes` WRITE; /*!40000 ALTER TABLE `tiki_user_notes` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_postings` -- DROP TABLE IF EXISTS `tiki_user_postings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_postings` ( `user` varchar(40) NOT NULL default '', `posts` int(12) default NULL, `last` int(14) default NULL, `first` int(14) default NULL, `level` int(8) default NULL, PRIMARY KEY (`user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_postings` -- LOCK TABLES `tiki_user_postings` WRITE; /*!40000 ALTER TABLE `tiki_user_postings` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_postings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_preferences` -- DROP TABLE IF EXISTS `tiki_user_preferences`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_preferences` ( `user` varchar(40) NOT NULL default '', `prefName` varchar(40) NOT NULL default '', `value` varchar(250) default NULL, PRIMARY KEY (`user`,`prefName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_preferences` -- LOCK TABLES `tiki_user_preferences` WRITE; /*!40000 ALTER TABLE `tiki_user_preferences` DISABLE KEYS */; INSERT INTO `tiki_user_preferences` VALUES ('admin','realName','System Administrator'),('admin','ticket','f71fcb6fe35bf2a46c9c5521b0169af6'); /*!40000 ALTER TABLE `tiki_user_preferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_quizzes` -- DROP TABLE IF EXISTS `tiki_user_quizzes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_quizzes` ( `user` varchar(40) default NULL, `quizId` int(10) default NULL, `timestamp` int(14) default NULL, `timeTaken` int(14) default NULL, `points` int(12) default NULL, `maxPoints` int(12) default NULL, `resultId` int(10) default NULL, `userResultId` int(10) NOT NULL auto_increment, PRIMARY KEY (`userResultId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_quizzes` -- LOCK TABLES `tiki_user_quizzes` WRITE; /*!40000 ALTER TABLE `tiki_user_quizzes` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_quizzes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_taken_quizzes` -- DROP TABLE IF EXISTS `tiki_user_taken_quizzes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_taken_quizzes` ( `user` varchar(40) NOT NULL default '', `quizId` varchar(255) NOT NULL default '', PRIMARY KEY (`user`,`quizId`(100)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_taken_quizzes` -- LOCK TABLES `tiki_user_taken_quizzes` WRITE; /*!40000 ALTER TABLE `tiki_user_taken_quizzes` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_taken_quizzes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_tasks` -- DROP TABLE IF EXISTS `tiki_user_tasks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_tasks` ( `taskId` int(14) NOT NULL auto_increment, `last_version` int(4) NOT NULL default '0', `user` varchar(40) NOT NULL default '', `creator` varchar(200) NOT NULL default '', `public_for_group` varchar(30) default NULL, `rights_by_creator` char(1) default NULL, `created` int(14) NOT NULL default '0', `status` char(1) default NULL, `priority` int(2) default NULL, `completed` int(14) default NULL, `percentage` int(4) default NULL, PRIMARY KEY (`taskId`), UNIQUE KEY `creator` (`creator`,`created`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_tasks` -- LOCK TABLES `tiki_user_tasks` WRITE; /*!40000 ALTER TABLE `tiki_user_tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_tasks_history` -- DROP TABLE IF EXISTS `tiki_user_tasks_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_tasks_history` ( `belongs_to` int(14) NOT NULL default '0', `task_version` int(4) NOT NULL default '0', `title` varchar(250) NOT NULL default '', `description` text, `start` int(14) default NULL, `end` int(14) default NULL, `lasteditor` varchar(200) NOT NULL default '', `lastchanges` int(14) NOT NULL default '0', `priority` int(2) NOT NULL default '3', `completed` int(14) default NULL, `deleted` int(14) default NULL, `status` char(1) default NULL, `percentage` int(4) default NULL, `accepted_creator` char(1) default NULL, `accepted_user` char(1) default NULL, PRIMARY KEY (`belongs_to`,`task_version`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_tasks_history` -- LOCK TABLES `tiki_user_tasks_history` WRITE; /*!40000 ALTER TABLE `tiki_user_tasks_history` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_tasks_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_votings` -- DROP TABLE IF EXISTS `tiki_user_votings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_votings` ( `user` varchar(40) NOT NULL default '', `id` varchar(255) NOT NULL default '', `optionId` int(10) NOT NULL default '0', PRIMARY KEY (`user`,`id`(100)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_votings` -- LOCK TABLES `tiki_user_votings` WRITE; /*!40000 ALTER TABLE `tiki_user_votings` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_votings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_user_watches` -- DROP TABLE IF EXISTS `tiki_user_watches`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_user_watches` ( `user` varchar(40) NOT NULL default '', `event` varchar(40) NOT NULL default '', `object` varchar(200) NOT NULL default '', `hash` varchar(32) default NULL, `title` varchar(250) default NULL, `type` varchar(200) default NULL, `url` varchar(250) default NULL, `email` varchar(200) default NULL, PRIMARY KEY (`user`,`event`,`object`(100)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_user_watches` -- LOCK TABLES `tiki_user_watches` WRITE; /*!40000 ALTER TABLE `tiki_user_watches` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_user_watches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_userfiles` -- DROP TABLE IF EXISTS `tiki_userfiles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_userfiles` ( `user` varchar(40) NOT NULL default '', `fileId` int(12) NOT NULL auto_increment, `name` varchar(200) default NULL, `filename` varchar(200) default NULL, `filetype` varchar(200) default NULL, `filesize` varchar(200) default NULL, `data` longblob, `hits` int(8) default NULL, `isFile` char(1) default NULL, `path` varchar(255) default NULL, `created` int(14) default NULL, PRIMARY KEY (`fileId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_userfiles` -- LOCK TABLES `tiki_userfiles` WRITE; /*!40000 ALTER TABLE `tiki_userfiles` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_userfiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_userpoints` -- DROP TABLE IF EXISTS `tiki_userpoints`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_userpoints` ( `user` varchar(40) default NULL, `points` decimal(8,2) default NULL, `voted` int(8) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_userpoints` -- LOCK TABLES `tiki_userpoints` WRITE; /*!40000 ALTER TABLE `tiki_userpoints` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_userpoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_users` -- DROP TABLE IF EXISTS `tiki_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_users` ( `user` varchar(40) NOT NULL default '', `password` varchar(40) default NULL, `email` varchar(200) default NULL, `lastLogin` int(14) default NULL, PRIMARY KEY (`user`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_users` -- LOCK TABLES `tiki_users` WRITE; /*!40000 ALTER TABLE `tiki_users` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_users_score` -- DROP TABLE IF EXISTS `tiki_users_score`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_users_score` ( `user` char(40) NOT NULL default '', `event_id` char(40) NOT NULL default '', `expire` int(14) NOT NULL default '0', `tstamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`user`,`event_id`), KEY `user` (`user`,`event_id`,`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_users_score` -- LOCK TABLES `tiki_users_score` WRITE; /*!40000 ALTER TABLE `tiki_users_score` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_users_score` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_webmail_contacts` -- DROP TABLE IF EXISTS `tiki_webmail_contacts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_webmail_contacts` ( `contactId` int(12) NOT NULL auto_increment, `firstName` varchar(80) default NULL, `lastName` varchar(80) default NULL, `email` varchar(250) default NULL, `nickname` varchar(200) default NULL, `user` varchar(40) NOT NULL default '', PRIMARY KEY (`contactId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_webmail_contacts` -- LOCK TABLES `tiki_webmail_contacts` WRITE; /*!40000 ALTER TABLE `tiki_webmail_contacts` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_webmail_contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_webmail_messages` -- DROP TABLE IF EXISTS `tiki_webmail_messages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_webmail_messages` ( `accountId` int(12) NOT NULL default '0', `mailId` varchar(255) NOT NULL default '', `user` varchar(40) NOT NULL default '', `isRead` char(1) default NULL, `isReplied` char(1) default NULL, `isFlagged` char(1) default NULL, PRIMARY KEY (`accountId`,`mailId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_webmail_messages` -- LOCK TABLES `tiki_webmail_messages` WRITE; /*!40000 ALTER TABLE `tiki_webmail_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_webmail_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_wiki_attachments` -- DROP TABLE IF EXISTS `tiki_wiki_attachments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_wiki_attachments` ( `attId` int(12) NOT NULL auto_increment, `page` varchar(200) NOT NULL default '', `filename` varchar(80) default NULL, `filetype` varchar(80) default NULL, `filesize` int(14) default NULL, `user` varchar(40) default NULL, `data` longblob, `path` varchar(255) default NULL, `downloads` int(10) default NULL, `created` int(14) default NULL, `comment` varchar(250) default NULL, PRIMARY KEY (`attId`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_wiki_attachments` -- LOCK TABLES `tiki_wiki_attachments` WRITE; /*!40000 ALTER TABLE `tiki_wiki_attachments` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_wiki_attachments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tiki_zones` -- DROP TABLE IF EXISTS `tiki_zones`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tiki_zones` ( `zone` varchar(40) NOT NULL default '', PRIMARY KEY (`zone`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tiki_zones` -- LOCK TABLES `tiki_zones` WRITE; /*!40000 ALTER TABLE `tiki_zones` DISABLE KEYS */; /*!40000 ALTER TABLE `tiki_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_grouppermissions` -- DROP TABLE IF EXISTS `users_grouppermissions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users_grouppermissions` ( `groupName` varchar(255) NOT NULL default '', `permName` varchar(30) NOT NULL default '', `value` char(1) default '', PRIMARY KEY (`groupName`(30),`permName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users_grouppermissions` -- LOCK TABLES `users_grouppermissions` WRITE; /*!40000 ALTER TABLE `users_grouppermissions` DISABLE KEYS */; INSERT INTO `users_grouppermissions` VALUES ('Anonymous','tiki_p_view',''),('Anonymous','tiki_p_wiki_view_history',''),('Anonymous','tiki_p_wiki_view_comments',''),('ProductionTeam','tiki_p_wiki_view_history',''),('ProductionTeam','tiki_p_wiki_view_comments',''),('ProductionTeam','tiki_p_edit',''),('ProductionTeam','tiki_p_view',''); /*!40000 ALTER TABLE `users_grouppermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_groups` -- DROP TABLE IF EXISTS `users_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users_groups` ( `groupName` varchar(255) NOT NULL default '', `groupDesc` varchar(255) default NULL, `groupHome` varchar(255) default NULL, `usersTrackerId` int(11) default NULL, `groupTrackerId` int(11) default NULL, `usersFieldId` int(11) default NULL, `groupFieldId` int(11) default NULL, PRIMARY KEY (`groupName`(30)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users_groups` -- LOCK TABLES `users_groups` WRITE; /*!40000 ALTER TABLE `users_groups` DISABLE KEYS */; INSERT INTO `users_groups` VALUES ('Anonymous','Public users not logged',NULL,NULL,NULL,NULL,NULL),('Registered','Users logged into the system',NULL,NULL,NULL,NULL,NULL),('Avaya','Avaya Users','Avaya',0,0,NULL,NULL),('ProductionTeam','VIVA Event Production Team','',0,0,0,0); /*!40000 ALTER TABLE `users_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_objectpermissions` -- DROP TABLE IF EXISTS `users_objectpermissions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users_objectpermissions` ( `groupName` varchar(255) NOT NULL default '', `permName` varchar(30) NOT NULL default '', `objectType` varchar(20) NOT NULL default '', `objectId` varchar(32) NOT NULL default '', PRIMARY KEY (`objectId`,`objectType`,`groupName`(30),`permName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users_objectpermissions` -- LOCK TABLES `users_objectpermissions` WRITE; /*!40000 ALTER TABLE `users_objectpermissions` DISABLE KEYS */; INSERT INTO `users_objectpermissions` VALUES ('Registered','tiki_p_edit','wiki page','4aa58106a05cca61ca3bece74810fa08'),('Registered','tiki_p_view','wiki page','4aa58106a05cca61ca3bece74810fa08'),('Registered','tiki_p_wiki_view_history','wiki page','4aa58106a05cca61ca3bece74810fa08'),('Registered','tiki_p_wiki_view_comments','wiki page','4aa58106a05cca61ca3bece74810fa08'),('Registered','tiki_p_view','wiki page','4f072d89d73a5cf8a9e9188b92856404'),('ProductionTeam','tiki_p_edit','wiki page','4f072d89d73a5cf8a9e9188b92856404'),('ProductionTeam','tiki_p_wiki_view_history','wiki page','4f072d89d73a5cf8a9e9188b92856404'),('ProductionTeam','tiki_p_upload_picture','wiki page','4f072d89d73a5cf8a9e9188b92856404'),('ProductionTeam','tiki_p_edit','wiki page','2deba38aa1e70bbde380838f3d3aeb2a'),('ProductionTeam','tiki_p_view','wiki page','2deba38aa1e70bbde380838f3d3aeb2a'),('ProductionTeam','tiki_p_upload_picture','wiki page','2deba38aa1e70bbde380838f3d3aeb2a'),('ProductionTeam','tiki_p_wiki_view_history','wiki page','2deba38aa1e70bbde380838f3d3aeb2a'),('ProductionTeam','tiki_p_view','wiki page','05d5e0c97e727a3c02148b2ee26f3b72'),('ProductionTeam','tiki_p_edit','wiki page','05d5e0c97e727a3c02148b2ee26f3b72'),('ProductionTeam','tiki_p_wiki_view_history','wiki page','05d5e0c97e727a3c02148b2ee26f3b72'),('ProductionTeam','tiki_p_wiki_view_comments','wiki page','05d5e0c97e727a3c02148b2ee26f3b72'),('ProductionTeam','tiki_p_view','wiki page','6b602d2b309bb55ae83cbeeba3d094b6'),('ProductionTeam','tiki_p_edit','wiki page','6b602d2b309bb55ae83cbeeba3d094b6'),('ProductionTeam','tiki_p_wiki_view_history','wiki page','6b602d2b309bb55ae83cbeeba3d094b6'),('ProductionTeam','tiki_p_wiki_view_comments','wiki page','6b602d2b309bb55ae83cbeeba3d094b6'); /*!40000 ALTER TABLE `users_objectpermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_permissions` -- DROP TABLE IF EXISTS `users_permissions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users_permissions` ( `permName` varchar(30) NOT NULL default '', `permDesc` varchar(250) default NULL, `level` varchar(80) default NULL, `type` varchar(20) default NULL, PRIMARY KEY (`permName`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users_permissions` -- LOCK TABLES `users_permissions` WRITE; /*!40000 ALTER TABLE `users_permissions` DISABLE KEYS */; INSERT INTO `users_permissions` VALUES ('tiki_p_abort_instance','Can abort a process instance','editors','workflow'),('tiki_p_access_closed_site','Can access site when closed','admin','tiki'),('tiki_p_add_events','Can add events in the calendar','registered','calendar'),('tiki_p_admin','Administrator, can manage users groups and permissions, Hotwords and all the weblog features','admin','tiki'),('tiki_p_admin_banners','Administrator, can admin banners','admin','tiki'),('tiki_p_admin_banning','Can ban users or ips','admin','tiki'),('tiki_p_admin_calendar','Can create/admin calendars','admin','calendar'),('tiki_p_admin_categories','Can admin categories','editors','tiki'),('tiki_p_admin_charts','Can admin charts','admin','charts'),('tiki_p_admin_chat','Administrator, can create channels remove channels etc','editors','chat'),('tiki_p_admin_cms','Can admin the cms','editors','cms'),('tiki_p_admin_directory','Can admin the directory','editors','directory'),('tiki_p_admin_directory_cats','Can admin directory categories','editors','directory'),('tiki_p_admin_directory_sites','Can admin directory sites','editors','directory'),('tiki_p_admin_drawings','Can admin drawings','editors','drawings'),('tiki_p_admin_dynamic','Can admin the dynamic content system','editors','tiki'),('tiki_p_admin_faqs','Can admin faqs','editors','faqs'),('tiki_p_admin_file_galleries','Can admin file galleries','editors','file galleries'),('tiki_p_admin_forum','Can admin forums','editors','forums'),('tiki_p_admin_galleries','Can admin Image Galleries','editors','image galleries'),('tiki_p_admin_games','Can admin games','editors','games'),('tiki_p_admin_mailin','Can admin mail-in accounts','admin','tiki'),('tiki_p_admin_newsletters','Can admin newsletters','admin','newsletters'),('tiki_p_admin_quizzes','Can admin quizzes','editors','quizzes'),('tiki_p_admin_received_articles','Can admin received articles','editors','comm'),('tiki_p_admin_received_pages','Can admin received pages','editors','comm'),('tiki_p_admin_sheet','Can admin sheet','admin','sheet'),('tiki_p_admin_shoutbox','Can admin shoutbox (Edit/remove msgs)','editors','shoutbox'),('tiki_p_admin_surveys','Can admin surveys','editors','surveys'),('tiki_p_admin_trackers','Can admin trackers','editors','trackers'),('tiki_p_admin_wiki','Can admin the wiki','editors','wiki'),('tiki_p_admin_workflow','Can admin workflow processes','admin','workflow'),('tiki_p_approve_submission','Can approve submissions','editors','cms'),('tiki_p_attach_trackers','Can attach files to tracker items','registered','trackers'),('tiki_p_autoapprove_submission','Submited articles automatically approved','editors','cms'),('tiki_p_autosubmit_link','Submited links are valid','editors','directory'),('tiki_p_autoval_chart_suggestio','Autovalidate suggestions','editors','charts'),('tiki_p_batch_upload_files','Can upload zip files with files','editors','file galleries'),('tiki_p_batch_upload_images','Can upload zip files with images','editors','image galleries'),('tiki_p_batch_upload_image_dir','Can use Directory Batch Load','editors','image galleries'),('tiki_p_blog_admin','Can admin blogs','editors','blogs'),('tiki_p_blog_post','Can post to a blog','registered','blogs'),('tiki_p_broadcast','Can broadcast messages to groups','admin','messu'),('tiki_p_broadcast_all','Can broadcast messages to all user','admin','messu'),('tiki_p_cache_bookmarks','Can cache user bookmarks','admin','user'),('tiki_p_change_events','Can change events in the calendar','registered','calendar'),('tiki_p_chat','Can use the chat system','registered','chat'),('tiki_p_comment_tracker_items','Can insert comments for tracker items','basic','trackers'),('tiki_p_configure_modules','Can configure modules','registered','user'),('tiki_p_create_blogs','Can create a blog','editors','blogs'),('tiki_p_create_bookmarks','Can create user bookmarks','registered','user'),('tiki_p_create_css','Can create new css suffixed with -user','registered','tiki'),('tiki_p_create_file_galleries','Can create file galleries','editors','file galleries'),('tiki_p_create_galleries','Can create image galleries','editors','image galleries'),('tiki_p_create_tracker_items','Can create new items for trackers','registered','trackers'),('tiki_p_download_files','Can download files','basic','file galleries'),('tiki_p_edit','Can edit pages','registered','wiki'),('tiki_p_edit_article','Can edit articles','editors','cms'),('tiki_p_edit_comments','Can edit all comments','editors','comments'),('tiki_p_edit_content_templates','Can edit content templates','editors','content templates'),('tiki_p_edit_cookies','Can admin cookies','editors','tiki'),('tiki_p_edit_copyrights','Can edit copyright notices','editors','wiki'),('tiki_p_edit_drawings','Can edit drawings','basic','drawings'),('tiki_p_edit_html_pages','Can edit HTML pages','editors','html pages'),('tiki_p_edit_languages','Can edit translations and create new languages','editors','tiki'),('tiki_p_edit_sheet','Can create and edit sheets','editors','sheet'),('tiki_p_edit_structures','Can create and edit structures','editors','wiki'),('tiki_p_edit_submission','Can edit submissions','editors','cms'),('tiki_p_edit_templates','Can edit site templates','admin','tiki'),('tiki_p_view_templates','Can view site templates','admin','tiki'),('tiki_p_eph_admin','Can admin ephemerides','editors','tiki'),('tiki_p_exception_instance','Can declare an instance as exception','registered','workflow'),('tiki_p_forum_attach','Can attach to forum posts','registered','forums'),('tiki_p_forum_autoapp','Auto approve forum posts','editors','forums'),('tiki_p_forum_post','Can post in forums','registered','forums'),('tiki_p_forum_post_topic','Can start threads in forums','registered','forums'),('tiki_p_forum_read','Can read forums','basic','forums'),('tiki_p_forum_vote','Can vote comments in forums','registered','forums'),('tiki_p_forums_report','Can report msgs to moderator','registered','forums'),('tiki_p_list_users','Can list registered users','registered','community'),('tiki_p_live_support','Can use live support system','basic','support'),('tiki_p_live_support_admin','Admin live support system','admin','support'),('tiki_p_lock','Can lock pages','editors','wiki'),('tiki_p_map_create','Can create new mapfile','admin','maps'),('tiki_p_map_delete','Can delete mapfiles','admin','maps'),('tiki_p_map_edit','Can edit mapfiles','editors','maps'),('tiki_p_map_view','Can view mapfiles','basic','maps'),('tiki_p_map_view_mapfiles','Can view contents of mapfiles','registered','maps'),('tiki_p_messages','Can use the messaging system','registered','messu'),('tiki_p_minical','Can use the mini event calendar','registered','user'),('tiki_p_minor','Can save as minor edit','registered','wiki'),('tiki_p_modify_tracker_items','Can change tracker items','registered','trackers'),('tiki_p_newsreader','Can use the newsreader','registered','user'),('tiki_p_notepad','Can use the notepad','registered','user'),('tiki_p_play_games','Can play games','basic','games'),('tiki_p_post_comments','Can post new comments','registered','comments'),('tiki_p_post_shoutbox','Can post messages in shoutbox','basic','shoutbox'),('tiki_p_read_article','Can read articles','basic','cms'),('tiki_p_read_blog','Can read blogs','basic','blogs'),('tiki_p_read_comments','Can read comments','basic','comments'),('tiki_p_remove','Can remove','editors','wiki'),('tiki_p_remove_article','Can remove articles','editors','cms'),('tiki_p_remove_comments','Can delete comments','editors','comments'),('tiki_p_remove_submission','Can remove submissions','editors','cms'),('tiki_p_rename','Can rename pages','editors','wiki'),('tiki_p_rollback','Can rollback pages','editors','wiki'),('tiki_p_send_articles','Can send articles to other sites','editors','comm'),('tiki_p_send_instance','Can send instances after completion','registered','workflow'),('tiki_p_send_newsletters','Can send newsletters','editors','newsletters'),('tiki_p_send_pages','Can send pages to other sites','registered','comm'),('tiki_p_sendme_articles','Can send articles to this site','registered','comm'),('tiki_p_sendme_pages','Can send pages to this site','registered','comm'),('tiki_p_submit_article','Can submit articles','basic','cms'),('tiki_p_submit_link','Can submit sites to the directory','basic','directory'),('tiki_p_subscribe_email','Can subscribe any email to newsletters','editors','newsletters'),('tiki_p_subscribe_newsletters','Can subscribe to newsletters','basic','newsletters'),('tiki_p_suggest_chart_item','Can suggest items','basic','charts'),('tiki_p_suggest_faq','Can suggest faq questions','basic','faqs'),('tiki_p_take_quiz','Can take quizzes','basic','quizzes'),('tiki_p_take_survey','Can take surveys','basic','surveys'),('tiki_p_tasks','Can use tasks','registered','user'),('tiki_p_topic_read','Can read a topic (Applies only to individual topic perms)','basic','topics'),('tiki_p_tracker_view_ratings','Can view rating result for tracker items','basic','trackers'),('tiki_p_tracker_vote_ratings','Can vote a rating for tracker items','registered','trackers'),('tiki_p_upload_files','Can upload files','registered','file galleries'),('tiki_p_upload_images','Can upload images','registered','image galleries'),('tiki_p_upload_picture','Can upload pictures to wiki pages','registered','wiki'),('tiki_p_use_HTML','Can use HTML in pages','editors','tiki'),('tiki_p_use_content_templates','Can use content templates','registered','content templates'),('tiki_p_use_webmail','Can use webmail','registered','webmail'),('tiki_p_use_workflow','Can execute workflow activities','registered','workflow'),('tiki_p_userfiles','Can upload personal files','registered','user'),('tiki_p_usermenu','Can create items in personal menu','registered','user'),('tiki_p_validate_links','Can validate submited links','editors','directory'),('tiki_p_view','Can view page/pages','basic','wiki'),('tiki_p_view_calendar','Can browse the calendar','basic','calendar'),('tiki_p_view_categories','Can browse categories','basic','tiki'),('tiki_p_view_chart','Can view charts','basic','charts'),('tiki_p_view_directory','Can use the directory','basic','directory'),('tiki_p_view_eph','Can view ephemerides','registered','tiki'),('tiki_p_view_faqs','Can view faqs','basic','faqs'),('tiki_p_view_file_gallery','Can view file galleries','basic','file galleries'),('tiki_p_view_html_pages','Can view HTML pages','basic','html pages'),('tiki_p_view_image_gallery','Can view image galleries','basic','image galleries'),('tiki_p_view_quiz_stats','Can view quiz stats','basic','quizzes'),('tiki_p_view_referer_stats','Can view referer stats','editors','tiki'),('tiki_p_view_sheet','Can view sheet','basic','sheet'),('tiki_p_view_sheet_history','Can view sheet history','admin','sheet'),('tiki_p_view_shoutbox','Can view shoutbox','basic','shoutbox'),('tiki_p_view_stats','Can view site stats','basic','tiki'),('tiki_p_view_survey_stats','Can view survey stats','basic','surveys'),('tiki_p_view_trackers','Can view trackers','basic','trackers'),('tiki_p_view_trackers_closed','Can view trackers closed items','registered','trackers'),('tiki_p_view_trackers_pending','Can view trackers pending items','editors','trackers'),('tiki_p_view_tiki_calendar','Can view TikiWiki tools calendar','basic','calendar'),('tiki_p_view_user_results','Can view user quiz results','editors','quizzes'),('tiki_p_vote_chart','Can vote','basic','charts'),('tiki_p_vote_comments','Can vote comments','registered','comments'),('tiki_p_vote_poll','Can vote polls','basic','tiki'),('tiki_p_wiki_admin_attachments','Can admin attachments to wiki pages','editors','wiki'),('tiki_p_wiki_attach_files','Can attach files to wiki pages','registered','wiki'),('tiki_p_wiki_view_attachments','Can view wiki attachments and download','registered','wiki'),('tiki_p_wiki_view_comments','Can view wiki comments','basic','wiki'),('tiki_p_wiki_view_history','Can view wiki history','basic','wiki'),('tiki_p_wiki_view_ratings','Can view rating of wiki pages','basic','wiki'),('tiki_p_wiki_vote_ratings','Can participate to rating of wiki pages','registered','wiki'),('tiki_p_wiki_admin_ratings','Can add and change ratings on wiki pages','admin','wiki'),('tiki_p_admin_users','Can admin users','admin','user'),('tiki_p_tasks_send','Can send tasks to other users','registered','user'),('tiki_p_tasks_receive','Can receive tasks from other users','registered','user'),('tiki_p_tasks_admin','Can admin public tasks','admin','user'),('tiki_p_admin_rssmodules','Can admin rss modules','admin','tiki'),('tiki_p_admin_polls','Can admin polls','admin','tiki'),('tiki_p_admin_objects','Can edit object permissions','admin','tiki'),('tiki_p_edit_dynvar','Can edit dynamic variables','editors','wiki'),('tiki_p_admin_integrator','Can admin integrator repositories and rules','admin','tiki'),('tiki_p_view_integrator','Can view integrated repositories','basic','tiki'); /*!40000 ALTER TABLE `users_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_usergroups` -- DROP TABLE IF EXISTS `users_usergroups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users_usergroups` ( `userId` int(8) NOT NULL default '0', `groupName` varchar(255) NOT NULL default '', PRIMARY KEY (`userId`,`groupName`(30)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users_usergroups` -- LOCK TABLES `users_usergroups` WRITE; /*!40000 ALTER TABLE `users_usergroups` DISABLE KEYS */; INSERT INTO `users_usergroups` VALUES (2,'Registered'),(3,'Registered'),(4,'Registered'),(3,'ProductionTeam'),(4,'ProductionTeam'),(2,'ProductionTeam'),(5,'Registered'),(6,'Registered'),(7,'Registered'),(8,'Registered'),(9,'Registered'),(10,'Registered'),(12,'Registered'),(13,'Registered'),(13,'ProductionTeam'),(6,'ProductionTeam'),(9,'ProductionTeam'),(8,'ProductionTeam'),(7,'ProductionTeam'),(12,'ProductionTeam'),(5,'ProductionTeam'),(10,'ProductionTeam'); /*!40000 ALTER TABLE `users_usergroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users_users` -- DROP TABLE IF EXISTS `users_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users_users` ( `userId` int(8) NOT NULL auto_increment, `email` varchar(200) default NULL, `login` varchar(40) NOT NULL default '', `password` varchar(30) default '', `provpass` varchar(30) default NULL, `default_group` varchar(255) default NULL, `lastLogin` int(14) default NULL, `currentLogin` int(14) default NULL, `registrationDate` int(14) default NULL, `challenge` varchar(32) default NULL, `pass_due` int(14) default NULL, `hash` varchar(32) default NULL, `created` int(14) default NULL, `avatarName` varchar(80) default NULL, `avatarSize` int(14) default NULL, `avatarFileType` varchar(250) default NULL, `avatarData` longblob, `avatarLibName` varchar(200) default NULL, `avatarType` char(1) default NULL, `score` int(11) NOT NULL default '0', PRIMARY KEY (`userId`), KEY `score` (`score`) ) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users_users` -- LOCK TABLES `users_users` WRITE; /*!40000 ALTER TABLE `users_users` DISABLE KEYS */; INSERT INTO `users_users` VALUES (1,'','admin','','',NULL,1165273916,1165617878,NULL,NULL,1240953186,'522504532f8cf34dfddb1a07fa57cd55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,'smackey@getviva.com','smackey','','','Registered',1191871410,1191877810,1154640196,NULL,1240953796,'20b880f6dbb238b5d9e34f1aca6e20bf',1154640196,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,'birey@getviva.com','birey','','',NULL,1165435953,1166559762,1154640220,NULL,1240953820,'06585a877322af569e8127c0fcd96cc9',1154640220,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,'shannon@getviva.com','shannon','','',NULL,1154642039,1154644853,1154640246,NULL,1240953846,'5d83c91e8a49144952de2e92f5ab50e3',1154640246,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,'rich@getviva.com','rsizemore','','',NULL,1154647606,1154647606,1154643625,NULL,1240957225,'9fc45669299360a4324afffeb9e76cb9',1154643625,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'emily@getviva.com','emily','','',NULL,NULL,NULL,1154643696,NULL,1240957296,'1df56ea25b9d15ed36ff577832fdfbc5',1154643696,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,'lgreene@getviva.com','lgreene','','',NULL,1156277291,1156301019,1154643717,NULL,1240957317,'47a6ebdbb02593d90d36cad9b610d566',1154643717,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,'jzastrow@getviva.com','jzastrow','','',NULL,1166040261,1166040261,1154643786,NULL,1240957386,'8a0e789f1df9434d661954de22046425',1154643786,NULL,NULL,NULL,NULL,NULL,NULL,0),(9,'handerson@getviva.com','handerson','','',NULL,NULL,NULL,1154643805,NULL,1240957405,'a01de2acbbaa5eeaf8a0e3927bb035f8',1154643805,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,'tguo@getviva.com','tguo','','',NULL,NULL,NULL,1154643818,NULL,1240957418,'5920bb68dc28f65a7f2feb6c056fb356',1154643818,NULL,NULL,NULL,NULL,NULL,NULL,0),(12,'msprinckmoller@getviva.com','msprinckmoller','','',NULL,NULL,NULL,1154643978,NULL,1240957578,'b0ed7d1a9bafe69d4aae81afdee9177e',1154643978,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,'cacosta@getviva.com','cacosta','','',NULL,NULL,NULL,1154643997,NULL,1240957597,'79a03b6011de5f1fa20c225086d6df4b',1154643997,NULL,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `users_users` 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-11-18 12:58:21