Sunday, July 4, 2010

Reinstall Drupal tables

-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 03, 2010 at 06:06 PM
-- Server version: 5.0.91
-- PHP Version: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!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 */;

--
-- Database: `qphan_drpl3`
--

-- --------------------------------------------------------

--
-- Table structure for table `access`
--

DROP TABLE IF EXISTS `access`;
CREATE TABLE IF NOT EXISTS `access` (
`aid` int(11) NOT NULL auto_increment,
`mask` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`status` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `access`
--


-- --------------------------------------------------------

--
-- Table structure for table `actions`
--

DROP TABLE IF EXISTS `actions`;
CREATE TABLE IF NOT EXISTS `actions` (
`aid` varchar(255) NOT NULL default '0',
`type` varchar(32) NOT NULL default '',
`callback` varchar(255) NOT NULL default '',
`parameters` longtext NOT NULL,
`description` varchar(255) NOT NULL default '0',
PRIMARY KEY (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `actions`
--

INSERT INTO `actions` (`aid`, `type`, `callback`, `parameters`, `description`) VALUES
('comment_unpublish_action', 'comment', 'comment_unpublish_action', '', 'Unpublish comment'),
('node_publish_action', 'node', 'node_publish_action', '', 'Publish post'),
('node_unpublish_action', 'node', 'node_unpublish_action', '', 'Unpublish post'),
('node_make_sticky_action', 'node', 'node_make_sticky_action', '', 'Make post sticky'),
('node_make_unsticky_action', 'node', 'node_make_unsticky_action', '', 'Make post unsticky'),
('node_promote_action', 'node', 'node_promote_action', '', 'Promote post to front page'),
('node_unpromote_action', 'node', 'node_unpromote_action', '', 'Remove post from front page'),
('node_save_action', 'node', 'node_save_action', '', 'Save post'),
('user_block_user_action', 'user', 'user_block_user_action', '', 'Block current user'),
('user_block_ip_action', 'user', 'user_block_ip_action', '', 'Ban IP address of current user');

-- --------------------------------------------------------

--
-- Table structure for table `actions_aid`
--

DROP TABLE IF EXISTS `actions_aid`;
CREATE TABLE IF NOT EXISTS `actions_aid` (
`aid` int(10) unsigned NOT NULL auto_increment,
PRIMARY KEY (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `actions_aid`
--


-- --------------------------------------------------------

--
-- Table structure for table `authmap`
--

DROP TABLE IF EXISTS `authmap`;
CREATE TABLE IF NOT EXISTS `authmap` (
`aid` int(10) unsigned NOT NULL auto_increment,
`uid` int(11) NOT NULL default '0',
`authname` varchar(128) NOT NULL default '',
`module` varchar(128) NOT NULL default '',
PRIMARY KEY (`aid`),
UNIQUE KEY `authname` (`authname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `authmap`
--


-- --------------------------------------------------------

--
-- Table structure for table `batch`
--

DROP TABLE IF EXISTS `batch`;
CREATE TABLE IF NOT EXISTS `batch` (
`bid` int(10) unsigned NOT NULL auto_increment,
`token` varchar(64) NOT NULL,
`timestamp` int(11) NOT NULL,
`batch` longtext,
PRIMARY KEY (`bid`),
KEY `token` (`token`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `batch`
--


-- --------------------------------------------------------

--
-- Table structure for table `blocks`
--

DROP TABLE IF EXISTS `blocks`;
CREATE TABLE IF NOT EXISTS `blocks` (
`bid` int(11) NOT NULL auto_increment,
`module` varchar(64) NOT NULL default '',
`delta` varchar(32) NOT NULL default '0',
`theme` varchar(64) NOT NULL default '',
`status` tinyint(4) NOT NULL default '0',
`weight` tinyint(4) NOT NULL default '0',
`region` varchar(64) NOT NULL default '',
`custom` tinyint(4) NOT NULL default '0',
`throttle` tinyint(4) NOT NULL default '0',
`visibility` tinyint(4) NOT NULL default '0',
`pages` text NOT NULL,
`title` varchar(64) NOT NULL default '',
`cache` tinyint(4) NOT NULL default '1',
PRIMARY KEY (`bid`),
UNIQUE KEY `tmd` (`theme`,`module`,`delta`),
KEY `list` (`theme`,`status`,`region`,`weight`,`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `blocks`
--

INSERT INTO `blocks` (`bid`, `module`, `delta`, `theme`, `status`, `weight`, `region`, `custom`, `throttle`, `visibility`, `pages`, `title`, `cache`) VALUES
(1, 'user', '0', 'garland', 1, 0, 'left', 0, 0, 0, '', '', -1),
(2, 'user', '1', 'garland', 1, 0, 'left', 0, 0, 0, '', '', -1),
(3, 'system', '0', 'garland', 1, 10, 'footer', 0, 0, 0, '', '', -1);

-- --------------------------------------------------------

--
-- Table structure for table `blocks_roles`
--

DROP TABLE IF EXISTS `blocks_roles`;
CREATE TABLE IF NOT EXISTS `blocks_roles` (
`module` varchar(64) NOT NULL,
`delta` varchar(32) NOT NULL,
`rid` int(10) unsigned NOT NULL,
PRIMARY KEY (`module`,`delta`,`rid`),
KEY `rid` (`rid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `blocks_roles`
--


-- --------------------------------------------------------

--
-- Table structure for table `boxes`
--

DROP TABLE IF EXISTS `boxes`;
CREATE TABLE IF NOT EXISTS `boxes` (
`bid` int(10) unsigned NOT NULL auto_increment,
`body` longtext,
`info` varchar(128) NOT NULL default '',
`format` smallint(6) NOT NULL default '0',
PRIMARY KEY (`bid`),
UNIQUE KEY `info` (`info`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `boxes`
--


-- --------------------------------------------------------

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
CREATE TABLE IF NOT EXISTS `cache` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache`
--

INSERT INTO `cache` (`cid`, `data`, `expire`, `created`, `headers`, `serialized`) VALUES
('variables', 0x613a31393a7b733a31333a227468656d655f64656661756c74223b733a373a226761726c616e64223b733a31333a2266696c7465725f68746d6c5f31223b693a313b733a31383a226e6f64655f6f7074696f6e735f666f72756d223b613a313a7b693a303b733a363a22737461747573223b7d733a31383a2264727570616c5f707269766174655f6b6579223b733a36343a2238303034323335343938633335313062663833386463653039653165386137663763353632396266396539343065323565373439363436333663313834313130223b733a31303a226d656e755f6d61736b73223b613a31373a7b693a303b693a36323b693a313b693a36313b693a323b693a35393b693a333b693a33313b693a343b693a33303b693a353b693a32393b693a363b693a32343b693a373b693a32313b693a383b693a31353b693a393b693a31343b693a31303b693a31313b693a31313b693a373b693a31323b693a363b693a31333b693a353b693a31343b693a333b693a31353b693a323b693a31363b693a313b7d733a31323a22696e7374616c6c5f7461736b223b733a343a22646f6e65223b733a31333a226d656e755f657870616e646564223b613a303a7b7d733a32313a22646174655f64656661756c745f74696d657a6f6e65223b733a313a2230223b733a32333a22757365725f656d61696c5f766572696669636174696f6e223b623a313b733a393a22636c65616e5f75726c223b733a313a2230223b733a31323a22696e7374616c6c5f74696d65223b693a313237383139333738343b733a31373a226e6f64655f6f7074696f6e735f70616765223b613a313a7b693a303b733a363a22737461747573223b7d733a31323a22636f6d6d656e745f70616765223b693a303b733a31343a227468656d655f73657474696e6773223b613a313a7b733a32313a22746f67676c655f6e6f64655f696e666f5f70616765223b623a303b7d733a32353a2264727570616c5f687474705f726571756573745f6661696c73223b623a303b733a31393a226373735f6a735f71756572795f737472696e67223b733a32303a225730303030303030303030303030303030303030223b733a31353a22696e7374616c6c5f70726f66696c65223b733a373a2264656661756c74223b733a31373a227570646174655f6c6173745f636865636b223b693a313237383139333738343b733a393a2263726f6e5f6c617374223b693a313237383139333738343b7d, 0, 1278194320, '', 1);
INSERT INTO `cache` (`cid`, `data`, `expire`, `created`, `headers`, `serialized`) VALUES
('theme_registry:garland', 0x613a3132323a7b733a32343a22626c6f636b5f61646d696e5f646973706c61795f666f726d223b613a383a7b733a383a2274656d706c617465223b733a33383a226d6f64756c65732f626c6f636b2f626c6f636b2d61646d696e2d646973706c61792d666f726d223b733a343a2266696c65223b733a31353a22626c6f636b2e61646d696e2e696e63223b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31333a226d6f64756c65732f626c6f636b223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33313a222e2f6d6f64756c65732f626c6f636b2f626c6f636b2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31333a226d6f64756c65732f626c6f636b223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a34343a2274656d706c6174655f70726570726f636573735f626c6f636b5f61646d696e5f646973706c61795f666f726d223b7d7d733a31373a22636f6c6f725f736368656d655f666f726d223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31333a226d6f64756c65732f636f6c6f72223b733a383a2266756e6374696f6e223b733a32333a227468656d655f636f6c6f725f736368656d655f666f726d223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31333a226d6f64756c65732f636f6c6f72223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31333a22636f6d6d656e745f626c6f636b223b613a373a7b733a393a22617267756d656e7473223b613a303a7b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a31393a227468656d655f636f6d6d656e745f626c6f636b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32323a22636f6d6d656e745f61646d696e5f6f76657276696577223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32383a227468656d655f636f6d6d656e745f61646d696e5f6f76657276696577223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31353a22636f6d6d656e745f70726576696577223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b733a353a226c696e6b73223b613a303a7b7d733a373a2276697369626c65223b693a313b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32313a227468656d655f636f6d6d656e745f70726576696577223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a22636f6d6d656e745f76696577223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b733a353a226c696e6b73223b613a303a7b7d733a373a2276697369626c65223b693a313b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a31383a227468656d655f636f6d6d656e745f76696577223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a22636f6d6d656e745f636f6e74726f6c73223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32323a227468656d655f636f6d6d656e745f636f6e74726f6c73223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a373a22636f6d6d656e74223b613a383a7b733a383a2274656d706c617465223b733a373a22636f6d6d656e74223b733a343a2270617468223b733a31343a227468656d65732f6761726c616e64223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a333a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b733a353a226c696e6b73223b613a303a7b7d7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a32373a2274656d706c6174655f70726570726f636573735f636f6d6d656e74223b7d7d733a31343a22636f6d6d656e745f666f6c646564223b613a373a7b733a383a2274656d706c617465223b733a33303a226d6f64756c65732f636f6d6d656e742f636f6d6d656e742d666f6c646564223b733a393a22617267756d656e7473223b613a313a7b733a373a22636f6d6d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a33343a2274656d706c6174655f70726570726f636573735f636f6d6d656e745f666f6c646564223b7d7d733a32323a22636f6d6d656e745f666c61745f636f6c6c6170736564223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32383a227468656d655f636f6d6d656e745f666c61745f636f6c6c6170736564223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32313a22636f6d6d656e745f666c61745f657870616e646564223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32373a227468656d655f636f6d6d656e745f666c61745f657870616e646564223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32343a22636f6d6d656e745f7468726561645f636f6c6c6170736564223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a33303a227468656d655f636f6d6d656e745f7468726561645f636f6c6c6170736564223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32333a22636f6d6d656e745f7468726561645f657870616e646564223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a22636f6d6d656e74223b4e3b733a343a226e6f6465223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32393a227468656d655f636f6d6d656e745f7468726561645f657870616e646564223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32323a22636f6d6d656e745f706f73745f666f7262696464656e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a333a226e6964223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a383a2266756e6374696f6e223b733a32383a227468656d655f636f6d6d656e745f706f73745f666f7262696464656e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31353a22636f6d6d656e745f77726170706572223b613a373a7b733a383a2274656d706c617465223b733a33313a226d6f64756c65732f636f6d6d656e742f636f6d6d656e742d77726170706572223b733a393a22617267756d656e7473223b613a323a7b733a373a22636f6e74656e74223b4e3b733a343a226e6f6465223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31353a226d6f64756c65732f636f6d6d656e74223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a333a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a33353a2274656d706c6174655f70726570726f636573735f636f6d6d656e745f77726170706572223b693a323b733a33343a226761726c616e645f70726570726f636573735f636f6d6d656e745f77726170706572223b7d7d733a31373a22636f6d6d656e745f7375626d6974746564223b613a373a7b733a383a2266756e6374696f6e223b733a32393a2270687074656d706c6174655f636f6d6d656e745f7375626d6974746564223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a313a7b733a373a22636f6d6d656e74223b4e3b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31353a226d6f64756c65732f636f6d6d656e74223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31333a2264626c6f675f66696c74657273223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31333a226d6f64756c65732f64626c6f67223b733a383a2266756e6374696f6e223b733a31393a227468656d655f64626c6f675f66696c74657273223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31333a226d6f64756c65732f64626c6f67223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32313a2266696c7465725f61646d696e5f6f76657276696577223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31363a2266696c7465722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f66696c746572223b733a383a2266756e6374696f6e223b733a32373a227468656d655f66696c7465725f61646d696e5f6f76657276696577223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f66696c7465722f66696c7465722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f66696c746572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31383a2266696c7465725f61646d696e5f6f72646572223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31363a2266696c7465722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f66696c746572223b733a383a2266756e6374696f6e223b733a32343a227468656d655f66696c7465725f61646d696e5f6f72646572223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f66696c7465722f66696c7465722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f66696c746572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31313a2266696c7465725f74697073223b613a383a7b733a393a22617267756d656e7473223b613a333a7b733a343a2274697073223b4e3b733a343a226c6f6e67223b623a303b733a353a226578747261223b733a303a22223b7d733a343a2266696c65223b733a31363a2266696c7465722e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f66696c746572223b733a383a2266756e6374696f6e223b733a31373a227468656d655f66696c7465725f74697073223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f66696c7465722f66696c7465722e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f66696c746572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32313a2266696c7465725f746970735f6d6f72655f696e666f223b613a373a7b733a393a22617267756d656e7473223b613a303a7b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f66696c746572223b733a383a2266756e6374696f6e223b733a32373a227468656d655f66696c7465725f746970735f6d6f72655f696e666f223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f66696c746572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31383a226d656e755f6f766572766965775f666f726d223b613a383a7b733a343a2266696c65223b733a31343a226d656e752e61646d696e2e696e63223b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6d656e75223b733a383a2266756e6374696f6e223b733a32343a227468656d655f6d656e755f6f766572766965775f666f726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6d656e752f6d656e752e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6d656e75223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a226e6f6465223b613a383a7b733a383a2274656d706c617465223b733a343a226e6f6465223b733a343a2270617468223b733a31343a227468656d65732f6761726c616e64223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a333a7b733a343a226e6f6465223b4e3b733a363a22746561736572223b623a303b733a343a2270616765223b623a303b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a32343a2274656d706c6174655f70726570726f636573735f6e6f6465223b7d7d733a393a226e6f64655f6c697374223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a353a226974656d73223b4e3b733a353a227469746c65223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a31353a227468656d655f6e6f64655f6c697374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31373a226e6f64655f7365617263685f61646d696e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a32333a227468656d655f6e6f64655f7365617263685f61646d696e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a226e6f64655f66696c7465725f666f726d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a226e6f64652e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a32323a227468656d655f6e6f64655f66696c7465725f666f726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6e6f64652f6e6f64652e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a226e6f64655f66696c74657273223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a226e6f64652e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a31383a227468656d655f6e6f64655f66696c74657273223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6e6f64652f6e6f64652e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a226e6f64655f61646d696e5f6e6f646573223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a226e6f64652e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a32323a227468656d655f6e6f64655f61646d696e5f6e6f646573223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6e6f64652f6e6f64652e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31333a226e6f64655f6164645f6c697374223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a373a22636f6e74656e74223b4e3b7d733a343a2266696c65223b733a31343a226e6f64652e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a31393a227468656d655f6e6f64655f6164645f6c697374223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6e6f64652f6e6f64652e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a226e6f64655f666f726d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a226e6f64652e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a31353a227468656d655f6e6f64655f666f726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6e6f64652f6e6f64652e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a226e6f64655f70726576696577223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a226e6f6465223b4e3b7d733a343a2266696c65223b733a31343a226e6f64652e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a31383a227468656d655f6e6f64655f70726576696577223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f6e6f64652f6e6f64652e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a226e6f64655f6c6f675f6d657373616765223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a333a226c6f67223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f6e6f6465223b733a383a2266756e6374696f6e223b733a32323a227468656d655f6e6f64655f6c6f675f6d657373616765223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a226e6f64655f7375626d6974746564223b613a373a7b733a383a2266756e6374696f6e223b733a32363a2270687074656d706c6174655f6e6f64655f7375626d6974746564223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a313a7b733a343a226e6f6465223b4e3b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31323a226d6f64756c65732f6e6f6465223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31313a22706c616365686f6c646572223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a2274657874223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31373a227468656d655f706c616365686f6c646572223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a2270616765223b613a383a7b733a383a2274656d706c617465223b733a343a2270616765223b733a343a2270617468223b733a31343a227468656d65732f6761726c616e64223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a333a7b733a373a22636f6e74656e74223b4e3b733a31313a2273686f775f626c6f636b73223b623a313b733a31333a2273686f775f6d65737361676573223b623a313b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31343a226d6f64756c65732f73797374656d223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a333a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a32343a2274656d706c6174655f70726570726f636573735f70616765223b693a323b733a32373a2270687074656d706c6174655f70726570726f636573735f70616765223b7d7d733a31363a226d61696e74656e616e63655f70616765223b613a383a7b733a383a2274656d706c617465223b733a31363a226d61696e74656e616e63652d70616765223b733a343a2270617468223b733a31343a227468656d65732f6761726c616e64223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a333a7b733a373a22636f6e74656e74223b4e3b733a31313a2273686f775f626c6f636b73223b623a313b733a31333a2273686f775f6d65737361676573223b623a313b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31343a226d6f64756c65732f73797374656d223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31313a227570646174655f70616765223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a22636f6e74656e74223b4e3b733a31333a2273686f775f6d65737361676573223b623a313b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31373a227468656d655f7570646174655f70616765223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a22696e7374616c6c5f70616765223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22636f6e74656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31383a227468656d655f696e7374616c6c5f70616765223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a227461736b5f6c697374223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a353a226974656d73223b4e3b733a363a22616374697665223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f7461736b5f6c697374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31353a227374617475735f6d65737361676573223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22646973706c6179223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32313a227468656d655f7374617475735f6d65737361676573223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a226c696e6b73223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a353a226c696e6b73223b4e3b733a31303a2261747472696275746573223b613a313a7b733a353a22636c617373223b733a353a226c696e6b73223b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31313a227468656d655f6c696e6b73223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a22696d616765223b613a373a7b733a393a22617267756d656e7473223b613a353a7b733a343a2270617468223b4e3b733a333a22616c74223b733a303a22223b733a353a227469746c65223b733a303a22223b733a31303a2261747472696275746573223b4e3b733a373a2267657473697a65223b623a313b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31313a227468656d655f696d616765223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31303a2262726561646372756d62223b613a373a7b733a383a2266756e6374696f6e223b733a32323a2270687074656d706c6174655f62726561646372756d62223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a313a7b733a31303a2262726561646372756d62223b4e3b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31343a226d6f64756c65732f73797374656d223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a2268656c70223b613a373a7b733a393a22617267756d656e7473223b613a303a7b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31303a227468656d655f68656c70223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a373a227375626d656e75223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a353a226c696e6b73223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31333a227468656d655f7375626d656e75223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a227461626c65223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a363a22686561646572223b4e3b733a343a22726f7773223b4e3b733a31303a2261747472696275746573223b613a303a7b7d733a373a2263617074696f6e223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31313a227468656d655f7461626c65223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32343a227461626c655f73656c6563745f6865616465725f63656c6c223b613a373a7b733a393a22617267756d656e7473223b613a303a7b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a33303a227468656d655f7461626c655f73656c6563745f6865616465725f63656c6c223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31393a227461626c65736f72745f696e64696361746f72223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a353a227374796c65223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32353a227468656d655f7461626c65736f72745f696e64696361746f72223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a333a22626f78223b613a373a7b733a393a22617267756d656e7473223b613a333a7b733a353a227469746c65223b4e3b733a373a22636f6e74656e74223b4e3b733a363a22726567696f6e223b733a343a226d61696e223b7d733a383a2274656d706c617465223b733a31383a226d6f64756c65732f73797374656d2f626f78223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a22626c6f636b223b613a383a7b733a383a2274656d706c617465223b733a353a22626c6f636b223b733a343a2270617468223b733a31343a227468656d65732f6761726c616e64223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a313a7b733a353a22626c6f636b223b4e3b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31343a226d6f64756c65732f73797374656d223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a32353a2274656d706c6174655f70726570726f636573735f626c6f636b223b7d7d733a343a226d61726b223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a2274797065223b693a313b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31303a227468656d655f6d61726b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a226974656d5f6c697374223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a353a226974656d73223b613a303a7b7d733a353a227469746c65223b4e3b733a343a2274797065223b733a323a22756c223b733a31303a2261747472696275746573223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f6974656d5f6c697374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a226d6f72655f68656c705f6c696e6b223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a333a2275726c223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32303a227468656d655f6d6f72655f68656c705f6c696e6b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a383a22786d6c5f69636f6e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a333a2275726c223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31343a227468656d655f786d6c5f69636f6e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a22666565645f69636f6e223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a333a2275726c223b4e3b733a353a227469746c65223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f666565645f69636f6e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a226d6f72655f6c696e6b223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a333a2275726c223b4e3b733a353a227469746c65223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f6d6f72655f6c696e6b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a373a22636c6f73757265223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a226d61696e223b693a303b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31333a227468656d655f636c6f73757265223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a22626c6f636b73223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a363a22726567696f6e223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f626c6f636b73223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a383a22757365726e616d65223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a363a226f626a656374223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31343a227468656d655f757365726e616d65223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a2270726f67726573735f626172223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a2270657263656e74223b4e3b733a373a226d657373616765223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31383a227468656d655f70726f67726573735f626172223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31313a22696e64656e746174696f6e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a2273697a65223b693a313b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31373a227468656d655f696e64656e746174696f6e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a227061676572223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a343a2274616773223b613a303a7b7d733a353a226c696d6974223b693a31303b733a373a22656c656d656e74223b693a303b733a31303a22706172616d6574657273223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31313a227468656d655f7061676572223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31313a2270616765725f6669727374223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a343a2274657874223b4e3b733a353a226c696d6974223b4e3b733a373a22656c656d656e74223b693a303b733a31303a22706172616d6574657273223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31373a227468656d655f70616765725f6669727374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a2270616765725f70726576696f7573223b613a373a7b733a393a22617267756d656e7473223b613a353a7b733a343a2274657874223b4e3b733a353a226c696d6974223b4e3b733a373a22656c656d656e74223b693a303b733a383a22696e74657276616c223b693a313b733a31303a22706172616d6574657273223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32303a227468656d655f70616765725f70726576696f7573223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31303a2270616765725f6e657874223b613a373a7b733a393a22617267756d656e7473223b613a353a7b733a343a2274657874223b4e3b733a353a226c696d6974223b4e3b733a373a22656c656d656e74223b693a303b733a383a22696e74657276616c223b693a313b733a31303a22706172616d6574657273223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31363a227468656d655f70616765725f6e657874223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31303a2270616765725f6c617374223b613a373a7b733a393a22617267756d656e7473223b613a343a7b733a343a2274657874223b4e3b733a353a226c696d6974223b4e3b733a373a22656c656d656e74223b693a303b733a31303a22706172616d6574657273223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31363a227468656d655f70616765725f6c617374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31303a2270616765725f6c696e6b223b613a373a7b733a393a22617267756d656e7473223b613a353a7b733a343a2274657874223b4e3b733a383a22706167655f6e6577223b4e3b733a373a22656c656d656e74223b4e3b733a31303a22706172616d6574657273223b613a303a7b7d733a31303a2261747472696275746573223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31363a227468656d655f70616765725f6c696e6b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32363a226c6f63616c655f61646d696e5f6d616e6167655f73637265656e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a33323a227468656d655f6c6f63616c655f61646d696e5f6d616e6167655f73637265656e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a226d656e755f6974656d5f6c696e6b223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a226974656d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32303a227468656d655f6d656e755f6974656d5f6c696e6b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a226d656e755f74726565223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a2274726565223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f6d656e755f74726565223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a226d656e755f6974656d223b613a373a7b733a393a22617267756d656e7473223b613a333a7b733a343a226c696e6b223b4e3b733a31323a226861735f6368696c6472656e223b4e3b733a343a226d656e75223b733a303a22223b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f6d656e755f6974656d223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31353a226d656e755f6c6f63616c5f7461736b223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a343a226c696e6b223b4e3b733a363a22616374697665223b623a303b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32313a227468656d655f6d656e755f6c6f63616c5f7461736b223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a226d656e755f6c6f63616c5f7461736b73223b613a373a7b733a383a2266756e6374696f6e223b733a32383a2270687074656d706c6174655f6d656e755f6c6f63616c5f7461736b73223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a343a2274797065223b733a31323a227468656d655f656e67696e65223b733a31303a227468656d652070617468223b733a31343a227468656d65732f6761726c616e64223b733a393a22617267756d656e7473223b613a303a7b7d733a31313a227468656d65207061746873223b613a323a7b693a303b733a31343a226d6f64756c65732f73797374656d223b693a313b733a31343a227468656d65732f6761726c616e64223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a2273656c656374223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f73656c656374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a383a226669656c64736574223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31343a227468656d655f6669656c64736574223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a22726164696f223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31313a227468656d655f726164696f223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a22726164696f73223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f726164696f73223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a2270617373776f72645f636f6e6669726d223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32323a227468656d655f70617373776f72645f636f6e6669726d223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a2264617465223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31303a227468656d655f64617465223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a226974656d223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31303a227468656d655f6974656d223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a383a22636865636b626f78223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31343a227468656d655f636865636b626f78223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31303a22636865636b626f786573223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31363a227468656d655f636865636b626f786573223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a227375626d6974223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f7375626d6974223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a22627574746f6e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f627574746f6e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a22696d6167655f627574746f6e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31383a227468656d655f696d6167655f627574746f6e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a2268696464656e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f68696464656e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a353a22746f6b656e223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31313a227468656d655f746f6b656e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a393a22746578746669656c64223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31353a227468656d655f746578746669656c64223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a22666f726d223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31303a227468656d655f666f726d223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a383a227465787461726561223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31343a227468656d655f7465787461726561223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a363a226d61726b7570223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31323a227468656d655f6d61726b7570223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a383a2270617373776f7264223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31343a227468656d655f70617373776f7264223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a343a2266696c65223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31303a227468656d655f66696c65223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a22666f726d5f656c656d656e74223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a373a22656c656d656e74223b4e3b733a353a2276616c7565223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31383a227468656d655f666f726d5f656c656d656e74223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32343a2273797374656d5f7468656d655f73656c6563745f666f726d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a33303a227468656d655f73797374656d5f7468656d655f73656c6563745f666f726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31383a2273797374656d5f7468656d65735f666f726d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32343a227468656d655f73797374656d5f7468656d65735f666f726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a2273797374656d5f6d6f64756c6573223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32303a227468656d655f73797374656d5f6d6f64756c6573223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32343a2273797374656d5f6d6f64756c65735f756e696e7374616c6c223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a33303a227468656d655f73797374656d5f6d6f64756c65735f756e696e7374616c6c223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31333a227374617475735f7265706f7274223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a31323a22726571756972656d656e7473223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31393a227468656d655f7374617475735f7265706f7274223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31303a2261646d696e5f70616765223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a363a22626c6f636b73223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31363a227468656d655f61646d696e5f70616765223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31313a2261646d696e5f626c6f636b223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a353a22626c6f636b223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a31373a227468656d655f61646d696e5f626c6f636b223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31393a2261646d696e5f626c6f636b5f636f6e74656e74223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a373a22636f6e74656e74223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32353a227468656d655f61646d696e5f626c6f636b5f636f6e74656e74223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32323a2273797374656d5f61646d696e5f62795f6d6f64756c65223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a31303a226d656e755f6974656d73223b4e3b7d733a343a2266696c65223b733a31363a2273797374656d2e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32383a227468656d655f73797374656d5f61646d696e5f62795f6d6f64756c65223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a33333a222e2f6d6f64756c65732f73797374656d2f73797374656d2e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31373a2273797374656d5f706f77657265645f6279223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a31303a22696d6167655f70617468223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f73797374656d223b733a383a2266756e6374696f6e223b733a32333a227468656d655f73797374656d5f706f77657265645f6279223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f73797374656d223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32303a227461786f6e6f6d795f7465726d5f73656c656374223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31363a226d6f64756c65732f7461786f6e6f6d79223b733a383a2266756e6374696f6e223b733a32363a227468656d655f7461786f6e6f6d795f7465726d5f73656c656374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31363a226d6f64756c65732f7461786f6e6f6d79223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31383a227461786f6e6f6d795f7465726d5f70616765223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a343a2274696473223b613a303a7b7d733a363a22726573756c74223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31363a226d6f64756c65732f7461786f6e6f6d79223b733a383a2266756e6374696f6e223b733a32343a227468656d655f7461786f6e6f6d795f7465726d5f70616765223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31363a226d6f64756c65732f7461786f6e6f6d79223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a33303a227461786f6e6f6d795f6f766572766965775f766f636162756c6172696573223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31363a226d6f64756c65732f7461786f6e6f6d79223b733a383a2266756e6374696f6e223b733a33363a227468656d655f7461786f6e6f6d795f6f766572766965775f766f636162756c6172696573223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31363a226d6f64756c65732f7461786f6e6f6d79223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a32333a227461786f6e6f6d795f6f766572766965775f7465726d73223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b613a303a7b7d7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31363a226d6f64756c65732f7461786f6e6f6d79223b733a383a2266756e6374696f6e223b733a32393a227468656d655f7461786f6e6f6d795f6f766572766965775f7465726d73223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31363a226d6f64756c65732f7461786f6e6f6d79223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31353a227570646174655f73657474696e6773223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f757064617465223b733a383a2266756e6374696f6e223b733a32313a227468656d655f7570646174655f73657474696e6773223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f757064617465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31333a227570646174655f7265706f7274223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a343a2264617461223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f757064617465223b733a383a2266756e6374696f6e223b733a31393a227468656d655f7570646174655f7265706f7274223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f757064617465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a227570646174655f76657273696f6e223b613a373a7b733a393a22617267756d656e7473223b613a333a7b733a373a2276657273696f6e223b4e3b733a333a22746167223b4e3b733a353a22636c617373223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31343a226d6f64756c65732f757064617465223b733a383a2266756e6374696f6e223b733a32303a227468656d655f7570646174655f76657273696f6e223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31343a226d6f64756c65732f757064617465223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a22757365725f70696374757265223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a373a226163636f756e74223b4e3b7d733a383a2274656d706c617465223b733a32353a226d6f64756c65732f757365722f757365722d70696374757265223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a33323a2274656d706c6174655f70726570726f636573735f757365725f70696374757265223b7d7d733a31323a22757365725f70726f66696c65223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a373a226163636f756e74223b4e3b7d733a383a2274656d706c617465223b733a32353a226d6f64756c65732f757365722f757365722d70726f66696c65223b733a343a2266696c65223b733a31343a22757365722e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a33323a2274656d706c6174655f70726570726f636573735f757365725f70726f66696c65223b7d7d733a32313a22757365725f70726f66696c655f63617465676f7279223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a383a2274656d706c617465223b733a33343a226d6f64756c65732f757365722f757365722d70726f66696c652d63617465676f7279223b733a343a2266696c65223b733a31343a22757365722e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a34313a2274656d706c6174655f70726570726f636573735f757365725f70726f66696c655f63617465676f7279223b7d7d733a31373a22757365725f70726f66696c655f6974656d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a373a22656c656d656e74223b4e3b7d733a383a2274656d706c617465223b733a33303a226d6f64756c65732f757365722f757365722d70726f66696c652d6974656d223b733a343a2266696c65223b733a31343a22757365722e70616765732e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e70616765732e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a323a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b693a313b733a33373a2274656d706c6174655f70726570726f636573735f757365725f70726f66696c655f6974656d223b7d7d733a393a22757365725f6c697374223b613a373a7b733a393a22617267756d656e7473223b613a323a7b733a353a227573657273223b4e3b733a353a227469746c65223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a31353a227468656d655f757365725f6c697374223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31353a22757365725f61646d696e5f7065726d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a22757365722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a32313a227468656d655f757365725f61646d696e5f7065726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31393a22757365725f61646d696e5f6e65775f726f6c65223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a22757365722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a32353a227468656d655f757365725f61646d696e5f6e65775f726f6c65223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31383a22757365725f61646d696e5f6163636f756e74223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a22757365722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a32343a227468656d655f757365725f61646d696e5f6163636f756e74223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31363a22757365725f66696c7465725f666f726d223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a22757365722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a32323a227468656d655f757365725f66696c7465725f666f726d223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31323a22757365725f66696c74657273223b613a383a7b733a393a22617267756d656e7473223b613a313a7b733a343a22666f726d223b4e3b7d733a343a2266696c65223b733a31343a22757365722e61646d696e2e696e63223b733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a31383a227468656d655f757365725f66696c74657273223b733a31333a22696e636c7564652066696c6573223b613a313a7b693a303b733a32393a222e2f6d6f64756c65732f757365722f757365722e61646d696e2e696e63223b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d733a31343a22757365725f7369676e6174757265223b613a373a7b733a393a22617267756d656e7473223b613a313a7b733a393a227369676e6174757265223b4e3b7d733a343a2274797065223b733a363a226d6f64756c65223b733a31303a227468656d652070617468223b733a31323a226d6f64756c65732f75736572223b733a383a2266756e6374696f6e223b733a32303a227468656d655f757365725f7369676e6174757265223b733a31333a22696e636c7564652066696c6573223b613a303a7b7d733a31313a227468656d65207061746873223b613a313a7b693a303b733a31323a226d6f64756c65732f75736572223b7d733a32303a2270726570726f636573732066756e6374696f6e73223b613a313a7b693a303b733a31393a2274656d706c6174655f70726570726f63657373223b7d7d7d, 0, 1278194320, '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `cache_block`
--

DROP TABLE IF EXISTS `cache_block`;
CREATE TABLE IF NOT EXISTS `cache_block` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache_block`
--


-- --------------------------------------------------------

--
-- Table structure for table `cache_filter`
--

DROP TABLE IF EXISTS `cache_filter`;
CREATE TABLE IF NOT EXISTS `cache_filter` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache_filter`
--


-- --------------------------------------------------------

--
-- Table structure for table `cache_form`
--

DROP TABLE IF EXISTS `cache_form`;
CREATE TABLE IF NOT EXISTS `cache_form` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache_form`
--


-- --------------------------------------------------------

--
-- Table structure for table `cache_menu`
--

DROP TABLE IF EXISTS `cache_menu`;
CREATE TABLE IF NOT EXISTS `cache_menu` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache_menu`
--

INSERT INTO `cache_menu` (`cid`, `data`, `expire`, `created`, `headers`, `serialized`) VALUES
('links:navigation:tree-data:da0884f6b6fde8deb9cad182e7515322', 0x613a323a7b733a343a2274726565223b613a32353a7b693a313b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a313a2231223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a31373a2273797374656d5f62617463685f70616765223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a303a22223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2231223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a353a226261746368223b733a31313a22726f757465725f70617468223b733a353a226261746368223b733a31303a226c696e6b5f7469746c65223b733a303a22223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2231223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a323b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a34353a22613a313a7b693a303b733a32373a226163636573732061646d696e697374726174696f6e207061676573223b7d223b733a31333a22706167655f63616c6c6261636b223b733a32323a2273797374656d5f6d61696e5f61646d696e5f70616765223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31303a2241646d696e6973746572223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2236223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2232223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a353a2261646d696e223b733a31313a22726f757465725f70617468223b733a353a2261646d696e223b733a31303a226c696e6b5f7469746c65223b733a31303a2241646d696e6973746572223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a313a2230223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2231223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2239223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2232223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a333b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33323a22613a313a7b693a303b733a31343a2261636365737320636f6e74656e74223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31373a226e6f64655f706167655f64656661756c74223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a373a22436f6e74656e74223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2233223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a343a226e6f6465223b733a31313a22726f757465725f70617468223b733a343a226e6f6465223b733a31303a226c696e6b5f7469746c65223b733a373a22436f6e74656e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2233223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a313b7d733a353a2262656c6f77223b623a303b7d693a343b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31373a22757365725f69735f6c6f676765645f696e223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a31313a22757365725f6c6f676f7574223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a373a224c6f67206f7574223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2236223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2234223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a363a226c6f676f7574223b733a31313a22726f757465725f70617468223b733a363a226c6f676f7574223b733a31303a226c696e6b5f7469746c65223b733a373a224c6f67206f7574223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a313a2230223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a323a223130223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2234223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a353b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33323a22613a313a7b693a303b733a31343a2261636365737320636f6e74656e74223b7d223b733a31333a22706167655f63616c6c6261636b223b733a393a226e6f64655f66656564223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a383a225253532066656564223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2235223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a373a227273732e786d6c223b733a31313a22726f757465725f70617468223b733a373a227273732e786d6c223b733a31303a226c696e6b5f7469746c65223b733a383a225253532066656564223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2235223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a363b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a313a2231223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a393a22757365725f70616765223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31323a2255736572206163636f756e74223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2236223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a343a2275736572223b733a31313a22726f757465725f70617468223b733a343a2275736572223b733a31303a226c696e6b5f7469746c65223b733a31323a2255736572206163636f756e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2236223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a373b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a32363a22613a313a7b693a313b733a393a226e6f64655f6c6f6164223b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a226e6f64655f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a32393a22613a323a7b693a303b733a343a2276696577223b693a313b693a313b7d223b733a31333a22706167655f63616c6c6261636b223b733a31343a226e6f64655f706167655f76696577223b733a31343a22706167655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a313b7d223b733a353a227469746c65223b733a303a22223b733a31343a227469746c655f63616c6c6261636b223b733a31353a226e6f64655f706167655f7469746c65223b733a31353a227469746c655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a313b7d223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2237223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a363a226e6f64652f25223b733a31313a22726f757465725f70617468223b733a363a226e6f64652f25223b733a31303a226c696e6b5f7469746c65223b733a303a22223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2237223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a393b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a313a2231223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a31363a2266696c7465725f746970735f6c6f6e67223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31323a22436f6d706f73652074697073223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a323a223230223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a313a2239223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31313a2266696c7465722f74697073223b733a31313a22726f757465725f70617468223b733a31313a2266696c7465722f74697073223b733a31303a226c696e6b5f7469746c65223b733a31323a22436f6d706f73652074697073223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a313a2231223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a313a2239223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a31313b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31363a225f6e6f64655f6164645f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a31333a226e6f64655f6164645f70616765223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31343a2243726561746520636f6e74656e74223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2236223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223131223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a383a226e6f64652f616464223b733a31313a22726f757465725f70617468223b733a383a226e6f64652f616464223b733a31303a226c696e6b5f7469746c65223b733a31343a2243726561746520636f6e74656e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a313a2230223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2231223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2231223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223131223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a31323b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33373a22613a313a7b693a303b733a31393a2261646d696e697374657220636f6d6d656e7473223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31343a22636f6d6d656e745f64656c657465223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31343a2244656c65746520636f6d6d656e74223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223132223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31343a22636f6d6d656e742f64656c657465223b733a31313a22726f757465725f70617468223b733a31343a22636f6d6d656e742f64656c657465223b733a31303a226c696e6b5f7469746c65223b733a31343a2244656c65746520636f6d6d656e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223132223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a31333b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33313a22613a313a7b693a303b733a31333a22706f737420636f6d6d656e7473223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31323a22636f6d6d656e745f65646974223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31323a224564697420636f6d6d656e74223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223133223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31323a22636f6d6d656e742f65646974223b733a31313a22726f757465725f70617468223b733a31323a22636f6d6d656e742f65646974223b733a31303a226c696e6b5f7469746c65223b733a31323a224564697420636f6d6d656e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223133223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a31343b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a313a2231223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a31333a2266696c655f646f776e6c6f6164223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31333a2246696c6520646f776e6c6f6164223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223134223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31323a2273797374656d2f66696c6573223b733a31313a22726f757465725f70617468223b733a31323a2273797374656d2f66696c6573223b733a31303a226c696e6b5f7469746c65223b733a31333a2246696c6520646f776e6c6f6164223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223134223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a31393b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33383a22613a313a7b693a303b733a32303a2261636365737320757365722070726f66696c6573223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31373a22757365725f6175746f636f6d706c657465223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a31373a2255736572206175746f636f6d706c657465223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223139223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31373a22757365722f6175746f636f6d706c657465223b733a31313a22726f757465725f70617468223b733a31373a22757365722f6175746f636f6d706c657465223b733a31303a226c696e6b5f7469746c65223b733a31373a2255736572206175746f636f6d706c657465223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223139223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a32313b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a34303a22613a313a7b693a313b733a32323a22757365725f7569645f6f7074696f6e616c5f6c6f6164223b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a34323a22613a313a7b693a313b733a32343a22757365725f7569645f6f7074696f6e616c5f746f5f617267223b7d223b733a31353a226163636573735f63616c6c6261636b223b733a31363a22757365725f766965775f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a31343a22613a313a7b693a303b693a313b7d223b733a31333a22706167655f63616c6c6261636b223b733a393a22757365725f76696577223b733a31343a22706167655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a313b7d223b733a353a227469746c65223b733a31303a224d79206163636f756e74223b733a31343a227469746c655f63616c6c6261636b223b733a31353a22757365725f706167655f7469746c65223b733a31353a227469746c655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a313b7d223b733a343a2274797065223b733a313a2236223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223231223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a363a22757365722f25223b733a31313a22726f757465725f70617468223b733a363a22757365722f25223b733a31303a226c696e6b5f7469746c65223b733a31303a224d79206163636f756e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a313a2230223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223231223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a33313b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a32363a22613a313a7b693a313b733a393a226e6f64655f6c6f6164223b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a226e6f64655f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33313a22613a323a7b693a303b733a363a2264656c657465223b693a313b693a313b7d223b733a31333a22706167655f63616c6c6261636b223b733a31353a2264727570616c5f6765745f666f726d223b733a31343a22706167655f617267756d656e7473223b733a34353a22613a323a7b693a303b733a31393a226e6f64655f64656c6574655f636f6e6669726d223b693a313b693a313b7d223b733a353a227469746c65223b733a363a2244656c657465223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223331223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31333a226e6f64652f252f64656c657465223b733a31313a22726f757465725f70617468223b733a31333a226e6f64652f252f64656c657465223b733a31303a226c696e6b5f7469746c65223b733a363a2244656c657465223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2231223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223331223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a34343b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a32363a22613a313a7b693a323b733a393a226e6f64655f6c6f6164223b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a226e6f64655f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a32393a22613a323a7b693a303b733a343a2276696577223b693a313b693a323b7d223b733a31333a22706167655f63616c6c6261636b223b733a31333a22636f6d6d656e745f7265706c79223b733a31343a22706167655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a323b7d223b733a353a227469746c65223b733a31363a225265706c7920746f20636f6d6d656e74223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223434223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31353a22636f6d6d656e742f7265706c792f25223b733a31313a22726f757465725f70617468223b733a31353a22636f6d6d656e742f7265706c792f25223b733a31303a226c696e6b5f7469746c65223b733a31363a225265706c7920746f20636f6d6d656e74223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223434223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a37383b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a32363a22613a313a7b693a333b733a393a226d656e755f6c6f6164223b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33333a22613a313a7b693a303b733a31353a2261646d696e6973746572206d656e75223b7d223b733a31333a22706167655f63616c6c6261636b223b733a32313a226d656e755f64656c6574655f6d656e755f70616765223b733a31343a22706167655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a333b7d223b733a353a227469746c65223b733a31313a2244656c657465206d656e75223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223738223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a33353a2261646d696e2f6275696c642f6d656e752d637573746f6d697a652f252f64656c657465223b733a31313a22726f757465725f70617468223b733a33353a2261646d696e2f6275696c642f6d656e752d637573746f6d697a652f252f64656c657465223b733a31303a226c696e6b5f7469746c65223b733a31313a2244656c657465206d656e75223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223738223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a38313b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a32343a22613a333a7b693a323b4e3b693a333b4e3b693a343b4e3b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a313a2231223b733a31363a226163636573735f617267756d656e7473223b733a363a22613a303a7b7d223b733a31333a22706167655f63616c6c6261636b223b733a31353a2264727570616c5f6765745f666f726d223b733a31343a22706167655f617267756d656e7473223b733a35373a22613a343a7b693a303b733a31353a22757365725f706173735f7265736574223b693a313b693a323b693a323b693a333b693a333b693a343b7d223b733a353a227469746c65223b733a31343a2252657365742070617373776f7264223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223831223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31363a22757365722f72657365742f252f252f25223b733a31313a22726f757465725f70617468223b733a31363a22757365722f72657365742f252f252f25223b733a31303a226c696e6b5f7469746c65223b733a31343a2252657365742070617373776f7264223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223831223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a38333b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a35323a22613a323a7b693a313b613a313a7b733a393a226e6f64655f6c6f6164223b613a313a7b693a303b693a333b7d7d693a333b4e3b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a32313a225f6e6f64655f7265766973696f6e5f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33313a22613a323a7b693a303b693a313b693a313b733a363a2264656c657465223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31353a2264727570616c5f6765745f666f726d223b733a31343a22706167655f617267756d656e7473223b733a35343a22613a323a7b693a303b733a32383a226e6f64655f7265766973696f6e5f64656c6574655f636f6e6669726d223b693a313b693a313b7d223b733a353a227469746c65223b733a32333a2244656c657465206561726c696572207265766973696f6e223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223833223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a32353a226e6f64652f252f7265766973696f6e732f252f64656c657465223b733a31313a22726f757465725f70617468223b733a32353a226e6f64652f252f7265766973696f6e732f252f64656c657465223b733a31303a226c696e6b5f7469746c65223b733a32333a2244656c657465206561726c696572207265766973696f6e223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223833223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a38343b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a35323a22613a323a7b693a313b613a313a7b733a393a226e6f64655f6c6f6164223b613a313a7b693a303b693a333b7d7d693a333b4e3b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a32313a225f6e6f64655f7265766973696f6e5f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33313a22613a323a7b693a303b693a313b693a313b733a363a22757064617465223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31353a2264727570616c5f6765745f666f726d223b733a31343a22706167655f617267756d656e7473223b733a35343a22613a323a7b693a303b733a32383a226e6f64655f7265766973696f6e5f7265766572745f636f6e6669726d223b693a313b693a313b7d223b733a353a227469746c65223b733a32363a2252657665727420746f206561726c696572207265766973696f6e223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223834223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a32353a226e6f64652f252f7265766973696f6e732f252f726576657274223b733a31313a22726f757465725f70617468223b733a32353a226e6f64652f252f7265766973696f6e732f252f726576657274223b733a31303a226c696e6b5f7469746c65223b733a32363a2252657665727420746f206561726c696572207265766973696f6e223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223834223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a38353b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a35323a22613a323a7b693a313b613a313a7b733a393a226e6f64655f6c6f6164223b613a313a7b693a303b693a333b7d7d693a333b4e3b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a32313a225f6e6f64655f7265766973696f6e5f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a31343a22613a313a7b693a303b693a313b7d223b733a31333a22706167655f63616c6c6261636b223b733a393a226e6f64655f73686f77223b733a31343a22706167655f617267756d656e7473223b733a32383a22613a333a7b693a303b693a313b693a313b4e3b693a323b623a313b7d223b733a353a227469746c65223b733a393a225265766973696f6e73223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223835223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a32333a226e6f64652f252f7265766973696f6e732f252f76696577223b733a31313a22726f757465725f70617468223b733a32333a226e6f64652f252f7265766973696f6e732f252f76696577223b733a31303a226c696e6b5f7469746c65223b733a393a225265766973696f6e73223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223835223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a39323b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33323a22613a313a7b693a303b733a31343a2261636365737320636f6e74656e74223b7d223b733a31333a22706167655f63616c6c6261636b223b733a32313a227461786f6e6f6d795f6175746f636f6d706c657465223b733a31343a22706167655f617267756d656e7473223b733a363a22613a303a7b7d223b733a353a227469746c65223b733a32313a224175746f636f6d706c657465207461786f6e6f6d79223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223932223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a32313a227461786f6e6f6d792f6175746f636f6d706c657465223b733a31313a22726f757465725f70617468223b733a32313a227461786f6e6f6d792f6175746f636f6d706c657465223b733a31303a226c696e6b5f7469746c65223b733a32313a224175746f636f6d706c657465207461786f6e6f6d79223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223932223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a39353b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a31323a22613a313a7b693a323b4e3b7d223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a33323a22613a313a7b693a303b733a31343a2261636365737320636f6e74656e74223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31383a227461786f6e6f6d795f7465726d5f70616765223b733a31343a22706167655f617267756d656e7473223b733a31343a22613a313a7b693a303b693a323b7d223b733a353a227469746c65223b733a31333a225461786f6e6f6d79207465726d223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a323a223935223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a31353a227461786f6e6f6d792f7465726d2f25223b733a31313a22726f757465725f70617468223b733a31353a227461786f6e6f6d792f7465726d2f25223b733a31303a226c696e6b5f7469746c65223b733a31333a225461786f6e6f6d79207465726d223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a323a223935223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a3131323b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a34323a22613a313a7b693a303b733a32343a2261646d696e697374657220636f6e74656e74207479706573223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31353a2264727570616c5f6765745f666f726d223b733a31343a22706167655f617267756d656e7473223b733a3730353a22613a323a7b693a303b733a32343a226e6f64655f747970655f64656c6574655f636f6e6669726d223b693a313b4f3a383a22737464436c617373223a31343a7b733a343a2274797065223b733a343a2270616765223b733a343a226e616d65223b733a343a2250616765223b733a363a226d6f64756c65223b733a343a226e6f6465223b733a31313a226465736372697074696f6e223b733a3239363a2241203c656d3e706167653c2f656d3e2c2073696d696c617220696e20666f726d20746f2061203c656d3e73746f72793c2f656d3e2c20697320612073696d706c65206d6574686f6420666f72206372656174696e6720616e6420646973706c6179696e6720696e666f726d6174696f6e207468617420726172656c79206368616e6765732c207375636820617320616e202241626f7574207573222073656374696f6e206f66206120776562736974652e2042792064656661756c742c2061203c656d3e706167653c2f656d3e20656e74727920646f6573206e6f7420616c6c6f772076697369746f7220636f6d6d656e747320616e64206973206e6f74206665617475726564206f6e207468652073697465277320696e697469616c20686f6d6520706167652e223b733a343a2268656c70223b733a303a22223b733a393a226861735f7469746c65223b733a313a2231223b733a31313a227469746c655f6c6162656c223b733a353a225469746c65223b733a383a226861735f626f6479223b733a313a2231223b733a31303a22626f64795f6c6162656c223b733a343a22426f6479223b733a31343a226d696e5f776f72645f636f756e74223b733a313a2230223b733a363a22637573746f6d223b733a313a2231223b733a383a226d6f646966696564223b733a313a2231223b733a363a226c6f636b6564223b733a313a2230223b733a393a226f7269675f74797065223b733a343a2270616765223b7d7d223b733a353a227469746c65223b733a363a2244656c657465223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a333a22313132223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a33353a2261646d696e2f636f6e74656e742f6e6f64652d747970652f706167652f64656c657465223b733a31313a22726f757465725f70617468223b733a33353a2261646d696e2f636f6e74656e742f6e6f64652d747970652f706167652f64656c657465223b733a31303a226c696e6b5f7469746c65223b733a363a2244656c657465223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a333a22313132223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d693a3131333b613a323a7b733a343a226c696e6b223b613a33373a7b733a31343a226c6f61645f66756e6374696f6e73223b733a303a22223b733a31363a22746f5f6172675f66756e6374696f6e73223b733a303a22223b733a31353a226163636573735f63616c6c6261636b223b733a31313a22757365725f616363657373223b733a31363a226163636573735f617267756d656e7473223b733a34323a22613a313a7b693a303b733a32343a2261646d696e697374657220636f6e74656e74207479706573223b7d223b733a31333a22706167655f63616c6c6261636b223b733a31353a2264727570616c5f6765745f666f726d223b733a31343a22706167655f617267756d656e7473223b733a3830343a22613a323a7b693a303b733a32343a226e6f64655f747970655f64656c6574655f636f6e6669726d223b693a313b4f3a383a22737464436c617373223a31343a7b733a343a2274797065223b733a353a2273746f7279223b733a343a226e616d65223b733a353a2253746f7279223b733a363a226d6f64756c65223b733a343a226e6f6465223b733a31313a226465736372697074696f6e223b733a3339323a2241203c656d3e73746f72793c2f656d3e2c2073696d696c617220696e20666f726d20746f2061203c656d3e706167653c2f656d3e2c20697320696465616c20666f72206372656174696e6720616e6420646973706c6179696e6720636f6e74656e74207468617420696e666f726d73206f7220656e676167657320776562736974652076697369746f72732e2050726573732072656c65617365732c207369746520616e6e6f756e63656d656e74732c20616e6420696e666f726d616c20626c6f672d6c696b6520656e7472696573206d617920616c6c206265206372656174656420776974682061203c656d3e73746f72793c2f656d3e20656e7472792e2042792064656661756c742c2061203c656d3e73746f72793c2f656d3e20656e747279206973206175746f6d61746963616c6c79206665617475726564206f6e207468652073697465277320696e697469616c20686f6d6520706167652c20616e642070726f766964657320746865206162696c69747920746f20706f737420636f6d6d656e74732e223b733a343a2268656c70223b733a303a22223b733a393a226861735f7469746c65223b733a313a2231223b733a31313a227469746c655f6c6162656c223b733a353a225469746c65223b733a383a226861735f626f6479223b733a313a2231223b733a31303a22626f64795f6c6162656c223b733a343a22426f6479223b733a31343a226d696e5f776f72645f636f756e74223b733a313a2230223b733a363a22637573746f6d223b733a313a2231223b733a383a226d6f646966696564223b733a313a2231223b733a363a226c6f636b6564223b733a313a2230223b733a393a226f7269675f74797065223b733a353a2273746f7279223b7d7d223b733a353a227469746c65223b733a363a2244656c657465223b733a31343a227469746c655f63616c6c6261636b223b733a313a2274223b733a31353a227469746c655f617267756d656e7473223b733a303a22223b733a343a2274797065223b733a313a2234223b733a31313a226465736372697074696f6e223b733a303a22223b733a393a226d656e755f6e616d65223b733a31303a226e617669676174696f6e223b733a343a226d6c6964223b733a333a22313133223b733a343a22706c6964223b733a313a2230223b733a393a226c696e6b5f70617468223b733a33363a2261646d696e2f636f6e74656e742f6e6f64652d747970652f73746f72792f64656c657465223b733a31313a22726f757465725f70617468223b733a33363a2261646d696e2f636f6e74656e742f6e6f64652d747970652f73746f72792f64656c657465223b733a31303a226c696e6b5f7469746c65223b733a363a2244656c657465223b733a373a226f7074696f6e73223b733a363a22613a303a7b7d223b733a363a226d6f64756c65223b733a363a2273797374656d223b733a363a2268696464656e223b733a323a222d31223b733a383a2265787465726e616c223b733a313a2230223b733a31323a226861735f6368696c6472656e223b733a313a2230223b733a383a22657870616e646564223b733a313a2230223b733a363a22776569676874223b733a313a2230223b733a353a226465707468223b733a313a2231223b733a31303a22637573746f6d697a6564223b733a313a2230223b733a323a227031223b733a333a22313133223b733a323a227032223b733a313a2230223b733a323a227033223b733a313a2230223b733a323a227034223b733a313a2230223b733a323a227035223b733a313a2230223b733a323a227036223b733a313a2230223b733a323a227037223b733a313a2230223b733a323a227038223b733a313a2230223b733a323a227039223b733a313a2230223b733a373a2275706461746564223b733a313a2230223b733a31353a22696e5f6163746976655f747261696c223b623a303b7d733a353a2262656c6f77223b623a303b7d7d733a31303a226e6f64655f6c696e6b73223b613a303a7b7d7d, 0, 1278194320, '', 1);
INSERT INTO `cache_menu` (`cid`, `data`, `expire`, `created`, `headers`, `serialized`) VALUES
('links:navigation:page-cid:node:1', 0x6c696e6b733a6e617669676174696f6e3a747265652d646174613a6461303838346636623666646538646562396361643138326537353135333232, 0, 1278194320, '', 0),
('links:primary-links:tree-data:5d6d3aaaaef5fba302ce62698fa37bbe', 0x613a323a7b733a343a2274726565223b613a303a7b7d733a31303a226e6f64655f6c696e6b73223b613a303a7b7d7d, 0, 1278194320, '', 1),
('links:primary-links:page-cid:node:1', 0x6c696e6b733a7072696d6172792d6c696e6b733a747265652d646174613a3564366433616161616566356662613330326365363236393866613337626265, 0, 1278194320, '', 0),
('links:secondary-links:tree-data:5d6d3aaaaef5fba302ce62698fa37bbe', 0x613a323a7b733a343a2274726565223b613a303a7b7d733a31303a226e6f64655f6c696e6b73223b613a303a7b7d7d, 0, 1278194320, '', 1),
('links:secondary-links:page-cid:node:1', 0x6c696e6b733a7365636f6e646172792d6c696e6b733a747265652d646174613a3564366433616161616566356662613330326365363236393866613337626265, 0, 1278194320, '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `cache_page`
--

DROP TABLE IF EXISTS `cache_page`;
CREATE TABLE IF NOT EXISTS `cache_page` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache_page`
--


-- --------------------------------------------------------

--
-- Table structure for table `cache_update`
--

DROP TABLE IF EXISTS `cache_update`;
CREATE TABLE IF NOT EXISTS `cache_update` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `cache_update`
--


-- --------------------------------------------------------

--
-- Table structure for table `comments`
--

DROP TABLE IF EXISTS `comments`;
CREATE TABLE IF NOT EXISTS `comments` (
`cid` int(11) NOT NULL auto_increment,
`pid` int(11) NOT NULL default '0',
`nid` int(11) NOT NULL default '0',
`uid` int(11) NOT NULL default '0',
`subject` varchar(64) NOT NULL default '',
`comment` longtext NOT NULL,
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0',
`status` tinyint(3) unsigned NOT NULL default '0',
`format` smallint(6) NOT NULL default '0',
`thread` varchar(255) NOT NULL,
`name` varchar(60) default NULL,
`mail` varchar(64) default NULL,
`homepage` varchar(255) default NULL,
PRIMARY KEY (`cid`),
KEY `pid` (`pid`),
KEY `nid` (`nid`),
KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `comments`
--


-- --------------------------------------------------------

--
-- Table structure for table `files`
--

DROP TABLE IF EXISTS `files`;
CREATE TABLE IF NOT EXISTS `files` (
`fid` int(10) unsigned NOT NULL auto_increment,
`uid` int(10) unsigned NOT NULL default '0',
`filename` varchar(255) NOT NULL default '',
`filepath` varchar(255) NOT NULL default '',
`filemime` varchar(255) NOT NULL default '',
`filesize` int(10) unsigned NOT NULL default '0',
`status` int(11) NOT NULL default '0',
`timestamp` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`fid`),
KEY `uid` (`uid`),
KEY `status` (`status`),
KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `files`
--


-- --------------------------------------------------------

--
-- Table structure for table `filters`
--

DROP TABLE IF EXISTS `filters`;
CREATE TABLE IF NOT EXISTS `filters` (
`fid` int(11) NOT NULL auto_increment,
`format` int(11) NOT NULL default '0',
`module` varchar(64) NOT NULL default '',
`delta` tinyint(4) NOT NULL default '0',
`weight` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`fid`),
UNIQUE KEY `fmd` (`format`,`module`,`delta`),
KEY `list` (`format`,`weight`,`module`,`delta`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;

--
-- Dumping data for table `filters`
--

INSERT INTO `filters` (`fid`, `format`, `module`, `delta`, `weight`) VALUES
(1, 1, 'filter', 2, 0),
(2, 1, 'filter', 0, 1),
(3, 1, 'filter', 1, 2),
(4, 1, 'filter', 3, 10),
(5, 2, 'filter', 2, 0),
(6, 2, 'filter', 1, 1),
(7, 2, 'filter', 3, 10);

-- --------------------------------------------------------

--
-- Table structure for table `filter_formats`
--

DROP TABLE IF EXISTS `filter_formats`;
CREATE TABLE IF NOT EXISTS `filter_formats` (
`format` int(11) NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`roles` varchar(255) NOT NULL default '',
`cache` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`format`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `filter_formats`
--

INSERT INTO `filter_formats` (`format`, `name`, `roles`, `cache`) VALUES
(1, 'Filtered HTML', ',1,2,', 1),
(2, 'Full HTML', '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `flood`
--

DROP TABLE IF EXISTS `flood`;
CREATE TABLE IF NOT EXISTS `flood` (
`fid` int(11) NOT NULL auto_increment,
`event` varchar(64) NOT NULL default '',
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0',
PRIMARY KEY (`fid`),
KEY `allow` (`event`,`hostname`,`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `flood`
--


-- --------------------------------------------------------

--
-- Table structure for table `history`
--

DROP TABLE IF EXISTS `history`;
CREATE TABLE IF NOT EXISTS `history` (
`uid` int(11) NOT NULL default '0',
`nid` int(11) NOT NULL default '0',
`timestamp` int(11) NOT NULL default '0',
PRIMARY KEY (`uid`,`nid`),
KEY `nid` (`nid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `history`
--


-- --------------------------------------------------------

--
-- Table structure for table `menu_custom`
--

DROP TABLE IF EXISTS `menu_custom`;
CREATE TABLE IF NOT EXISTS `menu_custom` (
`menu_name` varchar(32) NOT NULL default '',
`title` varchar(255) NOT NULL default '',
`description` text,
PRIMARY KEY (`menu_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `menu_custom`
--

INSERT INTO `menu_custom` (`menu_name`, `title`, `description`) VALUES
('navigation', 'Navigation', 'The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.'),
('primary-links', 'Primary links', 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.'),
('secondary-links', 'Secondary links', 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links');

-- --------------------------------------------------------

--
-- Table structure for table `menu_links`
--

DROP TABLE IF EXISTS `menu_links`;
CREATE TABLE IF NOT EXISTS `menu_links` (
`menu_name` varchar(32) NOT NULL default '',
`mlid` int(10) unsigned NOT NULL auto_increment,
`plid` int(10) unsigned NOT NULL default '0',
`link_path` varchar(255) NOT NULL default '',
`router_path` varchar(255) NOT NULL default '',
`link_title` varchar(255) NOT NULL default '',
`options` text,
`module` varchar(255) NOT NULL default 'system',
`hidden` smallint(6) NOT NULL default '0',
`external` smallint(6) NOT NULL default '0',
`has_children` smallint(6) NOT NULL default '0',
`expanded` smallint(6) NOT NULL default '0',
`weight` int(11) NOT NULL default '0',
`depth` smallint(6) NOT NULL default '0',
`customized` smallint(6) NOT NULL default '0',
`p1` int(10) unsigned NOT NULL default '0',
`p2` int(10) unsigned NOT NULL default '0',
`p3` int(10) unsigned NOT NULL default '0',
`p4` int(10) unsigned NOT NULL default '0',
`p5` int(10) unsigned NOT NULL default '0',
`p6` int(10) unsigned NOT NULL default '0',
`p7` int(10) unsigned NOT NULL default '0',
`p8` int(10) unsigned NOT NULL default '0',
`p9` int(10) unsigned NOT NULL default '0',
`updated` smallint(6) NOT NULL default '0',
PRIMARY KEY (`mlid`),
KEY `path_menu` (`link_path`(128),`menu_name`),
KEY `menu_plid_expand_child` (`menu_name`,`plid`,`expanded`,`has_children`),
KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`),
KEY `router_path` (`router_path`(128))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=114 ;

--
-- Dumping data for table `menu_links`
--

INSERT INTO `menu_links` (`menu_name`, `mlid`, `plid`, `link_path`, `router_path`, `link_title`, `options`, `module`, `hidden`, `external`, `has_children`, `expanded`, `weight`, `depth`, `customized`, `p1`, `p2`, `p3`, `p4`, `p5`, `p6`, `p7`, `p8`, `p9`, `updated`) VALUES
('navigation', 1, 0, 'batch', 'batch', '', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 2, 0, 'admin', 'admin', 'Administer', 'a:0:{}', 'system', 0, 0, 1, 0, 9, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 3, 0, 'node', 'node', 'Content', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 4, 0, 'logout', 'logout', 'Log out', 'a:0:{}', 'system', 0, 0, 0, 0, 10, 1, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 5, 0, 'rss.xml', 'rss.xml', 'RSS feed', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 6, 0, 'user', 'user', 'User account', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 7, 0, 'node/%', 'node/%', '', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 8, 2, 'admin/compact', 'admin/compact', 'Compact mode', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 2, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 9, 0, 'filter/tips', 'filter/tips', 'Compose tips', 'a:0:{}', 'system', 1, 0, 0, 0, 0, 1, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 10, 2, 'admin/content', 'admin/content', 'Content management', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:27:"Manage your site''s content.";}}', 'system', 0, 0, 1, 0, -10, 2, 0, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 11, 0, 'node/add', 'node/add', 'Create content', 'a:0:{}', 'system', 0, 0, 1, 0, 1, 1, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 12, 0, 'comment/delete', 'comment/delete', 'Delete comment', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 13, 0, 'comment/edit', 'comment/edit', 'Edit comment', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 14, 0, 'system/files', 'system/files', 'File download', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 15, 2, 'admin/help', 'admin/help', 'Help', 'a:0:{}', 'system', 0, 0, 0, 0, 9, 2, 0, 2, 15, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 16, 2, 'admin/reports', 'admin/reports', 'Reports', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:59:"View reports from system logs and other status information.";}}', 'system', 0, 0, 1, 0, 5, 2, 0, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 17, 2, 'admin/build', 'admin/build', 'Site building', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:38:"Control how your site looks and feels.";}}', 'system', 0, 0, 1, 0, -10, 2, 0, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 18, 2, 'admin/settings', 'admin/settings', 'Site configuration', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:40:"Adjust basic site configuration options.";}}', 'system', 0, 0, 1, 0, -5, 2, 0, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 19, 0, 'user/autocomplete', 'user/autocomplete', 'User autocomplete', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 20, 2, 'admin/user', 'admin/user', 'User management', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"Manage your site''s users, groups and access to site features.";}}', 'system', 0, 0, 1, 0, 0, 2, 0, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 21, 0, 'user/%', 'user/%', 'My account', 'a:0:{}', 'system', 0, 0, 0, 0, 0, 1, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 22, 20, 'admin/user/rules', 'admin/user/rules', 'Access rules', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:80:"List and create rules to disallow usernames, e-mail addresses, and IP addresses.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 20, 22, 0, 0, 0, 0, 0, 0, 0),
('navigation', 23, 18, 'admin/settings/actions', 'admin/settings/actions', 'Actions', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:41:"Manage the actions defined for your site.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 23, 0, 0, 0, 0, 0, 0, 0),
('navigation', 24, 18, 'admin/settings/admin', 'admin/settings/admin', 'Administration theme', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:55:"Settings for how your administrative pages should look.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 24, 0, 0, 0, 0, 0, 0, 0),
('navigation', 25, 17, 'admin/build/block', 'admin/build/block', 'Blocks', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:79:"Configure what block content appears in your site''s sidebars and other regions.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 17, 25, 0, 0, 0, 0, 0, 0, 0),
('navigation', 26, 18, 'admin/settings/clean-urls', 'admin/settings/clean-urls', 'Clean URLs', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"Enable or disable clean URLs for your site.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 26, 0, 0, 0, 0, 0, 0, 0),
('navigation', 27, 10, 'admin/content/comment', 'admin/content/comment', 'Comments', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:61:"List and edit site comments and the comment moderation queue.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 10, 27, 0, 0, 0, 0, 0, 0, 0),
('navigation', 28, 10, 'admin/content/node', 'admin/content/node', 'Content', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View, edit, and delete your site''s content.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 10, 28, 0, 0, 0, 0, 0, 0, 0),
('navigation', 29, 10, 'admin/content/types', 'admin/content/types', 'Content types', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Manage posts by content type, including default status, front page promotion, etc.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 10, 29, 0, 0, 0, 0, 0, 0, 0),
('navigation', 30, 18, 'admin/settings/date-time', 'admin/settings/date-time', 'Date and time', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:89:"Settings for how Drupal displays date and time, as well as the system''s default timezone.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 30, 0, 0, 0, 0, 0, 0, 0),
('navigation', 31, 0, 'node/%/delete', 'node/%/delete', 'Delete', 'a:0:{}', 'system', -1, 0, 0, 0, 1, 1, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 32, 21, 'user/%/delete', 'user/%/delete', 'Delete', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 2, 0, 21, 32, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 33, 18, 'admin/settings/error-reporting', 'admin/settings/error-reporting', 'Error reporting', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:93:"Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 33, 0, 0, 0, 0, 0, 0, 0),
('navigation', 34, 18, 'admin/settings/file-system', 'admin/settings/file-system', 'File system', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:68:"Tell Drupal where to store uploaded files and how they are accessed.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 34, 0, 0, 0, 0, 0, 0, 0),
('navigation', 35, 18, 'admin/settings/image-toolkit', 'admin/settings/image-toolkit', 'Image toolkit', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Choose which image toolkit to use if you have installed optional toolkits.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 35, 0, 0, 0, 0, 0, 0, 0),
('navigation', 36, 18, 'admin/settings/filters', 'admin/settings/filters', 'Input formats', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:127:"Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 36, 0, 0, 0, 0, 0, 0, 0),
('navigation', 37, 18, 'admin/settings/logging', 'admin/settings/logging', 'Logging and alerts', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:156:"Settings for logging and alerts modules. Various modules can route Drupal''s system events to different destination, such as syslog, database, email, ...etc.";}}', 'system', 0, 0, 1, 0, 0, 3, 0, 2, 18, 37, 0, 0, 0, 0, 0, 0, 0),
('navigation', 38, 17, 'admin/build/menu', 'admin/build/menu', 'Menus', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:116:"Control your site''s navigation menu, primary links and secondary links. as well as rename and reorganize menu items.";}}', 'system', 0, 0, 1, 0, 0, 3, 0, 2, 17, 38, 0, 0, 0, 0, 0, 0, 0),
('navigation', 39, 17, 'admin/build/modules', 'admin/build/modules', 'Modules', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:47:"Enable or disable add-on modules for your site.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 17, 39, 0, 0, 0, 0, 0, 0, 0),
('navigation', 40, 18, 'admin/settings/performance', 'admin/settings/performance', 'Performance', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 40, 0, 0, 0, 0, 0, 0, 0),
('navigation', 41, 20, 'admin/user/permissions', 'admin/user/permissions', 'Permissions', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:64:"Determine access to features by selecting permissions for roles.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 20, 41, 0, 0, 0, 0, 0, 0, 0),
('navigation', 42, 10, 'admin/content/node-settings', 'admin/content/node-settings', 'Post settings', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:126:"Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 10, 42, 0, 0, 0, 0, 0, 0, 0),
('navigation', 43, 10, 'admin/content/rss-publishing', 'admin/content/rss-publishing', 'RSS publishing', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:92:"Configure the number of items per feed and whether feeds should be titles/teasers/full-text.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 10, 43, 0, 0, 0, 0, 0, 0, 0),
('navigation', 44, 0, 'comment/reply/%', 'comment/reply/%', 'Reply to comment', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 45, 20, 'admin/user/roles', 'admin/user/roles', 'Roles', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:30:"List, edit, or add user roles.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 20, 45, 0, 0, 0, 0, 0, 0, 0),
('navigation', 46, 18, 'admin/settings/site-information', 'admin/settings/site-information', 'Site information', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:107:"Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 46, 0, 0, 0, 0, 0, 0, 0),
('navigation', 47, 18, 'admin/settings/site-maintenance', 'admin/settings/site-maintenance', 'Site maintenance', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:63:"Take the site off-line for maintenance or bring it back online.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 18, 47, 0, 0, 0, 0, 0, 0, 0),
('navigation', 48, 16, 'admin/reports/status', 'admin/reports/status', 'Status report', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:74:"Get a status report about your site''s operation and any detected problems.";}}', 'system', 0, 0, 0, 0, 10, 3, 0, 2, 16, 48, 0, 0, 0, 0, 0, 0, 0),
('navigation', 49, 17, 'admin/build/themes', 'admin/build/themes', 'Themes', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:57:"Change which theme your site uses or allows users to set.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 17, 49, 0, 0, 0, 0, 0, 0, 0),
('navigation', 50, 20, 'admin/user/settings', 'admin/user/settings', 'User settings', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:101:"Configure default behavior of users, including registration requirements, e-mails, and user pictures.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 20, 50, 0, 0, 0, 0, 0, 0, 0),
('navigation', 51, 20, 'admin/user/user', 'admin/user/user', 'Users', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:26:"List, add, and edit users.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 20, 51, 0, 0, 0, 0, 0, 0, 0),
('navigation', 52, 15, 'admin/help/block', 'admin/help/block', 'block', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 52, 0, 0, 0, 0, 0, 0, 0),
('navigation', 53, 15, 'admin/help/color', 'admin/help/color', 'color', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 53, 0, 0, 0, 0, 0, 0, 0),
('navigation', 54, 15, 'admin/help/comment', 'admin/help/comment', 'comment', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 54, 0, 0, 0, 0, 0, 0, 0),
('navigation', 55, 15, 'admin/help/filter', 'admin/help/filter', 'filter', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 55, 0, 0, 0, 0, 0, 0, 0),
('navigation', 56, 15, 'admin/help/help', 'admin/help/help', 'help', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 56, 0, 0, 0, 0, 0, 0, 0),
('navigation', 57, 15, 'admin/help/menu', 'admin/help/menu', 'menu', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 57, 0, 0, 0, 0, 0, 0, 0),
('navigation', 58, 15, 'admin/help/node', 'admin/help/node', 'node', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 58, 0, 0, 0, 0, 0, 0, 0),
('navigation', 59, 15, 'admin/help/system', 'admin/help/system', 'system', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 59, 0, 0, 0, 0, 0, 0, 0),
('navigation', 60, 15, 'admin/help/user', 'admin/help/user', 'user', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 60, 0, 0, 0, 0, 0, 0, 0),
('navigation', 61, 36, 'admin/settings/filters/%', 'admin/settings/filters/%', '', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 36, 61, 0, 0, 0, 0, 0, 0),
('navigation', 62, 26, 'admin/settings/clean-urls/check', 'admin/settings/clean-urls/check', 'Clean URL check', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 26, 62, 0, 0, 0, 0, 0, 0),
('navigation', 63, 23, 'admin/settings/actions/configure', 'admin/settings/actions/configure', 'Configure an advanced action', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 23, 63, 0, 0, 0, 0, 0, 0),
('navigation', 64, 25, 'admin/build/block/configure', 'admin/build/block/configure', 'Configure block', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 25, 64, 0, 0, 0, 0, 0, 0),
('navigation', 65, 17, 'admin/build/menu-customize/%', 'admin/build/menu-customize/%', 'Customize menu', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 17, 65, 0, 0, 0, 0, 0, 0, 0),
('navigation', 66, 30, 'admin/settings/date-time/lookup', 'admin/settings/date-time/lookup', 'Date and time lookup', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 30, 66, 0, 0, 0, 0, 0, 0),
('navigation', 67, 25, 'admin/build/block/delete', 'admin/build/block/delete', 'Delete block', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 25, 67, 0, 0, 0, 0, 0, 0),
('navigation', 68, 36, 'admin/settings/filters/delete', 'admin/settings/filters/delete', 'Delete input format', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 36, 68, 0, 0, 0, 0, 0, 0),
('navigation', 69, 22, 'admin/user/rules/delete', 'admin/user/rules/delete', 'Delete rule', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 20, 22, 69, 0, 0, 0, 0, 0, 0),
('navigation', 70, 45, 'admin/user/roles/edit', 'admin/user/roles/edit', 'Edit role', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 20, 45, 70, 0, 0, 0, 0, 0, 0),
('navigation', 71, 22, 'admin/user/rules/edit', 'admin/user/rules/edit', 'Edit rule', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 20, 22, 71, 0, 0, 0, 0, 0, 0),
('navigation', 72, 48, 'admin/reports/status/php', 'admin/reports/status/php', 'PHP', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 16, 48, 72, 0, 0, 0, 0, 0, 0),
('navigation', 73, 42, 'admin/content/node-settings/rebuild', 'admin/content/node-settings/rebuild', 'Rebuild permissions', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 10, 42, 73, 0, 0, 0, 0, 0, 0),
('navigation', 74, 23, 'admin/settings/actions/orphan', 'admin/settings/actions/orphan', 'Remove orphans', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 23, 74, 0, 0, 0, 0, 0, 0),
('navigation', 75, 48, 'admin/reports/status/run-cron', 'admin/reports/status/run-cron', 'Run cron', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 16, 48, 75, 0, 0, 0, 0, 0, 0),
('navigation', 76, 48, 'admin/reports/status/sql', 'admin/reports/status/sql', 'SQL', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 16, 48, 76, 0, 0, 0, 0, 0, 0),
('navigation', 77, 23, 'admin/settings/actions/delete/%', 'admin/settings/actions/delete/%', 'Delete action', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:17:"Delete an action.";}}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 18, 23, 77, 0, 0, 0, 0, 0, 0),
('navigation', 78, 0, 'admin/build/menu-customize/%/delete', 'admin/build/menu-customize/%/delete', 'Delete menu', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 79, 25, 'admin/build/block/list/js', 'admin/build/block/list/js', 'JavaScript List Form', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 25, 79, 0, 0, 0, 0, 0, 0),
('navigation', 80, 39, 'admin/build/modules/list/confirm', 'admin/build/modules/list/confirm', 'List', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 39, 80, 0, 0, 0, 0, 0, 0),
('navigation', 81, 0, 'user/reset/%/%/%', 'user/reset/%/%/%', 'Reset password', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 82, 39, 'admin/build/modules/uninstall/confirm', 'admin/build/modules/uninstall/confirm', 'Uninstall', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 39, 82, 0, 0, 0, 0, 0, 0),
('navigation', 83, 0, 'node/%/revisions/%/delete', 'node/%/revisions/%/delete', 'Delete earlier revision', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 84, 0, 'node/%/revisions/%/revert', 'node/%/revisions/%/revert', 'Revert to earlier revision', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 85, 0, 'node/%/revisions/%/view', 'node/%/revisions/%/view', 'Revisions', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 86, 38, 'admin/build/menu/item/%/delete', 'admin/build/menu/item/%/delete', 'Delete menu item', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 38, 86, 0, 0, 0, 0, 0, 0),
('navigation', 87, 38, 'admin/build/menu/item/%/edit', 'admin/build/menu/item/%/edit', 'Edit menu item', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 38, 87, 0, 0, 0, 0, 0, 0),
('navigation', 88, 38, 'admin/build/menu/item/%/reset', 'admin/build/menu/item/%/reset', 'Reset menu item', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 17, 38, 88, 0, 0, 0, 0, 0, 0),
('navigation', 89, 38, 'admin/build/menu-customize/navigation', 'admin/build/menu-customize/%', 'Navigation', 'a:0:{}', 'menu', 0, 0, 0, 0, 0, 4, 0, 2, 17, 38, 89, 0, 0, 0, 0, 0, 0),
('navigation', 90, 38, 'admin/build/menu-customize/primary-links', 'admin/build/menu-customize/%', 'Primary links', 'a:0:{}', 'menu', 0, 0, 0, 0, 0, 4, 0, 2, 17, 38, 90, 0, 0, 0, 0, 0, 0),
('navigation', 91, 38, 'admin/build/menu-customize/secondary-links', 'admin/build/menu-customize/%', 'Secondary links', 'a:0:{}', 'menu', 0, 0, 0, 0, 0, 4, 0, 2, 17, 38, 91, 0, 0, 0, 0, 0, 0),
('navigation', 92, 0, 'taxonomy/autocomplete', 'taxonomy/autocomplete', 'Autocomplete taxonomy', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 93, 16, 'admin/reports/dblog', 'admin/reports/dblog', 'Recent log entries', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:43:"View events that have recently been logged.";}}', 'system', 0, 0, 0, 0, -1, 3, 0, 2, 16, 93, 0, 0, 0, 0, 0, 0, 0),
('navigation', 94, 10, 'admin/content/taxonomy', 'admin/content/taxonomy', 'Taxonomy', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:67:"Manage tagging, categorization, and classification of your content.";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 10, 94, 0, 0, 0, 0, 0, 0, 0),
('navigation', 95, 0, 'taxonomy/term/%', 'taxonomy/term/%', 'Taxonomy term', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 96, 16, 'admin/reports/access-denied', 'admin/reports/access-denied', 'Top ''access denied'' errors', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:35:"View ''access denied'' errors (403s).";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 16, 96, 0, 0, 0, 0, 0, 0, 0),
('navigation', 97, 16, 'admin/reports/page-not-found', 'admin/reports/page-not-found', 'Top ''page not found'' errors', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:36:"View ''page not found'' errors (404s).";}}', 'system', 0, 0, 0, 0, 0, 3, 0, 2, 16, 97, 0, 0, 0, 0, 0, 0, 0),
('navigation', 98, 15, 'admin/help/dblog', 'admin/help/dblog', 'dblog', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 98, 0, 0, 0, 0, 0, 0, 0),
('navigation', 99, 15, 'admin/help/taxonomy', 'admin/help/taxonomy', 'taxonomy', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 99, 0, 0, 0, 0, 0, 0, 0),
('navigation', 100, 37, 'admin/settings/logging/dblog', 'admin/settings/logging/dblog', 'Database logging', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:169:"Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.";}}', 'system', 0, 0, 0, 0, 0, 4, 0, 2, 18, 37, 100, 0, 0, 0, 0, 0, 0),
('navigation', 101, 16, 'admin/reports/event/%', 'admin/reports/event/%', 'Details', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 16, 101, 0, 0, 0, 0, 0, 0, 0),
('navigation', 102, 94, 'admin/content/taxonomy/%', 'admin/content/taxonomy/%', 'List terms', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 10, 94, 102, 0, 0, 0, 0, 0, 0),
('navigation', 103, 94, 'admin/content/taxonomy/edit/term', 'admin/content/taxonomy/edit/term', 'Edit term', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 10, 94, 103, 0, 0, 0, 0, 0, 0),
('navigation', 104, 94, 'admin/content/taxonomy/edit/vocabulary/%', 'admin/content/taxonomy/edit/vocabulary/%', 'Edit vocabulary', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 10, 94, 104, 0, 0, 0, 0, 0, 0),
('navigation', 105, 16, 'admin/reports/updates', 'admin/reports/updates', 'Available updates', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:82:"Get a status report about available updates for your installed modules and themes.";}}', 'system', 0, 0, 0, 0, 10, 3, 0, 2, 16, 105, 0, 0, 0, 0, 0, 0, 0),
('navigation', 106, 11, 'node/add/page', 'node/add/page', 'Page', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:296:"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site''s initial home page.";}}', 'system', 0, 0, 0, 0, 0, 2, 0, 11, 106, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 107, 11, 'node/add/story', 'node/add/story', 'Story', 'a:1:{s:10:"attributes";a:1:{s:5:"title";s:392:"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site''s initial home page, and provides the ability to post comments.";}}', 'system', 0, 0, 0, 0, 0, 2, 0, 11, 107, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 108, 15, 'admin/help/update', 'admin/help/update', 'update', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 15, 108, 0, 0, 0, 0, 0, 0, 0),
('navigation', 109, 105, 'admin/reports/updates/check', 'admin/reports/updates/check', 'Manual update check', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 4, 0, 2, 16, 105, 109, 0, 0, 0, 0, 0, 0),
('navigation', 110, 10, 'admin/content/node-type/page', 'admin/content/node-type/page', 'Page', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 10, 110, 0, 0, 0, 0, 0, 0, 0),
('navigation', 111, 10, 'admin/content/node-type/story', 'admin/content/node-type/story', 'Story', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 3, 0, 2, 10, 111, 0, 0, 0, 0, 0, 0, 0),
('navigation', 112, 0, 'admin/content/node-type/page/delete', 'admin/content/node-type/page/delete', 'Delete', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0),
('navigation', 113, 0, 'admin/content/node-type/story/delete', 'admin/content/node-type/story/delete', 'Delete', 'a:0:{}', 'system', -1, 0, 0, 0, 0, 1, 0, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `menu_router`
--

DROP TABLE IF EXISTS `menu_router`;
CREATE TABLE IF NOT EXISTS `menu_router` (
`path` varchar(255) NOT NULL default '',
`load_functions` text NOT NULL,
`to_arg_functions` text NOT NULL,
`access_callback` varchar(255) NOT NULL default '',
`access_arguments` text,
`page_callback` varchar(255) NOT NULL default '',
`page_arguments` text,
`fit` int(11) NOT NULL default '0',
`number_parts` smallint(6) NOT NULL default '0',
`tab_parent` varchar(255) NOT NULL default '',
`tab_root` varchar(255) NOT NULL default '',
`title` varchar(255) NOT NULL default '',
`title_callback` varchar(255) NOT NULL default '',
`title_arguments` varchar(255) NOT NULL default '',
`type` int(11) NOT NULL default '0',
`block_callback` varchar(255) NOT NULL default '',
`description` text NOT NULL,
`position` varchar(255) NOT NULL default '',
`weight` int(11) NOT NULL default '0',
`file` mediumtext,
PRIMARY KEY (`path`),
KEY `fit` (`fit`),
KEY `tab_parent` (`tab_parent`),
KEY `tab_root_weight_title` (`tab_root`(64),`weight`,`title`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `menu_router`
--

INSERT INTO `menu_router` (`path`, `load_functions`, `to_arg_functions`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `fit`, `number_parts`, `tab_parent`, `tab_root`, `title`, `title_callback`, `title_arguments`, `type`, `block_callback`, `description`, `position`, `weight`, `file`) VALUES
('node', '', '', 'user_access', 'a:1:{i:0;s:14:"access content";}', 'node_page_default', 'a:0:{}', 1, 1, '', 'node', 'Content', 't', '', 4, '', '', '', 0, ''),
('rss.xml', '', '', 'user_access', 'a:1:{i:0;s:14:"access content";}', 'node_feed', 'a:0:{}', 1, 1, '', 'rss.xml', 'RSS feed', 't', '', 4, '', '', '', 0, ''),
('batch', '', '', '1', 'a:0:{}', 'system_batch_page', 'a:0:{}', 1, 1, '', 'batch', '', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_main_admin_page', 'a:0:{}', 1, 1, '', 'admin', 'Administer', 't', '', 6, '', '', '', 9, 'modules/system/system.admin.inc'),
('logout', '', '', 'user_is_logged_in', 'a:0:{}', 'user_logout', 'a:0:{}', 1, 1, '', 'logout', 'Log out', 't', '', 6, '', '', '', 10, 'modules/user/user.pages.inc'),
('user', '', '', '1', 'a:0:{}', 'user_page', 'a:0:{}', 1, 1, '', 'user', 'User account', 't', '', 4, '', '', '', 0, 'modules/user/user.pages.inc'),
('user/login', '', '', 'user_is_anonymous', 'a:0:{}', 'user_page', 'a:0:{}', 3, 2, 'user', 'user', 'Log in', 't', '', 136, '', '', '', 0, 'modules/user/user.pages.inc'),
('system/files', '', '', '1', 'a:0:{}', 'file_download', 'a:0:{}', 3, 2, '', 'system/files', 'File download', 't', '', 4, '', '', '', 0, ''),
('taxonomy/autocomplete', '', '', 'user_access', 'a:1:{i:0;s:14:"access content";}', 'taxonomy_autocomplete', 'a:0:{}', 3, 2, '', 'taxonomy/autocomplete', 'Autocomplete taxonomy', 't', '', 4, '', '', '', 0, 'modules/taxonomy/taxonomy.pages.inc'),
('admin/by-module', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_admin_by_module', 'a:0:{}', 3, 2, 'admin', 'admin', 'By module', 't', '', 128, '', '', '', 2, 'modules/system/system.admin.inc'),
('admin/by-task', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_main_admin_page', 'a:0:{}', 3, 2, 'admin', 'admin', 'By task', 't', '', 136, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/compact', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_admin_compact_page', 'a:0:{}', 3, 2, '', 'admin/compact', 'Compact mode', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('filter/tips', '', '', '1', 'a:0:{}', 'filter_tips_long', 'a:0:{}', 3, 2, '', 'filter/tips', 'Compose tips', 't', '', 20, '', '', '', 0, 'modules/filter/filter.pages.inc'),
('node/add', '', '', '_node_add_access', 'a:0:{}', 'node_add_page', 'a:0:{}', 3, 2, '', 'node/add', 'Create content', 't', '', 6, '', '', '', 1, 'modules/node/node.pages.inc'),
('comment/delete', '', '', 'user_access', 'a:1:{i:0;s:19:"administer comments";}', 'comment_delete', 'a:0:{}', 3, 2, '', 'comment/delete', 'Delete comment', 't', '', 4, '', '', '', 0, 'modules/comment/comment.admin.inc'),
('comment/edit', '', '', 'user_access', 'a:1:{i:0;s:13:"post comments";}', 'comment_edit', 'a:0:{}', 3, 2, '', 'comment/edit', 'Edit comment', 't', '', 4, '', '', '', 0, 'modules/comment/comment.pages.inc'),
('admin/help', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_main', 'a:0:{}', 3, 2, '', 'admin/help', 'Help', 't', '', 6, '', '', '', 9, 'modules/help/help.admin.inc'),
('user/register', '', '', 'user_register_access', 'a:0:{}', 'drupal_get_form', 'a:1:{i:0;s:13:"user_register";}', 3, 2, 'user', 'user', 'Create new account', 't', '', 128, '', '', '', 0, 'modules/user/user.pages.inc'),
('user/password', '', '', 'user_is_anonymous', 'a:0:{}', 'drupal_get_form', 'a:1:{i:0;s:9:"user_pass";}', 3, 2, 'user', 'user', 'Request new password', 't', '', 128, '', '', '', 0, 'modules/user/user.pages.inc'),
('user/autocomplete', '', '', 'user_access', 'a:1:{i:0;s:20:"access user profiles";}', 'user_autocomplete', 'a:0:{}', 3, 2, '', 'user/autocomplete', 'User autocomplete', 't', '', 4, '', '', '', 0, 'modules/user/user.pages.inc'),
('admin/content', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_admin_menu_block_page', 'a:0:{}', 3, 2, '', 'admin/content', 'Content management', 't', '', 6, '', 'Manage your site''s content.', 'left', -10, 'modules/system/system.admin.inc'),
('admin/reports', '', '', 'user_access', 'a:1:{i:0;s:19:"access site reports";}', 'system_admin_menu_block_page', 'a:0:{}', 3, 2, '', 'admin/reports', 'Reports', 't', '', 6, '', 'View reports from system logs and other status information.', 'left', 5, 'modules/system/system.admin.inc'),
('admin/build', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_admin_menu_block_page', 'a:0:{}', 3, 2, '', 'admin/build', 'Site building', 't', '', 6, '', 'Control how your site looks and feels.', 'right', -10, 'modules/system/system.admin.inc'),
('admin/settings', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_settings_overview', 'a:0:{}', 3, 2, '', 'admin/settings', 'Site configuration', 't', '', 6, '', 'Adjust basic site configuration options.', 'right', -5, 'modules/system/system.admin.inc'),
('node/%', 'a:1:{i:1;s:9:"node_load";}', '', 'node_access', 'a:2:{i:0;s:4:"view";i:1;i:1;}', 'node_page_view', 'a:1:{i:0;i:1;}', 2, 2, '', 'node/%', '', 'node_page_title', 'a:1:{i:0;i:1;}', 4, '', '', '', 0, ''),
('admin/user', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'system_admin_menu_block_page', 'a:0:{}', 3, 2, '', 'admin/user', 'User management', 't', '', 6, '', 'Manage your site''s users, groups and access to site features.', 'left', 0, 'modules/system/system.admin.inc'),
('user/%', 'a:1:{i:1;s:22:"user_uid_optional_load";}', 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}', 'user_view_access', 'a:1:{i:0;i:1;}', 'user_view', 'a:1:{i:0;i:1;}', 2, 2, '', 'user/%', 'My account', 'user_page_title', 'a:1:{i:0;i:1;}', 6, '', '', '', 0, 'modules/user/user.pages.inc'),
('node/%/view', 'a:1:{i:1;s:9:"node_load";}', '', 'node_access', 'a:2:{i:0;s:4:"view";i:1;i:1;}', 'node_page_view', 'a:1:{i:0;i:1;}', 5, 3, 'node/%', 'node/%', 'View', 't', '', 136, '', '', '', -10, ''),
('user/%/view', 'a:1:{i:1;s:9:"user_load";}', '', 'user_view_access', 'a:1:{i:0;i:1;}', 'user_view', 'a:1:{i:0;i:1;}', 5, 3, 'user/%', 'user/%', 'View', 't', '', 136, '', '', '', -10, 'modules/user/user.pages.inc'),
('admin/settings/actions', '', '', 'user_access', 'a:1:{i:0;s:18:"administer actions";}', 'system_actions_manage', 'a:0:{}', 7, 3, '', 'admin/settings/actions', 'Actions', 't', '', 6, '', 'Manage the actions defined for your site.', '', 0, ''),
('admin/user/rules', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'user_admin_access', 'a:0:{}', 7, 3, '', 'admin/user/rules', 'Access rules', 't', '', 6, '', 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.', '', 0, 'modules/user/user.admin.inc'),
('admin/reports/updates', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'update_status', 'a:0:{}', 7, 3, '', 'admin/reports/updates', 'Available updates', 't', '', 6, '', 'Get a status report about available updates for your installed modules and themes.', '', 10, 'modules/update/update.report.inc'),
('admin/build/block', '', '', 'user_access', 'a:1:{i:0;s:17:"administer blocks";}', 'block_admin_display', 'a:0:{}', 7, 3, '', 'admin/build/block', 'Blocks', 't', '', 6, '', 'Configure what block content appears in your site''s sidebars and other regions.', '', 0, 'modules/block/block.admin.inc'),
('admin/content/comment', '', '', 'user_access', 'a:1:{i:0;s:19:"administer comments";}', 'comment_admin', 'a:0:{}', 7, 3, '', 'admin/content/comment', 'Comments', 't', '', 6, '', 'List and edit site comments and the comment moderation queue.', '', 0, 'modules/comment/comment.admin.inc'),
('admin/content/types', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'node_overview_types', 'a:0:{}', 7, 3, '', 'admin/content/types', 'Content types', 't', '', 6, '', 'Manage posts by content type, including default status, front page promotion, etc.', '', 0, 'modules/node/content_types.inc'),
('admin/settings/logging', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'system_logging_overview', 'a:0:{}', 7, 3, '', 'admin/settings/logging', 'Logging and alerts', 't', '', 6, '', 'Settings for logging and alerts modules. Various modules can route Drupal''s system events to different destination, such as syslog, database, email, ...etc.', '', 0, 'modules/system/system.admin.inc'),
('admin/reports/dblog', '', '', 'user_access', 'a:1:{i:0;s:19:"access site reports";}', 'dblog_overview', 'a:0:{}', 7, 3, '', 'admin/reports/dblog', 'Recent log entries', 't', '', 6, '', 'View events that have recently been logged.', '', -1, 'modules/dblog/dblog.admin.inc'),
('admin/reports/status', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'system_status', 'a:0:{}', 7, 3, '', 'admin/reports/status', 'Status report', 't', '', 6, '', 'Get a status report about your site''s operation and any detected problems.', '', 10, 'modules/system/system.admin.inc'),
('taxonomy/term/%', 'a:1:{i:2;N;}', '', 'user_access', 'a:1:{i:0;s:14:"access content";}', 'taxonomy_term_page', 'a:1:{i:0;i:2;}', 6, 3, '', 'taxonomy/term/%', 'Taxonomy term', 't', '', 4, '', '', '', 0, 'modules/taxonomy/taxonomy.pages.inc'),
('admin/help/block', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/block', 'block', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/color', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/color', 'color', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/comment', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/comment', 'comment', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/dblog', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/dblog', 'dblog', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/filter', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/filter', 'filter', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/help', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/help', 'help', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/menu', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/menu', 'menu', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/node', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/node', 'node', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/system', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/system', 'system', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/taxonomy', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/taxonomy', 'taxonomy', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/update', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/update', 'update', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/help/user', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'help_page', 'a:1:{i:0;i:2;}', 7, 3, '', 'admin/help/user', 'user', 't', '', 4, '', '', '', 0, 'modules/help/help.admin.inc'),
('admin/settings/clean-urls', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:25:"system_clean_url_settings";}', 7, 3, '', 'admin/settings/clean-urls', 'Clean URLs', 't', '', 6, '', 'Enable or disable clean URLs for your site.', '', 0, 'modules/system/system.admin.inc'),
('admin/content/node', '', '', 'user_access', 'a:1:{i:0;s:16:"administer nodes";}', 'drupal_get_form', 'a:1:{i:0;s:18:"node_admin_content";}', 7, 3, '', 'admin/content/node', 'Content', 't', '', 6, '', 'View, edit, and delete your site''s content.', '', 0, 'modules/node/node.admin.inc'),
('admin/settings/date-time', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:25:"system_date_time_settings";}', 7, 3, '', 'admin/settings/date-time', 'Date and time', 't', '', 6, '', 'Settings for how Drupal displays date and time, as well as the system''s default timezone.', '', 0, 'modules/system/system.admin.inc'),
('node/%/delete', 'a:1:{i:1;s:9:"node_load";}', '', 'node_access', 'a:2:{i:0;s:6:"delete";i:1;i:1;}', 'drupal_get_form', 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}', 5, 3, '', 'node/%/delete', 'Delete', 't', '', 4, '', '', '', 1, 'modules/node/node.pages.inc'),
('user/%/delete', 'a:1:{i:1;s:9:"user_load";}', '', 'user_access', 'a:1:{i:0;s:16:"administer users";}', 'drupal_get_form', 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}', 5, 3, '', 'user/%/delete', 'Delete', 't', '', 4, '', '', '', 0, 'modules/user/user.pages.inc'),
('node/%/edit', 'a:1:{i:1;s:9:"node_load";}', '', 'node_access', 'a:2:{i:0;s:6:"update";i:1;i:1;}', 'node_page_edit', 'a:1:{i:0;i:1;}', 5, 3, 'node/%', 'node/%', 'Edit', 't', '', 128, '', '', '', 1, 'modules/node/node.pages.inc'),
('admin/settings/error-reporting', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:31:"system_error_reporting_settings";}', 7, 3, '', 'admin/settings/error-reporting', 'Error reporting', 't', '', 6, '', 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/file-system', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:27:"system_file_system_settings";}', 7, 3, '', 'admin/settings/file-system', 'File system', 't', '', 6, '', 'Tell Drupal where to store uploaded files and how they are accessed.', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/image-toolkit', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:29:"system_image_toolkit_settings";}', 7, 3, '', 'admin/settings/image-toolkit', 'Image toolkit', 't', '', 6, '', 'Choose which image toolkit to use if you have installed optional toolkits.', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/filters', '', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'drupal_get_form', 'a:1:{i:0;s:21:"filter_admin_overview";}', 7, 3, '', 'admin/settings/filters', 'Input formats', 't', '', 6, '', 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', '', 0, 'modules/filter/filter.admin.inc'),
('admin/build/menu', '', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'menu_overview_page', 'a:0:{}', 7, 3, '', 'admin/build/menu', 'Menus', 't', '', 6, '', 'Control your site''s navigation menu, primary links and secondary links. as well as rename and reorganize menu items.', '', 0, 'modules/menu/menu.admin.inc'),
('admin/build/modules', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:14:"system_modules";}', 7, 3, '', 'admin/build/modules', 'Modules', 't', '', 6, '', 'Enable or disable add-on modules for your site.', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/performance', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:27:"system_performance_settings";}', 7, 3, '', 'admin/settings/performance', 'Performance', 't', '', 6, '', 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.', '', 0, 'modules/system/system.admin.inc'),
('admin/user/permissions', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'drupal_get_form', 'a:1:{i:0;s:15:"user_admin_perm";}', 7, 3, '', 'admin/user/permissions', 'Permissions', 't', '', 6, '', 'Determine access to features by selecting permissions for roles.', '', 0, 'modules/user/user.admin.inc'),
('admin/content/node-settings', '', '', 'user_access', 'a:1:{i:0;s:16:"administer nodes";}', 'drupal_get_form', 'a:1:{i:0;s:14:"node_configure";}', 7, 3, '', 'admin/content/node-settings', 'Post settings', 't', '', 6, '', 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.', '', 0, 'modules/node/node.admin.inc'),
('admin/content/rss-publishing', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:25:"system_rss_feeds_settings";}', 7, 3, '', 'admin/content/rss-publishing', 'RSS publishing', 't', '', 6, '', 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.', '', 0, 'modules/system/system.admin.inc'),
('comment/reply/%', 'a:1:{i:2;s:9:"node_load";}', '', 'node_access', 'a:2:{i:0;s:4:"view";i:1;i:2;}', 'comment_reply', 'a:1:{i:0;i:2;}', 6, 3, '', 'comment/reply/%', 'Reply to comment', 't', '', 4, '', '', '', 0, 'modules/comment/comment.pages.inc'),
('node/%/revisions', 'a:1:{i:1;s:9:"node_load";}', '', '_node_revision_access', 'a:1:{i:0;i:1;}', 'node_revision_overview', 'a:1:{i:0;i:1;}', 5, 3, 'node/%', 'node/%', 'Revisions', 't', '', 128, '', '', '', 2, 'modules/node/node.pages.inc'),
('admin/user/roles', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'drupal_get_form', 'a:1:{i:0;s:19:"user_admin_new_role";}', 7, 3, '', 'admin/user/roles', 'Roles', 't', '', 6, '', 'List, edit, or add user roles.', '', 0, 'modules/user/user.admin.inc'),
('admin/settings/site-information', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:32:"system_site_information_settings";}', 7, 3, '', 'admin/settings/site-information', 'Site information', 't', '', 6, '', 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/site-maintenance', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:32:"system_site_maintenance_settings";}', 7, 3, '', 'admin/settings/site-maintenance', 'Site maintenance', 't', '', 6, '', 'Take the site off-line for maintenance or bring it back online.', '', 0, 'modules/system/system.admin.inc'),
('admin/content/taxonomy', '', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'drupal_get_form', 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}', 7, 3, '', 'admin/content/taxonomy', 'Taxonomy', 't', '', 6, '', 'Manage tagging, categorization, and classification of your content.', '', 0, 'modules/taxonomy/taxonomy.admin.inc'),
('admin/build/themes', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}', 7, 3, '', 'admin/build/themes', 'Themes', 't', '', 6, '', 'Change which theme your site uses or allows users to set.', '', 0, 'modules/system/system.admin.inc'),
('admin/reports/access-denied', '', '', 'user_access', 'a:1:{i:0;s:19:"access site reports";}', 'dblog_top', 'a:1:{i:0;s:13:"access denied";}', 7, 3, '', 'admin/reports/access-denied', 'Top ''access denied'' errors', 't', '', 6, '', 'View ''access denied'' errors (403s).', '', 0, 'modules/dblog/dblog.admin.inc'),
('admin/reports/page-not-found', '', '', 'user_access', 'a:1:{i:0;s:19:"access site reports";}', 'dblog_top', 'a:1:{i:0;s:14:"page not found";}', 7, 3, '', 'admin/reports/page-not-found', 'Top ''page not found'' errors', 't', '', 6, '', 'View ''page not found'' errors (404s).', '', 0, 'modules/dblog/dblog.admin.inc'),
('admin/user/settings', '', '', 'user_access', 'a:1:{i:0;s:16:"administer users";}', 'drupal_get_form', 'a:1:{i:0;s:19:"user_admin_settings";}', 7, 3, '', 'admin/user/settings', 'User settings', 't', '', 6, '', 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.', '', 0, 'modules/user/user.admin.inc'),
('admin/user/user', '', '', 'user_access', 'a:1:{i:0;s:16:"administer users";}', 'user_admin', 'a:1:{i:0;s:4:"list";}', 7, 3, '', 'admin/user/user', 'Users', 't', '', 6, '', 'List, add, and edit users.', '', 0, 'modules/user/user.admin.inc'),
('user/%/edit', 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', '', 'user_edit_access', 'a:1:{i:0;i:1;}', 'user_edit', 'a:1:{i:0;i:1;}', 5, 3, 'user/%', 'user/%', 'Edit', 't', '', 128, '', '', '', 0, 'modules/user/user.pages.inc'),
('admin/settings/admin', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:27:"system_admin_theme_settings";}', 7, 3, '', 'admin/settings/admin', 'Administration theme', 't', '', 6, 'system_admin_theme_settings', 'Settings for how your administrative pages should look.', 'left', 0, 'modules/system/system.admin.inc'),
('node/add/page', '', '', 'node_access', 'a:2:{i:0;s:6:"create";i:1;s:4:"page";}', 'node_add', 'a:1:{i:0;i:2;}', 7, 3, '', 'node/add/page', 'Page', 'check_plain', '', 6, '', 'A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site''s initial home page.', '', 0, 'modules/node/node.pages.inc'),
('node/add/story', '', '', 'node_access', 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}', 'node_add', 'a:1:{i:0;i:2;}', 7, 3, '', 'node/add/story', 'Story', 'check_plain', '', 6, '', 'A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site''s initial home page, and provides the ability to post comments.', '', 0, 'modules/node/node.pages.inc'),
('admin/build/block/list', '', '', 'user_access', 'a:1:{i:0;s:17:"administer blocks";}', 'block_admin_display', 'a:0:{}', 15, 4, 'admin/build/block', 'admin/build/block', 'List', 't', '', 136, '', '', '', -10, 'modules/block/block.admin.inc'),
('admin/content/node/overview', '', '', 'user_access', 'a:1:{i:0;s:16:"administer nodes";}', 'drupal_get_form', 'a:1:{i:0;s:18:"node_admin_content";}', 15, 4, 'admin/content/node', 'admin/content/node', 'List', 't', '', 136, '', '', '', -10, 'modules/node/node.admin.inc'),
('admin/content/types/list', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'node_overview_types', 'a:0:{}', 15, 4, 'admin/content/types', 'admin/content/types', 'List', 't', '', 136, '', '', '', -10, 'modules/node/content_types.inc'),
('admin/content/taxonomy/list', '', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'drupal_get_form', 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}', 15, 4, 'admin/content/taxonomy', 'admin/content/taxonomy', 'List', 't', '', 136, '', '', '', -10, 'modules/taxonomy/taxonomy.admin.inc'),
('admin/user/user/list', '', '', 'user_access', 'a:1:{i:0;s:16:"administer users";}', 'user_admin', 'a:1:{i:0;s:4:"list";}', 15, 4, 'admin/user/user', 'admin/user/user', 'List', 't', '', 136, '', '', '', -10, 'modules/user/user.admin.inc'),
('admin/settings/filters/list', '', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'drupal_get_form', 'a:1:{i:0;s:21:"filter_admin_overview";}', 15, 4, 'admin/settings/filters', 'admin/settings/filters', 'List', 't', '', 136, '', '', '', 0, 'modules/filter/filter.admin.inc'),
('admin/user/rules/list', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'user_admin_access', 'a:0:{}', 15, 4, 'admin/user/rules', 'admin/user/rules', 'List', 't', '', 136, '', '', '', -10, 'modules/user/user.admin.inc'),
('admin/build/modules/list', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:14:"system_modules";}', 15, 4, 'admin/build/modules', 'admin/build/modules', 'List', 't', '', 136, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/content/comment/new', '', '', 'user_access', 'a:1:{i:0;s:19:"administer comments";}', 'comment_admin', 'a:0:{}', 15, 4, 'admin/content/comment', 'admin/content/comment', 'Published comments', 't', '', 136, '', '', '', -10, 'modules/comment/comment.admin.inc'),
('user/%/edit/account', 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}', '', 'user_edit_access', 'a:1:{i:0;i:1;}', 'user_edit', 'a:1:{i:0;i:1;}', 11, 4, 'user/%/edit', 'user/%', 'Account', 't', '', 136, '', '', '', 0, 'modules/user/user.pages.inc'),
('admin/build/themes/select', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}', 15, 4, 'admin/build/themes', 'admin/build/themes', 'List', 't', '', 136, '', 'Select the default theme.', '', -1, 'modules/system/system.admin.inc'),
('admin/build/menu/list', '', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'menu_overview_page', 'a:0:{}', 15, 4, 'admin/build/menu', 'admin/build/menu', 'List menus', 't', '', 136, '', '', '', -10, 'modules/menu/menu.admin.inc'),
('admin/build/themes/settings', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:21:"system_theme_settings";}', 15, 4, 'admin/build/themes', 'admin/build/themes', 'Configure', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/actions/manage', '', '', 'user_access', 'a:1:{i:0;s:18:"administer actions";}', 'system_actions_manage', 'a:0:{}', 15, 4, 'admin/settings/actions', 'admin/settings/actions', 'Manage actions', 't', '', 136, '', 'Manage the actions defined for your site.', '', -2, ''),
('admin/settings/actions/orphan', '', '', 'user_access', 'a:1:{i:0;s:18:"administer actions";}', 'system_actions_remove_orphans', 'a:0:{}', 15, 4, '', 'admin/settings/actions/orphan', 'Remove orphans', 't', '', 4, '', '', '', 0, ''),
('admin/build/modules/uninstall', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:24:"system_modules_uninstall";}', 15, 4, 'admin/build/modules', 'admin/build/modules', 'Uninstall', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/settings/filters/add', '', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'filter_admin_format_page', 'a:0:{}', 15, 4, 'admin/settings/filters', 'admin/settings/filters', 'Add input format', 't', '', 128, '', '', '', 1, 'modules/filter/filter.admin.inc'),
('admin/user/rules/add', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'user_admin_access_add', 'a:0:{}', 15, 4, 'admin/user/rules', 'admin/user/rules', 'Add rule', 't', '', 128, '', '', '', 0, 'modules/user/user.admin.inc'),
('admin/user/user/create', '', '', 'user_access', 'a:1:{i:0;s:16:"administer users";}', 'user_admin', 'a:1:{i:0;s:6:"create";}', 15, 4, 'admin/user/user', 'admin/user/user', 'Add user', 't', '', 128, '', '', '', 0, 'modules/user/user.admin.inc'),
('admin/content/comment/approval', '', '', 'user_access', 'a:1:{i:0;s:19:"administer comments";}', 'comment_admin', 'a:1:{i:0;s:8:"approval";}', 15, 4, 'admin/content/comment', 'admin/content/comment', 'Approval queue', 't', '', 128, '', '', '', 0, 'modules/comment/comment.admin.inc'),
('admin/user/rules/check', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'user_admin_access_check', 'a:0:{}', 15, 4, 'admin/user/rules', 'admin/user/rules', 'Check rules', 't', '', 128, '', '', '', 0, 'modules/user/user.admin.inc'),
('admin/settings/clean-urls/check', '', '', '1', 'a:0:{}', 'drupal_json', 'a:1:{i:0;a:1:{s:6:"status";b:1;}}', 15, 4, '', 'admin/settings/clean-urls/check', 'Clean URL check', 't', '', 4, '', '', '', 0, ''),
('admin/settings/actions/configure', '', '', 'user_access', 'a:1:{i:0;s:18:"administer actions";}', 'drupal_get_form', 'a:1:{i:0;s:24:"system_actions_configure";}', 15, 4, '', 'admin/settings/actions/configure', 'Configure an advanced action', 't', '', 4, '', '', '', 0, ''),
('admin/settings/date-time/lookup', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'system_date_time_lookup', 'a:0:{}', 15, 4, '', 'admin/settings/date-time/lookup', 'Date and time lookup', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/user/roles/edit', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'drupal_get_form', 'a:1:{i:0;s:15:"user_admin_role";}', 15, 4, '', 'admin/user/roles/edit', 'Edit role', 't', '', 4, '', '', '', 0, 'modules/user/user.admin.inc'),
('admin/user/rules/edit', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'user_admin_access_edit', 'a:0:{}', 15, 4, '', 'admin/user/rules/edit', 'Edit rule', 't', '', 4, '', '', '', 0, 'modules/user/user.admin.inc'),
('admin/reports/updates/list', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'update_status', 'a:0:{}', 15, 4, 'admin/reports/updates', 'admin/reports/updates', 'List', 't', '', 136, '', '', '', 0, 'modules/update/update.report.inc'),
('admin/reports/updates/check', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'update_manual_status', 'a:0:{}', 15, 4, '', 'admin/reports/updates/check', 'Manual update check', 't', '', 4, '', '', '', 0, 'modules/update/update.fetch.inc'),
('admin/reports/status/php', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'system_php', 'a:0:{}', 15, 4, '', 'admin/reports/status/php', 'PHP', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/content/node-settings/rebuild', '', '', 'user_access', 'a:1:{i:0;s:27:"access administration pages";}', 'drupal_get_form', 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}', 15, 4, '', 'admin/content/node-settings/rebuild', 'Rebuild permissions', 't', '', 4, '', '', '', 0, 'modules/node/node.admin.inc'),
('admin/reports/status/run-cron', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'system_run_cron', 'a:0:{}', 15, 4, '', 'admin/reports/status/run-cron', 'Run cron', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/reports/status/sql', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'system_sql', 'a:0:{}', 15, 4, '', 'admin/reports/status/sql', 'SQL', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/block/add', '', '', 'user_access', 'a:1:{i:0;s:17:"administer blocks";}', 'drupal_get_form', 'a:1:{i:0;s:20:"block_add_block_form";}', 15, 4, 'admin/build/block', 'admin/build/block', 'Add block', 't', '', 128, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/content/types/add', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:1:{i:0;s:14:"node_type_form";}', 15, 4, 'admin/content/types', 'admin/content/types', 'Add content type', 't', '', 128, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/build/menu/add', '', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}', 15, 4, 'admin/build/menu', 'admin/build/menu', 'Add menu', 't', '', 128, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/build/block/configure', '', '', 'user_access', 'a:1:{i:0;s:17:"administer blocks";}', 'drupal_get_form', 'a:1:{i:0;s:21:"block_admin_configure";}', 15, 4, '', 'admin/build/block/configure', 'Configure block', 't', '', 4, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/build/block/delete', '', '', 'user_access', 'a:1:{i:0;s:17:"administer blocks";}', 'drupal_get_form', 'a:1:{i:0;s:16:"block_box_delete";}', 15, 4, '', 'admin/build/block/delete', 'Delete block', 't', '', 4, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/settings/filters/delete', '', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'drupal_get_form', 'a:1:{i:0;s:19:"filter_admin_delete";}', 15, 4, '', 'admin/settings/filters/delete', 'Delete input format', 't', '', 4, '', '', '', 0, 'modules/filter/filter.admin.inc'),
('admin/user/rules/delete', '', '', 'user_access', 'a:1:{i:0;s:22:"administer permissions";}', 'drupal_get_form', 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}', 15, 4, '', 'admin/user/rules/delete', 'Delete rule', 't', '', 4, '', '', '', 0, 'modules/user/user.admin.inc'),
('admin/reports/event/%', 'a:1:{i:3;N;}', '', 'user_access', 'a:1:{i:0;s:19:"access site reports";}', 'dblog_event', 'a:1:{i:0;i:3;}', 14, 4, '', 'admin/reports/event/%', 'Details', 't', '', 4, '', '', '', 0, 'modules/dblog/dblog.admin.inc'),
('admin/content/taxonomy/%', 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'drupal_get_form', 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}', 14, 4, '', 'admin/content/taxonomy/%', 'List terms', 't', '', 4, '', '', '', 0, 'modules/taxonomy/taxonomy.admin.inc'),
('admin/content/node-type/page', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:4:"page";s:4:"name";s:4:"Page";s:6:"module";s:4:"node";s:11:"description";s:296:"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site''s initial home page.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:4:"page";}}', 15, 4, '', 'admin/content/node-type/page', 'Page', 't', '', 4, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/build/menu/settings', '', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:1:{i:0;s:14:"menu_configure";}', 15, 4, 'admin/build/menu', 'admin/build/menu', 'Settings', 't', '', 128, '', '', '', 5, 'modules/menu/menu.admin.inc'),
('admin/reports/updates/settings', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:15:"update_settings";}', 15, 4, 'admin/reports/updates', 'admin/reports/updates', 'Settings', 't', '', 128, '', '', '', 0, 'modules/update/update.settings.inc'),
('admin/content/node-type/story', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:5:"story";s:4:"name";s:5:"Story";s:6:"module";s:4:"node";s:11:"description";s:392:"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site''s initial home page, and provides the ability to post comments.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}', 15, 4, '', 'admin/content/node-type/story', 'Story', 't', '', 4, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/settings/logging/dblog', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:20:"dblog_admin_settings";}', 15, 4, '', 'admin/settings/logging/dblog', 'Database logging', 't', '', 6, '', 'Settings for logging to the Drupal database logs. This is the most common method for small to medium sites on shared hosting. The logs are viewable from the admin pages.', '', 0, 'modules/dblog/dblog.admin.inc'),
('admin/settings/filters/%', 'a:1:{i:3;s:18:"filter_format_load";}', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'filter_admin_format_page', 'a:1:{i:0;i:3;}', 14, 4, '', 'admin/settings/filters/%', '', 'filter_admin_format_title', 'a:1:{i:0;i:3;}', 4, '', '', '', 0, 'modules/filter/filter.admin.inc'),
('admin/build/menu-customize/%', 'a:1:{i:3;s:9:"menu_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}', 14, 4, '', 'admin/build/menu-customize/%', 'Customize menu', 'menu_overview_title', 'a:1:{i:0;i:3;}', 4, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/content/node-type/page/edit', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:4:"page";s:4:"name";s:4:"Page";s:6:"module";s:4:"node";s:11:"description";s:296:"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site''s initial home page.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:4:"page";}}', 31, 5, 'admin/content/node-type/page', 'admin/content/node-type/page', 'Edit', 't', '', 136, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/content/node-type/story/edit', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:5:"story";s:4:"name";s:5:"Story";s:6:"module";s:4:"node";s:11:"description";s:392:"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site''s initial home page, and provides the ability to post comments.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}', 31, 5, 'admin/content/node-type/story', 'admin/content/node-type/story', 'Edit', 't', '', 136, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/build/themes/settings/global', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:21:"system_theme_settings";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Global settings', 't', '', 136, '', '', '', -1, 'modules/system/system.admin.inc'),
('admin/content/taxonomy/%/list', 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'drupal_get_form', 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}', 29, 5, 'admin/content/taxonomy/%', 'admin/content/taxonomy/%', 'List', 't', '', 136, '', '', '', -10, 'modules/taxonomy/taxonomy.admin.inc'),
('admin/settings/filters/%/edit', 'a:1:{i:3;s:18:"filter_format_load";}', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'filter_admin_format_page', 'a:1:{i:0;i:3;}', 29, 5, 'admin/settings/filters/%', 'admin/settings/filters/%', 'Edit', 't', '', 136, '', '', '', 0, 'modules/filter/filter.admin.inc'),
('admin/build/modules/list/confirm', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:14:"system_modules";}', 31, 5, '', 'admin/build/modules/list/confirm', 'List', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/menu-customize/%/list', 'a:1:{i:3;s:9:"menu_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}', 29, 5, 'admin/build/menu-customize/%', 'admin/build/menu-customize/%', 'List items', 't', '', 136, '', '', '', -10, 'modules/menu/menu.admin.inc'),
('admin/build/modules/uninstall/confirm', '', '', 'user_access', 'a:1:{i:0;s:29:"administer site configuration";}', 'drupal_get_form', 'a:1:{i:0;s:24:"system_modules_uninstall";}', 31, 5, '', 'admin/build/modules/uninstall/confirm', 'Uninstall', 't', '', 4, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/themes/settings/bluemarine', '', '', '_system_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}', 'drupal_get_form', 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Bluemarine', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/themes/settings/chameleon', '', '', '_system_themes_access', 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}', 'drupal_get_form', 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Chameleon', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/content/node-type/page/delete', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:4:"page";s:4:"name";s:4:"Page";s:6:"module";s:4:"node";s:11:"description";s:296:"A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site''s initial home page.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:4:"page";}}', 31, 5, '', 'admin/content/node-type/page/delete', 'Delete', 't', '', 4, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/content/node-type/story/delete', '', '', 'user_access', 'a:1:{i:0;s:24:"administer content types";}', 'drupal_get_form', 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:5:"story";s:4:"name";s:5:"Story";s:6:"module";s:4:"node";s:11:"description";s:392:"A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site''s initial home page, and provides the ability to post comments.";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:5:"Title";s:8:"has_body";s:1:"1";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"1";s:8:"modified";s:1:"1";s:6:"locked";s:1:"0";s:9:"orig_type";s:5:"story";}}', 31, 5, '', 'admin/content/node-type/story/delete', 'Delete', 't', '', 4, '', '', '', 0, 'modules/node/content_types.inc'),
('admin/content/taxonomy/edit/term', '', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'taxonomy_admin_term_edit', 'a:0:{}', 31, 5, '', 'admin/content/taxonomy/edit/term', 'Edit term', 't', '', 4, '', '', '', 0, 'modules/taxonomy/taxonomy.admin.inc'),
('admin/build/themes/settings/garland', '', '', '_system_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', 'drupal_get_form', 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Garland', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/block/list/js', '', '', 'user_access', 'a:1:{i:0;s:17:"administer blocks";}', 'block_admin_display_js', 'a:0:{}', 31, 5, '', 'admin/build/block/list/js', 'JavaScript List Form', 't', '', 4, '', '', '', 0, 'modules/block/block.admin.inc');
INSERT INTO `menu_router` (`path`, `load_functions`, `to_arg_functions`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `fit`, `number_parts`, `tab_parent`, `tab_root`, `title`, `title_callback`, `title_arguments`, `type`, `block_callback`, `description`, `position`, `weight`, `file`) VALUES
('admin/build/themes/settings/marvin', '', '', '_system_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}', 'drupal_get_form', 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Marvin', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/themes/settings/minnelli', '', '', '_system_themes_access', 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}', 'drupal_get_form', 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Minnelli', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/themes/settings/pushbutton', '', '', '_system_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}', 'drupal_get_form', 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}', 31, 5, 'admin/build/themes/settings', 'admin/build/themes', 'Pushbutton', 't', '', 128, '', '', '', 0, 'modules/system/system.admin.inc'),
('admin/build/menu-customize/%/add', 'a:1:{i:3;s:9:"menu_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}', 29, 5, 'admin/build/menu-customize/%', 'admin/build/menu-customize/%', 'Add item', 't', '', 128, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/build/block/list/bluemarine', '', '', '_block_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/bluemarine/bluemarine.info";s:4:"name";s:10:"bluemarine";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:6:"engine";s:11:"phptemplate";}}', 'block_admin_display', 'a:1:{i:0;s:10:"bluemarine";}', 31, 5, 'admin/build/block/list', 'admin/build/block', 'Bluemarine', 't', '', 128, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/build/block/list/chameleon', '', '', '_block_themes_access', 'a:1:{i:0;O:8:"stdClass":11:{s:8:"filename";s:31:"themes/chameleon/chameleon.info";s:4:"name";s:9:"chameleon";s:4:"type";s:5:"theme";s:5:"owner";s:32:"themes/chameleon/chameleon.theme";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}}}', 'block_admin_display', 'a:1:{i:0;s:9:"chameleon";}', 31, 5, 'admin/build/block/list', 'admin/build/block', 'Chameleon', 't', '', 128, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/settings/filters/%/configure', 'a:1:{i:3;s:18:"filter_format_load";}', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'filter_admin_configure_page', 'a:1:{i:0;i:3;}', 29, 5, 'admin/settings/filters/%', 'admin/settings/filters/%', 'Configure', 't', '', 128, '', '', '', 1, 'modules/filter/filter.admin.inc'),
('admin/settings/actions/delete/%', 'a:1:{i:4;s:12:"actions_load";}', '', 'user_access', 'a:1:{i:0;s:18:"administer actions";}', 'drupal_get_form', 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}', 30, 5, '', 'admin/settings/actions/delete/%', 'Delete action', 't', '', 4, '', 'Delete an action.', '', 0, ''),
('admin/build/menu-customize/%/delete', 'a:1:{i:3;s:9:"menu_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'menu_delete_menu_page', 'a:1:{i:0;i:3;}', 29, 5, '', 'admin/build/menu-customize/%/delete', 'Delete menu', 't', '', 4, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/build/menu-customize/%/edit', 'a:1:{i:3;s:9:"menu_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}', 29, 5, 'admin/build/menu-customize/%', 'admin/build/menu-customize/%', 'Edit menu', 't', '', 128, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/build/block/list/garland', '', '', '_block_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:27:"themes/garland/garland.info";s:4:"name";s:7:"garland";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"1";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:6:"engine";s:11:"phptemplate";}}', 'block_admin_display', 'a:1:{i:0;s:7:"garland";}', 31, 5, 'admin/build/block/list', 'admin/build/block', 'Garland', 't', '', 136, '', '', '', -10, 'modules/block/block.admin.inc'),
('admin/build/block/list/marvin', '', '', '_block_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:35:"themes/chameleon/marvin/marvin.info";s:4:"name";s:6:"marvin";s:4:"type";s:5:"theme";s:5:"owner";s:0:"";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:10:"base_theme";s:9:"chameleon";}}', 'block_admin_display', 'a:1:{i:0;s:6:"marvin";}', 31, 5, 'admin/build/block/list', 'admin/build/block', 'Marvin', 't', '', 128, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/build/block/list/minnelli', '', '', '_block_themes_access', 'a:1:{i:0;O:8:"stdClass":13:{s:8:"filename";s:37:"themes/garland/minnelli/minnelli.info";s:4:"name";s:8:"minnelli";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:6:"engine";s:11:"phptemplate";s:10:"base_theme";s:7:"garland";}}', 'block_admin_display', 'a:1:{i:0;s:8:"minnelli";}', 31, 5, 'admin/build/block/list', 'admin/build/block', 'Minnelli', 't', '', 128, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/build/block/list/pushbutton', '', '', '_block_themes_access', 'a:1:{i:0;O:8:"stdClass":12:{s:8:"filename";s:33:"themes/pushbutton/pushbutton.info";s:4:"name";s:10:"pushbutton";s:4:"type";s:5:"theme";s:5:"owner";s:45:"themes/engines/phptemplate/phptemplate.engine";s:6:"status";s:1:"0";s:8:"throttle";s:1:"0";s:9:"bootstrap";s:1:"0";s:14:"schema_version";s:2:"-1";s:6:"weight";s:1:"0";s:4:"info";a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:6:"engine";s:11:"phptemplate";}}', 'block_admin_display', 'a:1:{i:0;s:10:"pushbutton";}', 31, 5, 'admin/build/block/list', 'admin/build/block', 'Pushbutton', 't', '', 128, '', '', '', 0, 'modules/block/block.admin.inc'),
('admin/settings/filters/%/order', 'a:1:{i:3;s:18:"filter_format_load";}', '', 'user_access', 'a:1:{i:0;s:18:"administer filters";}', 'filter_admin_order_page', 'a:1:{i:0;i:3;}', 29, 5, 'admin/settings/filters/%', 'admin/settings/filters/%', 'Rearrange', 't', '', 128, '', '', '', 2, 'modules/filter/filter.admin.inc'),
('user/reset/%/%/%', 'a:3:{i:2;N;i:3;N;i:4;N;}', '', '1', 'a:0:{}', 'drupal_get_form', 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}', 24, 5, '', 'user/reset/%/%/%', 'Reset password', 't', '', 4, '', '', '', 0, 'modules/user/user.pages.inc'),
('admin/content/taxonomy/add/vocabulary', '', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'drupal_get_form', 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}', 31, 5, 'admin/content/taxonomy', 'admin/content/taxonomy', 'Add vocabulary', 't', '', 128, '', '', '', 0, 'modules/taxonomy/taxonomy.admin.inc'),
('node/%/revisions/%/view', 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', '', '_node_revision_access', 'a:1:{i:0;i:1;}', 'node_show', 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}', 21, 5, '', 'node/%/revisions/%/view', 'Revisions', 't', '', 4, '', '', '', 0, ''),
('node/%/revisions/%/delete', 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', '', '_node_revision_access', 'a:2:{i:0;i:1;i:1;s:6:"delete";}', 'drupal_get_form', 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}', 21, 5, '', 'node/%/revisions/%/delete', 'Delete earlier revision', 't', '', 4, '', '', '', 0, 'modules/node/node.pages.inc'),
('node/%/revisions/%/revert', 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}', '', '_node_revision_access', 'a:2:{i:0;i:1;i:1;s:6:"update";}', 'drupal_get_form', 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}', 21, 5, '', 'node/%/revisions/%/revert', 'Revert to earlier revision', 't', '', 4, '', '', '', 0, 'modules/node/node.pages.inc'),
('admin/build/menu/item/%/delete', 'a:1:{i:4;s:14:"menu_link_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'menu_item_delete_page', 'a:1:{i:0;i:4;}', 61, 6, '', 'admin/build/menu/item/%/delete', 'Delete menu item', 't', '', 4, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/build/menu/item/%/edit', 'a:1:{i:4;s:14:"menu_link_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}', 61, 6, '', 'admin/build/menu/item/%/edit', 'Edit menu item', 't', '', 4, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/content/taxonomy/edit/vocabulary/%', 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'taxonomy_admin_vocabulary_edit', 'a:1:{i:0;i:5;}', 62, 6, '', 'admin/content/taxonomy/edit/vocabulary/%', 'Edit vocabulary', 't', '', 4, '', '', '', 0, 'modules/taxonomy/taxonomy.admin.inc'),
('admin/build/menu/item/%/reset', 'a:1:{i:4;s:14:"menu_link_load";}', '', 'user_access', 'a:1:{i:0;s:15:"administer menu";}', 'drupal_get_form', 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}', 61, 6, '', 'admin/build/menu/item/%/reset', 'Reset menu item', 't', '', 4, '', '', '', 0, 'modules/menu/menu.admin.inc'),
('admin/content/taxonomy/%/add/term', 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}', '', 'user_access', 'a:1:{i:0;s:19:"administer taxonomy";}', 'taxonomy_add_term_page', 'a:1:{i:0;i:3;}', 59, 6, 'admin/content/taxonomy/%', 'admin/content/taxonomy/%', 'Add term', 't', '', 128, '', '', '', 0, 'modules/taxonomy/taxonomy.admin.inc');

-- --------------------------------------------------------

--
-- Table structure for table `node`
--

DROP TABLE IF EXISTS `node`;
CREATE TABLE IF NOT EXISTS `node` (
`nid` int(10) unsigned NOT NULL auto_increment,
`vid` int(10) unsigned NOT NULL default '0',
`type` varchar(32) NOT NULL default '',
`language` varchar(12) NOT NULL default '',
`title` varchar(255) NOT NULL default '',
`uid` int(11) NOT NULL default '0',
`status` int(11) NOT NULL default '1',
`created` int(11) NOT NULL default '0',
`changed` int(11) NOT NULL default '0',
`comment` int(11) NOT NULL default '0',
`promote` int(11) NOT NULL default '0',
`moderate` int(11) NOT NULL default '0',
`sticky` int(11) NOT NULL default '0',
`tnid` int(10) unsigned NOT NULL default '0',
`translate` int(11) NOT NULL default '0',
PRIMARY KEY (`nid`),
UNIQUE KEY `vid` (`vid`),
KEY `node_changed` (`changed`),
KEY `node_created` (`created`),
KEY `node_moderate` (`moderate`),
KEY `node_promote_status` (`promote`,`status`),
KEY `node_status_type` (`status`,`type`,`nid`),
KEY `node_title_type` (`title`,`type`(4)),
KEY `node_type` (`type`(4)),
KEY `uid` (`uid`),
KEY `tnid` (`tnid`),
KEY `translate` (`translate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `node`
--


-- --------------------------------------------------------

--
-- Table structure for table `node_access`
--

DROP TABLE IF EXISTS `node_access`;
CREATE TABLE IF NOT EXISTS `node_access` (
`nid` int(10) unsigned NOT NULL default '0',
`gid` int(10) unsigned NOT NULL default '0',
`realm` varchar(255) NOT NULL default '',
`grant_view` tinyint(3) unsigned NOT NULL default '0',
`grant_update` tinyint(3) unsigned NOT NULL default '0',
`grant_delete` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`nid`,`gid`,`realm`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `node_access`
--

INSERT INTO `node_access` (`nid`, `gid`, `realm`, `grant_view`, `grant_update`, `grant_delete`) VALUES
(0, 0, 'all', 1, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `node_comment_statistics`
--

DROP TABLE IF EXISTS `node_comment_statistics`;
CREATE TABLE IF NOT EXISTS `node_comment_statistics` (
`nid` int(10) unsigned NOT NULL default '0',
`last_comment_timestamp` int(11) NOT NULL default '0',
`last_comment_name` varchar(60) default NULL,
`last_comment_uid` int(11) NOT NULL default '0',
`comment_count` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`nid`),
KEY `node_comment_timestamp` (`last_comment_timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `node_comment_statistics`
--


-- --------------------------------------------------------

--
-- Table structure for table `node_counter`
--

DROP TABLE IF EXISTS `node_counter`;
CREATE TABLE IF NOT EXISTS `node_counter` (
`nid` int(11) NOT NULL default '0',
`totalcount` bigint(20) unsigned NOT NULL default '0',
`daycount` mediumint(8) unsigned NOT NULL default '0',
`timestamp` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`nid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `node_counter`
--


-- --------------------------------------------------------

--
-- Table structure for table `node_revisions`
--

DROP TABLE IF EXISTS `node_revisions`;
CREATE TABLE IF NOT EXISTS `node_revisions` (
`nid` int(10) unsigned NOT NULL default '0',
`vid` int(10) unsigned NOT NULL auto_increment,
`uid` int(11) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`body` longtext NOT NULL,
`teaser` longtext NOT NULL,
`log` longtext NOT NULL,
`timestamp` int(11) NOT NULL default '0',
`format` int(11) NOT NULL default '0',
PRIMARY KEY (`vid`),
KEY `nid` (`nid`),
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `node_revisions`
--


-- --------------------------------------------------------

--
-- Table structure for table `node_type`
--

DROP TABLE IF EXISTS `node_type`;
CREATE TABLE IF NOT EXISTS `node_type` (
`type` varchar(32) NOT NULL,
`name` varchar(255) NOT NULL default '',
`module` varchar(255) NOT NULL,
`description` mediumtext NOT NULL,
`help` mediumtext NOT NULL,
`has_title` tinyint(3) unsigned NOT NULL,
`title_label` varchar(255) NOT NULL default '',
`has_body` tinyint(3) unsigned NOT NULL,
`body_label` varchar(255) NOT NULL default '',
`min_word_count` smallint(5) unsigned NOT NULL,
`custom` tinyint(4) NOT NULL default '0',
`modified` tinyint(4) NOT NULL default '0',
`locked` tinyint(4) NOT NULL default '0',
`orig_type` varchar(255) NOT NULL default '',
PRIMARY KEY (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `node_type`
--

INSERT INTO `node_type` (`type`, `name`, `module`, `description`, `help`, `has_title`, `title_label`, `has_body`, `body_label`, `min_word_count`, `custom`, `modified`, `locked`, `orig_type`) VALUES
('page', 'Page', 'node', 'A page, similar in form to a story, is a simple method for creating and displaying information that rarely changes, such as an "About us" section of a website. By default, a page entry does not allow visitor comments and is not featured on the site''s initial home page.', '', 1, 'Title', 1, 'Body', 0, 1, 1, 0, 'page'),
('story', 'Story', 'node', 'A story, similar in form to a page, is ideal for creating and displaying content that informs or engages website visitors. Press releases, site announcements, and informal blog-like entries may all be created with a story entry. By default, a story entry is automatically featured on the site''s initial home page, and provides the ability to post comments.', '', 1, 'Title', 1, 'Body', 0, 1, 1, 0, 'story');

-- --------------------------------------------------------

--
-- Table structure for table `permission`
--

DROP TABLE IF EXISTS `permission`;
CREATE TABLE IF NOT EXISTS `permission` (
`pid` int(11) NOT NULL auto_increment,
`rid` int(10) unsigned NOT NULL default '0',
`perm` longtext,
`tid` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`pid`),
KEY `rid` (`rid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `permission`
--

INSERT INTO `permission` (`pid`, `rid`, `perm`, `tid`) VALUES
(1, 1, 'access content', 0),
(2, 2, 'access comments, access content, post comments, post comments without approval', 0);

-- --------------------------------------------------------

--
-- Table structure for table `role`
--

DROP TABLE IF EXISTS `role`;
CREATE TABLE IF NOT EXISTS `role` (
`rid` int(10) unsigned NOT NULL auto_increment,
`name` varchar(64) NOT NULL default '',
PRIMARY KEY (`rid`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `role`
--

INSERT INTO `role` (`rid`, `name`) VALUES
(1, 'anonymous user'),
(2, 'authenticated user');

-- --------------------------------------------------------

--
-- Table structure for table `semaphore`
--

DROP TABLE IF EXISTS `semaphore`;
CREATE TABLE IF NOT EXISTS `semaphore` (
`name` varchar(255) NOT NULL default '',
`value` varchar(255) NOT NULL default '',
`expire` double NOT NULL,
PRIMARY KEY (`name`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `semaphore`
--


-- --------------------------------------------------------

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
CREATE TABLE IF NOT EXISTS `sessions` (
`uid` int(10) unsigned NOT NULL,
`sid` varchar(64) NOT NULL default '',
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0',
`cache` int(11) NOT NULL default '0',
`session` longtext,
PRIMARY KEY (`sid`),
KEY `timestamp` (`timestamp`),
KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `sessions`
--


-- --------------------------------------------------------

--
-- Table structure for table `system`
--

DROP TABLE IF EXISTS `system`;
CREATE TABLE IF NOT EXISTS `system` (
`filename` varchar(255) NOT NULL default '',
`name` varchar(255) NOT NULL default '',
`type` varchar(255) NOT NULL default '',
`owner` varchar(255) NOT NULL default '',
`status` int(11) NOT NULL default '0',
`throttle` tinyint(4) NOT NULL default '0',
`bootstrap` int(11) NOT NULL default '0',
`schema_version` smallint(6) NOT NULL default '-1',
`weight` int(11) NOT NULL default '0',
`info` text,
PRIMARY KEY (`filename`),
KEY `modules` (`type`(12),`status`,`weight`,`filename`),
KEY `bootstrap` (`type`(12),`status`,`bootstrap`,`weight`,`filename`),
KEY `type_name` (`type`(12),`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `system`
--

INSERT INTO `system` (`filename`, `name`, `type`, `owner`, `status`, `throttle`, `bootstrap`, `schema_version`, `weight`, `info`) VALUES
('themes/bluemarine/bluemarine.info', 'bluemarine', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 0, 0, 0, -1, 0, 'a:13:{s:4:"name";s:10:"Bluemarine";s:11:"description";s:66:"Table-based multi-column theme with a marine and ash color scheme.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/bluemarine/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/bluemarine/script.js";}s:10:"screenshot";s:32:"themes/bluemarine/screenshot.png";s:3:"php";s:5:"4.3.5";}'),
('themes/pushbutton/pushbutton.info', 'pushbutton', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 0, 0, 0, -1, 0, 'a:13:{s:4:"name";s:10:"Pushbutton";s:11:"description";s:52:"Tabled, multi-column theme in blue and orange tones.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:27:"themes/pushbutton/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:27:"themes/pushbutton/script.js";}s:10:"screenshot";s:32:"themes/pushbutton/screenshot.png";s:3:"php";s:5:"4.3.5";}'),
('themes/garland/minnelli/minnelli.info', 'minnelli', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 0, 0, 0, -1, 0, 'a:14:{s:4:"name";s:8:"Minnelli";s:11:"description";s:56:"Tableless, recolorable, multi-column, fixed width theme.";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:10:"base theme";s:7:"garland";s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:12:"minnelli.css";s:36:"themes/garland/minnelli/minnelli.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/garland/minnelli/script.js";}s:10:"screenshot";s:38:"themes/garland/minnelli/screenshot.png";s:3:"php";s:5:"4.3.5";s:6:"engine";s:11:"phptemplate";}'),
('themes/garland/garland.info', 'garland', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0, -1, 0, 'a:13:{s:4:"name";s:7:"Garland";s:11:"description";s:66:"Tableless, recolorable, multi-column, fluid width theme (default).";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:11:"stylesheets";a:2:{s:3:"all";a:1:{s:9:"style.css";s:24:"themes/garland/style.css";}s:5:"print";a:1:{s:9:"print.css";s:24:"themes/garland/print.css";}}s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"regions";a:5:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";s:7:"content";s:7:"Content";s:6:"header";s:6:"Header";s:6:"footer";s:6:"Footer";}s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:7:"scripts";a:1:{s:9:"script.js";s:24:"themes/garland/script.js";}s:10:"screenshot";s:29:"themes/garland/screenshot.png";s:3:"php";s:5:"4.3.5";}'),
('themes/chameleon/marvin/marvin.info', 'marvin', 'theme', '', 0, 0, 0, -1, 0, 'a:13:{s:4:"name";s:6:"Marvin";s:11:"description";s:31:"Boxy tabled theme in all grays.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:10:"base theme";s:9:"chameleon";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:8:"features";a:10:{i:0;s:20:"comment_user_picture";i:1;s:7:"favicon";i:2;s:7:"mission";i:3;s:4:"logo";i:4;s:4:"name";i:5;s:17:"node_user_picture";i:6;s:6:"search";i:7;s:6:"slogan";i:8;s:13:"primary_links";i:9;s:15:"secondary_links";}s:11:"stylesheets";a:1:{s:3:"all";a:1:{s:9:"style.css";s:33:"themes/chameleon/marvin/style.css";}}s:7:"scripts";a:1:{s:9:"script.js";s:33:"themes/chameleon/marvin/script.js";}s:10:"screenshot";s:38:"themes/chameleon/marvin/screenshot.png";s:3:"php";s:5:"4.3.5";}'),
('themes/chameleon/chameleon.info', 'chameleon', 'theme', 'themes/chameleon/chameleon.theme', 0, 0, 0, -1, 0, 'a:12:{s:4:"name";s:9:"Chameleon";s:11:"description";s:42:"Minimalist tabled theme with light colors.";s:7:"regions";a:2:{s:4:"left";s:12:"Left sidebar";s:5:"right";s:13:"Right sidebar";}s:8:"features";a:4:{i:0;s:4:"logo";i:1;s:7:"favicon";i:2;s:4:"name";i:3;s:6:"slogan";}s:11:"stylesheets";a:1:{s:3:"all";a:2:{s:9:"style.css";s:26:"themes/chameleon/style.css";s:10:"common.css";s:27:"themes/chameleon/common.css";}}s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:7:"scripts";a:1:{s:9:"script.js";s:26:"themes/chameleon/script.js";}s:10:"screenshot";s:31:"themes/chameleon/screenshot.png";s:3:"php";s:5:"4.3.5";}'),
('modules/system/system.module', 'system', 'module', '', 1, 0, 0, 6055, 0, 'a:10:{s:4:"name";s:6:"System";s:11:"description";s:54:"Handles general site configuration for administrators.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/aggregator/aggregator.module', 'aggregator', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:10:"Aggregator";s:11:"description";s:57:"Aggregates syndicated content (RSS, RDF, and Atom feeds).";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/block/block.module', 'block', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:5:"Block";s:11:"description";s:62:"Controls the boxes that are displayed around the main content.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/blog/blog.module', 'blog', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:4:"Blog";s:11:"description";s:69:"Enables keeping easily and regularly updated user web pages or blogs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/blogapi/blogapi.module', 'blogapi', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:8:"Blog API";s:11:"description";s:79:"Allows users to post content using applications that support XML-RPC blog APIs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/book/book.module', 'book', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:4:"Book";s:11:"description";s:63:"Allows users to structure site pages in a hierarchy or outline.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/color/color.module', 'color', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:5:"Color";s:11:"description";s:61:"Allows the user to change the color scheme of certain themes.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/comment/comment.module', 'comment', 'module', '', 1, 0, 0, 6003, 0, 'a:10:{s:4:"name";s:7:"Comment";s:11:"description";s:57:"Allows users to comment on and discuss published content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/contact/contact.module', 'contact', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:7:"Contact";s:11:"description";s:61:"Enables the use of both personal and site-wide contact forms.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/dblog/dblog.module', 'dblog', 'module', '', 1, 0, 0, 6000, 0, 'a:10:{s:4:"name";s:16:"Database logging";s:11:"description";s:47:"Logs and records system events to the database.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/filter/filter.module', 'filter', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:6:"Filter";s:11:"description";s:60:"Handles the filtering of content in preparation for display.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/forum/forum.module', 'forum', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:5:"Forum";s:11:"description";s:50:"Enables threaded discussions about general topics.";s:12:"dependencies";a:2:{i:0;s:8:"taxonomy";i:1;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/help/help.module', 'help', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:4:"Help";s:11:"description";s:35:"Manages the display of online help.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/locale/locale.module', 'locale', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:6:"Locale";s:11:"description";s:119:"Adds language handling functionality and enables the translation of the user interface to languages other than English.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/menu/menu.module', 'menu', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:4:"Menu";s:11:"description";s:60:"Allows administrators to customize the site navigation menu.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/node/node.module', 'node', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:4:"Node";s:11:"description";s:66:"Allows content to be submitted to the site and displayed on pages.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/openid/openid.module', 'openid', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:6:"OpenID";s:11:"description";s:48:"Allows users to log into your site using OpenID.";s:7:"version";s:4:"6.16";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/path/path.module', 'path', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:4:"Path";s:11:"description";s:28:"Allows users to rename URLs.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/php/php.module', 'php', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:10:"PHP filter";s:11:"description";s:50:"Allows embedded PHP code/snippets to be evaluated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/ping/ping.module', 'ping', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:4:"Ping";s:11:"description";s:51:"Alerts other sites when your site has been updated.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/poll/poll.module', 'poll', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:4:"Poll";s:11:"description";s:95:"Allows your site to capture votes on different topics in the form of multiple choice questions.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/profile/profile.module', 'profile', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:7:"Profile";s:11:"description";s:36:"Supports configurable user profiles.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/search/search.module', 'search', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:6:"Search";s:11:"description";s:36:"Enables site-wide keyword searching.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/statistics/statistics.module', 'statistics', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:10:"Statistics";s:11:"description";s:37:"Logs access statistics for your site.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/syslog/syslog.module', 'syslog', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:6:"Syslog";s:11:"description";s:41:"Logs and records system events to syslog.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/taxonomy/taxonomy.module', 'taxonomy', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:8:"Taxonomy";s:11:"description";s:38:"Enables the categorization of content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/throttle/throttle.module', 'throttle', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:8:"Throttle";s:11:"description";s:66:"Handles the auto-throttling mechanism, to control site congestion.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/tracker/tracker.module', 'tracker', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:7:"Tracker";s:11:"description";s:43:"Enables tracking of recent posts for users.";s:12:"dependencies";a:1:{i:0;s:7:"comment";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/translation/translation.module', 'translation', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:19:"Content translation";s:11:"description";s:57:"Allows content to be translated into different languages.";s:12:"dependencies";a:1:{i:0;s:6:"locale";}s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/trigger/trigger.module', 'trigger', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:7:"Trigger";s:11:"description";s:90:"Enables actions to be fired on certain system events, such as when new content is created.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/update/update.module', 'update', 'module', '', 1, 0, 0, 6000, 0, 'a:10:{s:4:"name";s:13:"Update status";s:11:"description";s:88:"Checks the status of available updates for Drupal and your installed modules and themes.";s:7:"version";s:4:"6.16";s:7:"package";s:15:"Core - optional";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/upload/upload.module', 'upload', 'module', '', 0, 0, 0, -1, 0, 'a:10:{s:4:"name";s:6:"Upload";s:11:"description";s:51:"Allows users to upload and attach files to content.";s:7:"package";s:15:"Core - optional";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}'),
('modules/user/user.module', 'user', 'module', '', 1, 0, 0, 0, 0, 'a:10:{s:4:"name";s:4:"User";s:11:"description";s:47:"Manages the user registration and login system.";s:7:"package";s:15:"Core - required";s:7:"version";s:4:"6.16";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1267662008";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}');

-- --------------------------------------------------------

--
-- Table structure for table `term_data`
--

DROP TABLE IF EXISTS `term_data`;
CREATE TABLE IF NOT EXISTS `term_data` (
`tid` int(10) unsigned NOT NULL auto_increment,
`vid` int(10) unsigned NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`description` longtext,
`weight` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`tid`),
KEY `taxonomy_tree` (`vid`,`weight`,`name`),
KEY `vid_name` (`vid`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `term_data`
--


-- --------------------------------------------------------

--
-- Table structure for table `term_hierarchy`
--

DROP TABLE IF EXISTS `term_hierarchy`;
CREATE TABLE IF NOT EXISTS `term_hierarchy` (
`tid` int(10) unsigned NOT NULL default '0',
`parent` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`tid`,`parent`),
KEY `parent` (`parent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `term_hierarchy`
--


-- --------------------------------------------------------

--
-- Table structure for table `term_node`
--

DROP TABLE IF EXISTS `term_node`;
CREATE TABLE IF NOT EXISTS `term_node` (
`nid` int(10) unsigned NOT NULL default '0',
`vid` int(10) unsigned NOT NULL default '0',
`tid` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`tid`,`vid`),
KEY `vid` (`vid`),
KEY `nid` (`nid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `term_node`
--


-- --------------------------------------------------------

--
-- Table structure for table `term_relation`
--

DROP TABLE IF EXISTS `term_relation`;
CREATE TABLE IF NOT EXISTS `term_relation` (
`trid` int(11) NOT NULL auto_increment,
`tid1` int(10) unsigned NOT NULL default '0',
`tid2` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`trid`),
UNIQUE KEY `tid1_tid2` (`tid1`,`tid2`),
KEY `tid2` (`tid2`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `term_relation`
--


-- --------------------------------------------------------

--
-- Table structure for table `term_synonym`
--

DROP TABLE IF EXISTS `term_synonym`;
CREATE TABLE IF NOT EXISTS `term_synonym` (
`tsid` int(11) NOT NULL auto_increment,
`tid` int(10) unsigned NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
PRIMARY KEY (`tsid`),
KEY `tid` (`tid`),
KEY `name_tid` (`name`,`tid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `term_synonym`
--


-- --------------------------------------------------------

--
-- Table structure for table `url_alias`
--

DROP TABLE IF EXISTS `url_alias`;
CREATE TABLE IF NOT EXISTS `url_alias` (
`pid` int(10) unsigned NOT NULL auto_increment,
`src` varchar(128) NOT NULL default '',
`dst` varchar(128) NOT NULL default '',
`language` varchar(12) NOT NULL default '',
PRIMARY KEY (`pid`),
UNIQUE KEY `dst_language_pid` (`dst`,`language`,`pid`),
KEY `src_language_pid` (`src`,`language`,`pid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `url_alias`
--


-- --------------------------------------------------------

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
`uid` int(10) unsigned NOT NULL auto_increment,
`name` varchar(60) NOT NULL default '',
`pass` varchar(32) NOT NULL default '',
`mail` varchar(64) default '',
`mode` tinyint(4) NOT NULL default '0',
`sort` tinyint(4) default '0',
`threshold` tinyint(4) default '0',
`theme` varchar(255) NOT NULL default '',
`signature` varchar(255) NOT NULL default '',
`signature_format` smallint(6) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`access` int(11) NOT NULL default '0',
`login` int(11) NOT NULL default '0',
`status` tinyint(4) NOT NULL default '0',
`timezone` varchar(8) default NULL,
`language` varchar(12) NOT NULL default '',
`picture` varchar(255) NOT NULL default '',
`init` varchar(64) default '',
`data` longtext,
PRIMARY KEY (`uid`),
UNIQUE KEY `name` (`name`),
KEY `access` (`access`),
KEY `created` (`created`),
KEY `mail` (`mail`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`uid`, `name`, `pass`, `mail`, `mode`, `sort`, `threshold`, `theme`, `signature`, `signature_format`, `created`, `access`, `login`, `status`, `timezone`, `language`, `picture`, `init`, `data`) VALUES
(3, '', '', '', 0, 0, 0, '', '', 0, 0, 0, 0, 0, NULL, '', '', '', NULL),
(1, 'admin', '0192023a7bbd73250516f069df18b500', 'qphan@godalat.com', 0, 0, 0, '', '', 0, 1278193785, 1278193785, 1278193785, 1, NULL, '', '', 'qphan@godalat.com', 'a:0:{}');

-- --------------------------------------------------------

--
-- Table structure for table `users_roles`
--

DROP TABLE IF EXISTS `users_roles`;
CREATE TABLE IF NOT EXISTS `users_roles` (
`uid` int(10) unsigned NOT NULL default '0',
`rid` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`uid`,`rid`),
KEY `rid` (`rid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `users_roles`
--


-- --------------------------------------------------------

--
-- Table structure for table `variable`
--

DROP TABLE IF EXISTS `variable`;
CREATE TABLE IF NOT EXISTS `variable` (
`name` varchar(128) NOT NULL default '',
`value` longtext NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `variable`
--

INSERT INTO `variable` (`name`, `value`) VALUES
('theme_default', 's:7:"garland";'),
('filter_html_1', 'i:1;'),
('node_options_forum', 'a:1:{i:0;s:6:"status";}'),
('drupal_private_key', 's:64:"8004235498c3510bf838dce09e1e8a7f7c5629bf9e940e25e74964636c184110";'),
('menu_masks', 'a:17:{i:0;i:62;i:1;i:61;i:2;i:59;i:3;i:31;i:4;i:30;i:5;i:29;i:6;i:24;i:7;i:21;i:8;i:15;i:9;i:14;i:10;i:11;i:11;i:7;i:12;i:6;i:13;i:5;i:14;i:3;i:15;i:2;i:16;i:1;}'),
('install_task', 's:4:"done";'),
('menu_expanded', 'a:0:{}'),
('date_default_timezone', 's:1:"0";'),
('user_email_verification', 'b:1;'),
('clean_url', 's:1:"0";'),
('install_time', 'i:1278193784;'),
('node_options_page', 'a:1:{i:0;s:6:"status";}'),
('comment_page', 'i:0;'),
('theme_settings', 'a:1:{s:21:"toggle_node_info_page";b:0;}'),
('drupal_http_request_fails', 'b:0;'),
('css_js_query_string', 's:20:"W0000000000000000000";'),
('install_profile', 's:7:"default";'),
('update_last_check', 'i:1278193784;'),
('cron_last', 'i:1278193784;');

-- --------------------------------------------------------

--
-- Table structure for table `vocabulary`
--

DROP TABLE IF EXISTS `vocabulary`;
CREATE TABLE IF NOT EXISTS `vocabulary` (
`vid` int(10) unsigned NOT NULL auto_increment,
`name` varchar(255) NOT NULL default '',
`description` longtext,
`help` varchar(255) NOT NULL default '',
`relations` tinyint(3) unsigned NOT NULL default '0',
`hierarchy` tinyint(3) unsigned NOT NULL default '0',
`multiple` tinyint(3) unsigned NOT NULL default '0',
`required` tinyint(3) unsigned NOT NULL default '0',
`tags` tinyint(3) unsigned NOT NULL default '0',
`module` varchar(255) NOT NULL default '',
`weight` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`vid`),
KEY `list` (`weight`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `vocabulary`
--


-- --------------------------------------------------------

--
-- Table structure for table `vocabulary_node_types`
--

DROP TABLE IF EXISTS `vocabulary_node_types`;
CREATE TABLE IF NOT EXISTS `vocabulary_node_types` (
`vid` int(10) unsigned NOT NULL default '0',
`type` varchar(32) NOT NULL default '',
PRIMARY KEY (`type`,`vid`),
KEY `vid` (`vid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `vocabulary_node_types`
--


-- --------------------------------------------------------

--
-- Table structure for table `watchdog`
--

DROP TABLE IF EXISTS `watchdog`;
CREATE TABLE IF NOT EXISTS `watchdog` (
`wid` int(11) NOT NULL auto_increment,
`uid` int(11) NOT NULL default '0',
`type` varchar(16) NOT NULL default '',
`message` longtext NOT NULL,
`variables` longtext NOT NULL,
`severity` tinyint(3) unsigned NOT NULL default '0',
`link` varchar(255) NOT NULL default '',
`location` text NOT NULL,
`referer` text,
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0',
PRIMARY KEY (`wid`),
KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;

--
-- Dumping data for table `watchdog`
--

INSERT INTO `watchdog` (`wid`, `uid`, `type`, `message`, `variables`, `severity`, `link`, `location`, `referer`, `hostname`, `timestamp`) VALUES
(1, 1, 'user', 'Session opened for %name.', 'a:1:{s:5:"%name";s:5:"admin";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(2, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:17:"Unpublish comment";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(3, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:12:"Publish post";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(4, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:14:"Unpublish post";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(5, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:16:"Make post sticky";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(6, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:18:"Make post unsticky";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(7, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:26:"Promote post to front page";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(8, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:27:"Remove post from front page";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(9, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:9:"Save post";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(10, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:18:"Block current user";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(11, 1, 'actions', 'Action ''%action'' added.', 'a:1:{s:7:"%action";s:30:"Ban IP address of current user";}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/install.php?locale=en&profile=default', '127.0.0.1', 1278193785),
(12, 1, 'update', 'Attempted to fetch information about all available new releases and updates.', 'a:0:{}', 5, 'view', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/?q=admin', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/', '127.0.0.1', 1278193785),
(13, 1, 'cron', 'Cron run completed.', 'a:0:{}', 5, '', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/?q=admin/reports/status/run-cron', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/?q=admin/reports/status', '127.0.0.1', 1278193785),
(14, 1, 'update', 'Attempted to fetch information about all available new releases and updates.', 'a:0:{}', 5, 'view', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/?q=admin/reports/updates/check', 'http://localhost/Ilias_Moisidis/Fantastico/2/Scripts/2010-04-24/Installations/Drupal/?q=admin/reports/updates', '127.0.0.1', 1278193785);

No comments:

Post a Comment