diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/Cache.php b/core/modules/migrate_drupal/src/Tests/Table/d6/Cache.php
new file mode 100644
index 0000000..ad677c0
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/Cache.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\Cache.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache table.
+ */
+class Cache extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheBlock.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheBlock.php
new file mode 100644
index 0000000..c031df2
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheBlock.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheBlock.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_block table.
+ */
+class CacheBlock extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_block", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_block")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheBootstrap.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheBootstrap.php
new file mode 100644
index 0000000..d7aefef
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheBootstrap.php
@@ -0,0 +1,90 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheBootstrap.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_bootstrap table.
+ */
+class CacheBootstrap extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_bootstrap", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'numeric',
+          'not null' => TRUE,
+          'precision' => '14',
+          'scale' => '3',
+          'default' => '0.000',
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+        'tags' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'checksum_invalidations' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'checksum_deletions' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_bootstrap")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'serialized',
+      'tags',
+      'checksum_invalidations',
+      'checksum_deletions',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheConfig.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheConfig.php
new file mode 100644
index 0000000..d65161c
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheConfig.php
@@ -0,0 +1,90 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheConfig.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_config table.
+ */
+class CacheConfig extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_config", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'numeric',
+          'not null' => TRUE,
+          'precision' => '14',
+          'scale' => '3',
+          'default' => '0.000',
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+        'tags' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'checksum_invalidations' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'checksum_deletions' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_config")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'serialized',
+      'tags',
+      'checksum_invalidations',
+      'checksum_deletions',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheContent.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheContent.php
new file mode 100644
index 0000000..e2460e6
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheContent.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheContent.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_content table.
+ */
+class CacheContent extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_content", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_content")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheDiscovery.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheDiscovery.php
new file mode 100644
index 0000000..2363c2a
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheDiscovery.php
@@ -0,0 +1,90 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheDiscovery.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_discovery table.
+ */
+class CacheDiscovery extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_discovery", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'numeric',
+          'not null' => TRUE,
+          'precision' => '14',
+          'scale' => '3',
+          'default' => '0.000',
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+        'tags' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'checksum_invalidations' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'checksum_deletions' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_discovery")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'serialized',
+      'tags',
+      'checksum_invalidations',
+      'checksum_deletions',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheFilter.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheFilter.php
new file mode 100644
index 0000000..b4dcb2f
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheFilter.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheFilter.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_filter table.
+ */
+class CacheFilter extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_filter", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_filter")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheForm.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheForm.php
new file mode 100644
index 0000000..001c308
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheForm.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheForm.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_form table.
+ */
+class CacheForm extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_form", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_form")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheMenu.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheMenu.php
new file mode 100644
index 0000000..9c59033
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheMenu.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheMenu.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_menu table.
+ */
+class CacheMenu extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_menu", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_menu")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CachePage.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CachePage.php
new file mode 100644
index 0000000..63ac352
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CachePage.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CachePage.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_page table.
+ */
+class CachePage extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_page", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_page")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/CacheUpdate.php b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheUpdate.php
new file mode 100644
index 0000000..b807e65
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/CacheUpdate.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\CacheUpdate.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cache_update table.
+ */
+class CacheUpdate extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cache_update", array(
+      'primary key' => array(
+        'cid',
+      ),
+      'fields' => array(
+        'cid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'data' => array(
+          'type' => 'blob',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'expire' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'created' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'headers' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'serialized' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cache_update")->fields(array(
+      'cid',
+      'data',
+      'expire',
+      'created',
+      'headers',
+      'serialized',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/Cachetags.php b/core/modules/migrate_drupal/src/Tests/Table/d6/Cachetags.php
new file mode 100644
index 0000000..be7b468
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/Cachetags.php
@@ -0,0 +1,56 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\Cachetags.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the cachetags table.
+ */
+class Cachetags extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("cachetags", array(
+      'primary key' => array(
+        'tag',
+      ),
+      'fields' => array(
+        'tag' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'invalidations' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'deletions' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("cachetags")->fields(array(
+      'tag',
+      'invalidations',
+      'deletions',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/MenuRouter.php b/core/modules/migrate_drupal/src/Tests/Table/d6/MenuRouter.php
new file mode 100644
index 0000000..0378c65
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/MenuRouter.php
@@ -0,0 +1,7288 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\MenuRouter.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the menu_router table.
+ */
+class MenuRouter extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("menu_router", array(
+      'primary key' => array(
+        'path',
+      ),
+      'fields' => array(
+        'path' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'load_functions' => array(
+          'type' => 'text',
+          'not null' => TRUE,
+          'length' => 100,
+        ),
+        'to_arg_functions' => array(
+          'type' => 'text',
+          'not null' => TRUE,
+          'length' => 100,
+        ),
+        'access_callback' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'access_arguments' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'page_callback' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'page_arguments' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'fit' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'number_parts' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '6',
+          'default' => '0',
+        ),
+        'tab_parent' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'tab_root' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'title' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'title_callback' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'title_arguments' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'type' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'block_callback' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'description' => array(
+          'type' => 'text',
+          'not null' => TRUE,
+          'length' => 100,
+        ),
+        'position' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'weight' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'file' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+      ),
+    ));
+    $this->database->insert("menu_router")->fields(array(
+      '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(array(
+      'path' => 'admin',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_main_admin_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'admin',
+      'title' => 'Administer',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '9',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_admin_menu_block_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build',
+      'title' => 'Site building',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Control how your site looks and feels.',
+      'position' => 'right',
+      'weight' => '-10',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Blocks',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Configure what block content appears in your site's sidebars and other regions.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:20:"block_add_block_form";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/block',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Add block',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/configure',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:21:"block_admin_configure";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/block/configure',
+      'title' => 'Configure block',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:16:"block_box_delete";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/block/delete',
+      'title' => 'Delete block',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/block',
+      'tab_root' => 'admin/build/block',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/bluemarine',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_block_themes_access',
+      'access_arguments' => '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.29";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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";}}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:1:{i:0;s:10:"bluemarine";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/block/list',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Bluemarine',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/chameleon',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_block_themes_access',
+      'access_arguments' => '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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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";}}}}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:1:{i:0;s:9:"chameleon";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/block/list',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Chameleon',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/garland',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_block_themes_access',
+      'access_arguments' => '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.29";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:"1384980946";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";}}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:1:{i:0;s:7:"garland";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/block/list',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Garland',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/js',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"administer blocks";}',
+      'page_callback' => 'block_admin_display_js',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/block/list/js',
+      'title' => 'JavaScript List Form',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/marvin',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_block_themes_access',
+      'access_arguments' => '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.29";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:"1384980946";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";}}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:1:{i:0;s:6:"marvin";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/block/list',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Marvin',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/minnelli',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_block_themes_access',
+      'access_arguments' => '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.29";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:"1384980946";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";}}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:1:{i:0;s:8:"minnelli";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/block/list',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Minnelli',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/block/list/pushbutton',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_block_themes_access',
+      'access_arguments' => '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.29";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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";}}',
+      'page_callback' => 'block_admin_display',
+      'page_arguments' => 'a:1:{i:0;s:10:"pushbutton";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/block/list',
+      'tab_root' => 'admin/build/block',
+      'title' => 'Pushbutton',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/block/block.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/contact',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+      'page_callback' => 'contact_admin_categories',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/contact',
+      'title' => 'Contact form',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Create a system contact form and set up categories for the form to use.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/contact/contact.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/contact/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:18:"contact_admin_edit";i:1;i:3;}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/contact',
+      'tab_root' => 'admin/build/contact',
+      'title' => 'Add category',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/contact/contact.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/contact/delete/%',
+      'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:20:"contact_admin_delete";i:1;i:4;}',
+      'fit' => '30',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/contact/delete/%',
+      'title' => 'Delete contact',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/contact/contact.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/contact/edit/%',
+      'load_functions' => 'a:1:{i:4;s:12:"contact_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:18:"contact_admin_edit";i:1;i:3;i:2;i:4;}',
+      'fit' => '30',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/contact/edit/%',
+      'title' => 'Edit contact category',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/contact/contact.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/contact/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+      'page_callback' => 'contact_admin_categories',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/contact',
+      'tab_root' => 'admin/build/contact',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/contact/contact.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/contact/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:33:"administer site-wide contact form";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:22:"contact_admin_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/contact',
+      'tab_root' => 'admin/build/contact',
+      'title' => 'Settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'modules/contact/contact.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'menu_overview_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/menu',
+      'title' => 'Menus',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Control your site's navigation menu, primary links and secondary links, as well as rename and reorganize menu items.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu-customize/%',
+      'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
+      'fit' => '14',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/menu-customize/%',
+      'title' => 'Customize menu',
+      'title_callback' => 'menu_overview_title',
+      'title_arguments' => 'a:1:{i:0;i:3;}',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu-customize/%/add',
+      'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:3:"add";i:2;N;i:3;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/menu-customize/%',
+      'tab_root' => 'admin/build/menu-customize/%',
+      'title' => 'Add item',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu-customize/%/delete',
+      'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'menu_delete_menu_page',
+      'page_arguments' => 'a:1:{i:0;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/menu-customize/%/delete',
+      'title' => 'Delete menu',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu-customize/%/edit',
+      'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:14:"menu_edit_menu";i:1;s:4:"edit";i:2;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/menu-customize/%',
+      'tab_root' => 'admin/build/menu-customize/%',
+      'title' => 'Edit menu',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu-customize/%/list',
+      'load_functions' => 'a:1:{i:3;s:9:"menu_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:18:"menu_overview_form";i:1;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/menu-customize/%',
+      'tab_root' => 'admin/build/menu-customize/%',
+      'title' => 'List items',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"menu_edit_menu";i:1;s:3:"add";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/menu',
+      'tab_root' => 'admin/build/menu',
+      'title' => 'Add menu',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu/item/%/delete',
+      'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'menu_item_delete_page',
+      'page_arguments' => 'a:1:{i:0;i:4;}',
+      'fit' => '61',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/menu/item/%/delete',
+      'title' => 'Delete menu item',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu/item/%/edit',
+      'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:4:{i:0;s:14:"menu_edit_item";i:1;s:4:"edit";i:2;i:4;i:3;N;}',
+      'fit' => '61',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/menu/item/%/edit',
+      'title' => 'Edit menu item',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu/item/%/reset',
+      'load_functions' => 'a:1:{i:4;s:14:"menu_link_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:23:"menu_reset_item_confirm";i:1;i:4;}',
+      'fit' => '61',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/menu/item/%/reset',
+      'title' => 'Reset menu item',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'menu_overview_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/menu',
+      'tab_root' => 'admin/build/menu',
+      'title' => 'List menus',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/menu/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:15:"administer menu";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:14:"menu_configure";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/menu',
+      'tab_root' => 'admin/build/menu',
+      'title' => 'Settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '5',
+      'file' => 'modules/menu/menu.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/modules',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/modules',
+      'title' => 'Modules',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Enable or disable add-on modules for your site.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/modules/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/modules',
+      'tab_root' => 'admin/build/modules',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/modules/list/confirm',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:14:"system_modules";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/modules/list/confirm',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/modules/uninstall',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/modules',
+      'tab_root' => 'admin/build/modules',
+      'title' => 'Uninstall',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/modules/uninstall/confirm',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:24:"system_modules_uninstall";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/modules/uninstall/confirm',
+      'title' => 'Uninstall',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Themes',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Change which theme your site uses or allows users to set.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/select',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:18:"system_themes_form";i:1;N;}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/themes',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => 'Select the default theme.',
+      'position' => '',
+      'weight' => '-1',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/build/themes',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Configure',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/bluemarine',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_system_themes_access',
+      'access_arguments' => '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.29";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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";}}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"bluemarine";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Bluemarine',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/chameleon',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_system_themes_access',
+      'access_arguments' => '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.29";s:4:"core";s:3:"6.x";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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";}}}}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:9:"chameleon";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Chameleon',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/garland',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_system_themes_access',
+      'access_arguments' => '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.29";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:"1384980946";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";}}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:7:"garland";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Garland',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/global',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:21:"system_theme_settings";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Global settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-1',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/marvin',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_system_themes_access',
+      'access_arguments' => '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.29";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:"1384980946";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";}}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:6:"marvin";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Marvin',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/minnelli',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_system_themes_access',
+      'access_arguments' => '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.29";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:"1384980946";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";}}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:8:"minnelli";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Minnelli',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/build/themes/settings/pushbutton',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_system_themes_access',
+      'access_arguments' => '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.29";s:4:"core";s:3:"6.x";s:6:"engine";s:11:"phptemplate";s:7:"project";s:6:"drupal";s:9:"datestamp";s:10:"1384980946";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";}}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:21:"system_theme_settings";i:1;s:10:"pushbutton";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/build/themes/settings',
+      'tab_root' => 'admin/build/themes',
+      'title' => 'Pushbutton',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/by-module',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_admin_by_module',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => 'admin',
+      'tab_root' => 'admin',
+      'title' => 'By module',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/by-task',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_main_admin_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => 'admin',
+      'tab_root' => 'admin',
+      'title' => 'By task',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/compact',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_admin_compact_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'admin/compact',
+      'title' => 'Compact mode',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_admin_menu_block_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content',
+      'title' => 'Content management',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Manage your site's content.",
+      'position' => 'left',
+      'weight' => '-10',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'aggregator_admin_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/aggregator',
+      'title' => 'Feed aggregator',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Configure which content your site aggregates from other sites, how often it polls them, and how they're categorized.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/add/category',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:24:"aggregator_form_category";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/aggregator',
+      'tab_root' => 'admin/content/aggregator',
+      'title' => 'Add category',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/add/feed',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:20:"aggregator_form_feed";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/aggregator',
+      'tab_root' => 'admin/content/aggregator',
+      'title' => 'Add feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/edit/category/%',
+      'load_functions' => 'a:1:{i:5;s:24:"aggregator_category_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:5;}',
+      'fit' => '62',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/aggregator/edit/category/%',
+      'title' => 'Edit category',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/edit/feed/%',
+      'load_functions' => 'a:1:{i:5;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:5;}',
+      'fit' => '62',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/aggregator/edit/feed/%',
+      'title' => 'Edit feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'aggregator_admin_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/aggregator',
+      'tab_root' => 'admin/content/aggregator',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/remove/%',
+      'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:28:"aggregator_admin_remove_feed";i:1;i:4;}',
+      'fit' => '30',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/aggregator/remove/%',
+      'title' => 'Remove items',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:25:"aggregator_admin_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/aggregator',
+      'tab_root' => 'admin/content/aggregator',
+      'title' => 'Settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '10',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/aggregator/update/%',
+      'load_functions' => 'a:1:{i:4;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'aggregator_admin_refresh_feed',
+      'page_arguments' => 'a:1:{i:0;i:4;}',
+      'fit' => '30',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/aggregator/update/%',
+      'title' => 'Update items',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/book',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
+      'page_callback' => 'book_admin_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/book',
+      'title' => 'Books',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Manage your site's book outlines.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/book/%',
+      'load_functions' => 'a:1:{i:3;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => '_book_outline_access',
+      'access_arguments' => 'a:1:{i:0;i:3;}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:15:"book_admin_edit";i:1;i:3;}',
+      'fit' => '14',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/book/%',
+      'title' => 'Re-order book pages and change titles',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/book/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer book outlines";}',
+      'page_callback' => 'book_admin_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/book',
+      'tab_root' => 'admin/content/book',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/book/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:19:"book_admin_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/book',
+      'tab_root' => 'admin/content/book',
+      'title' => 'Settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '8',
+      'file' => 'modules/book/book.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/comment',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+      'page_callback' => 'comment_admin',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/comment',
+      'title' => 'Comments',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'List and edit site comments and the comment moderation queue.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/comment/comment.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/comment/approval',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+      'page_callback' => 'comment_admin',
+      'page_arguments' => 'a:1:{i:0;s:8:"approval";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/comment',
+      'tab_root' => 'admin/content/comment',
+      'title' => 'Approval queue',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/comment/comment.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/comment/new',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+      'page_callback' => 'comment_admin',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/comment',
+      'tab_root' => 'admin/content/comment',
+      'title' => 'Published comments',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/comment/comment.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node',
+      'title' => 'Content',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "View, edit, and delete your site's content.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:14:"node_configure";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-settings',
+      'title' => 'Post settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-settings/rebuild',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:30:"node_configure_rebuild_confirm";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-settings/rebuild',
+      'title' => 'Rebuild permissions',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";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";}}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'Article',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";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";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/article/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/article',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/article/display',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/article/display',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"article";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/article/display',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"article";s:4:"name";s:7:"Article";s:6:"module";s:4:"node";s:11:"description";s:34:"An <em>article</em>, content type.";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";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/article',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/article/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"article";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/article',
+      'tab_root' => 'admin/content/node-type/article',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'Company',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/company/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/company',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/company/display',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/company/display',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"company";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/company/display',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"company";s:4:"name";s:7:"Company";s:6:"module";s:4:"node";s:11:"description";s:17:"Company node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:11:"Description";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:7:"company";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/company',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/company/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"company";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/company',
+      'tab_root' => 'admin/content/node-type/company',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'Employee',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/employee/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/employee',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/employee/display',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/employee/display',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:8:"employee";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/employee/display',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:8:"employee";s:4:"name";s:8:"Employee";s:6:"module";s:4:"node";s:11:"description";s:18:"Employee node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"1";s:10:"body_label";s:3:"Bio";s:14:"min_word_count";s:2:"20";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:8:"employee";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/employee',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/employee/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:8:"employee";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/employee',
+      'tab_root' => 'admin/content/node-type/employee',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"0";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'Sponsor',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"0";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/sponsor/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/sponsor',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/sponsor/display',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/sponsor/display',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:7:"sponsor";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/sponsor/display',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:7:"sponsor";s:4:"name";s:7:"Sponsor";s:6:"module";s:4:"node";s:11:"description";s:17:"Sponsor node type";s:4:"help";s:0:"";s:9:"has_title";s:1:"1";s:11:"title_label";s:4:"Name";s:8:"has_body";s:1:"0";s:10:"body_label";s:4:"Body";s:14:"min_word_count";s:1:"0";s:6:"custom";s:1:"0";s:8:"modified";s:1:"0";s:6:"locked";s:1:"0";s:9:"orig_type";s:0:"";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/sponsor',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/sponsor/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:7:"sponsor";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/sponsor',
+      'tab_root' => 'admin/content/node-type/sponsor',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "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 <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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\";}}",
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Story',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "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 <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/story',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/display',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/display',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:5:"story";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/display',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "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 <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/story',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:5:"story";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/story',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Text Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:10:"field_test";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_date',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Date Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_date/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_date";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_date/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_datestamp',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Date Stamp Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_datestamp";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_datestamp/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_datetime',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Datetime Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:19:"field_test_datetime";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_datetime/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Decimal Radio Buttons Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_decimal_radio_buttons";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_decimal_radio_buttons/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_email',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Email Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_email/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_email";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_email/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:24:"field_test_exclude_unset";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Text Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:24:"field_test_exclude_unset";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_exclude_unset/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_filefield',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:20:"field_test_filefield";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'File Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:20:"field_test_filefield";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_filefield/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:32:"field_test_float_single_checkbox";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Float Single Checkbox Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:32:"field_test_float_single_checkbox";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_float_single_checkbox/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_four',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Float Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_four/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_four";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_four/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_identical1',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Integer Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical1";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_identical1/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_identical2',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Integer Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_identical2";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_identical2/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_imagefield',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Image Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:21:"field_test_imagefield";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_imagefield/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:29:"field_test_integer_selectlist";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Integer Select List Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:29:"field_test_integer_selectlist";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_integer_selectlist/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_link',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Link Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_link/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:15:"field_test_link";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_link/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_phone',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Phone Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_phone/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_phone";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_phone/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:31:"field_test_text_single_checkbox";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Text Single Checkbox Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:31:"field_test_text_single_checkbox";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_text_single_checkbox/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_three',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Decimal Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_three/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:16:"field_test_three";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_three/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_two',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/story/fields',
+      'tab_root' => 'admin/content/node-type/story',
+      'title' => 'Integer Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/story/fields/field_test_two/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:5:"story";i:2;s:14:"field_test_two";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/story/fields/field_test_two/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:14:"help text here";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event Name";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:"event";}}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'Migrate test event',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"node_type_delete_confirm";i:1;O:8:"stdClass":14:{s:4:"type";s:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:14:"help text here";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event Name";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:"event";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-event/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-event',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-event/display',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-event/display',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_event";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-event/display',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:14:"node_type_form";i:1;O:8:"stdClass":14:{s:4:"type";s:10:"test_event";s:4:"name";s:18:"Migrate test event";s:6:"module";s:4:"node";s:11:"description";s:27:"test event description here";s:4:"help";s:14:"help text here";s:9:"has_title";s:1:"1";s:11:"title_label";s:10:"Event Name";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:"event";}}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-event',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-event/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_event";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-event',
+      'tab_root' => 'admin/content/node-type/test-event',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> 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:28:\"This is the body field label\";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\";}}",
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Migrate test page',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> 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:28:\"This is the body field label\";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\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-page/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-page',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-page/display',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-page/display',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:9:"test_page";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-page/display',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:9:\"test_page\";s:4:\"name\";s:17:\"Migrate test page\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:296:\"A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> 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:28:\"This is the body field label\";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\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-page',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:9:"test_page";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-page',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/fields/field_test',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:9:"test_page";i:2;s:10:"field_test";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-page/fields',
+      'tab_root' => 'admin/content/node-type/test-page',
+      'title' => 'Text Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-page/fields/field_test/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:9:"test_page";i:2;s:10:"field_test";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-page/fields/field_test/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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:\"0\";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:11:\"test_planet\";}}",
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Migrate test planet',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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:\"0\";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:11:\"test_planet\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-planet/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-planet',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-planet/display',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-planet/display',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:11:"test_planet";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-planet/display',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:11:\"test_planet\";s:4:\"name\";s:19:\"Migrate test planet\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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:\"0\";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:11:\"test_planet\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-planet',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:11:"test_planet";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-planet',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/fields/field_multivalue',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:23:"content_field_edit_form";i:1;s:11:"test_planet";i:2;s:16:"field_multivalue";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-planet/fields',
+      'tab_root' => 'admin/content/node-type/test-planet',
+      'title' => 'Decimal Field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:25:"content_field_remove_form";i:1;s:11:"test_planet";i:2;s:16:"field_multivalue";}',
+      'fit' => '127',
+      'number_parts' => '7',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-planet/fields/field_multivalue/remove',
+      'title' => 'Remove field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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:\"0\";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:10:\"test_story\";}}",
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'Migrate test story',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:24:\"node_type_delete_confirm\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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:\"0\";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:10:\"test_story\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/node-type/test-story/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/display',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-story',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'Display fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/display/basic',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"basic";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-story/display',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'Basic',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/display/print',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:5:"print";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-story/display',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'Print',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/display/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:3:{i:0;s:29:"content_display_overview_form";i:1;s:10:"test_story";i:2;s:3:"rss";}',
+      'fit' => '63',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/node-type/test-story/display',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'RSS',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => "a:2:{i:0;s:14:\"node_type_form\";i:1;O:8:\"stdClass\":14:{s:4:\"type\";s:10:\"test_story\";s:4:\"name\";s:18:\"Migrate test story\";s:6:\"module\";s:4:\"node\";s:11:\"description\";s:392:\"A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> 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:\"0\";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:10:\"test_story\";}}",
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-story',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/node-type/test-story/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"content_field_overview_form";i:1;s:10:"test_story";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/node-type/test-story',
+      'tab_root' => 'admin/content/node-type/test-story',
+      'title' => 'Manage fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/node/overview',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer nodes";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:18:"node_admin_content";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/node',
+      'tab_root' => 'admin/content/node',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/node/node.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/rss-publishing',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:25:"system_rss_feeds_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/rss-publishing',
+      'title' => 'RSS publishing',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Configure the number of items per feed and whether feeds should be titles/teasers/full-text.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/taxonomy',
+      'title' => 'Taxonomy',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Manage tagging, categorization, and classification of your content.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/%',
+      'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
+      'fit' => '14',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/taxonomy/%',
+      'title' => 'List terms',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/%/add/term',
+      'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'taxonomy_add_term_page',
+      'page_arguments' => 'a:1:{i:0;i:3;}',
+      'fit' => '59',
+      'number_parts' => '6',
+      'tab_parent' => 'admin/content/taxonomy/%',
+      'tab_root' => 'admin/content/taxonomy/%',
+      'title' => 'Add term',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/%/list',
+      'load_functions' => 'a:1:{i:3;s:24:"taxonomy_vocabulary_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:23:"taxonomy_overview_terms";i:1;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/taxonomy/%',
+      'tab_root' => 'admin/content/taxonomy/%',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/add/vocabulary',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:24:"taxonomy_form_vocabulary";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/content/taxonomy',
+      'tab_root' => 'admin/content/taxonomy',
+      'title' => 'Add vocabulary',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/edit/term',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'taxonomy_admin_term_edit',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/taxonomy/edit/term',
+      'title' => 'Edit term',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/edit/vocabulary/%',
+      'load_functions' => 'a:1:{i:5;s:24:"taxonomy_vocabulary_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'taxonomy_admin_vocabulary_edit',
+      'page_arguments' => 'a:1:{i:0;i:5;}',
+      'fit' => '62',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/taxonomy/edit/vocabulary/%',
+      'title' => 'Edit vocabulary',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/taxonomy/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer taxonomy";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:30:"taxonomy_overview_vocabularies";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/taxonomy',
+      'tab_root' => 'admin/content/taxonomy',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/taxonomy/taxonomy.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/types',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'content_types_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/content/types',
+      'title' => 'Content types',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Manage posts by content type, including default status, front page promotion, etc.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/types/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:14:"node_type_form";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/types',
+      'tab_root' => 'admin/content/types',
+      'title' => 'Add content type',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/content_types.inc',
+    ))->values(array(
+      'path' => 'admin/content/types/fields',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'content_fields_list',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/types',
+      'tab_root' => 'admin/content/types',
+      'title' => 'Fields',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/content/types/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:24:"administer content types";}',
+      'page_callback' => 'content_types_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/content/types',
+      'tab_root' => 'admin/content/types',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'sites/all/modules/cck/includes/content.admin.inc',
+    ))->values(array(
+      'path' => 'admin/reports',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"access site reports";}',
+      'page_callback' => 'system_admin_menu_block_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'admin/reports',
+      'title' => 'Reports',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'View reports from system logs and other status information.',
+      'position' => 'left',
+      'weight' => '5',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/reports/status',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_status',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/reports/status',
+      'title' => 'Status report',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Get a status report about your site's operation and any detected problems.",
+      'position' => '',
+      'weight' => '10',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/reports/status/php',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_php',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/reports/status/php',
+      'title' => 'PHP',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/reports/status/run-cron',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_run_cron',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/reports/status/run-cron',
+      'title' => 'Run cron',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/reports/status/sql',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_sql',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/reports/status/sql',
+      'title' => 'SQL',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_settings_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings',
+      'title' => 'Site configuration',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Adjust basic site configuration options.',
+      'position' => 'right',
+      'weight' => '-5',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/actions',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+      'page_callback' => 'system_actions_manage',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/actions',
+      'title' => 'Actions',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Manage the actions defined for your site.',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/actions/configure',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:24:"system_actions_configure";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/actions/configure',
+      'title' => 'Configure an advanced action',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/actions/delete/%',
+      'load_functions' => 'a:1:{i:4;s:12:"actions_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:26:"system_actions_delete_form";i:1;i:4;}',
+      'fit' => '30',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/actions/delete/%',
+      'title' => 'Delete action',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => 'Delete an action.',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/actions/manage',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+      'page_callback' => 'system_actions_manage',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/settings/actions',
+      'tab_root' => 'admin/settings/actions',
+      'title' => 'Manage actions',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => 'Manage the actions defined for your site.',
+      'position' => '',
+      'weight' => '-2',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/actions/orphan',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer actions";}',
+      'page_callback' => 'system_actions_remove_orphans',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/actions/orphan',
+      'title' => 'Remove orphans',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/admin',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:27:"system_admin_theme_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/admin',
+      'title' => 'Administration theme',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => 'system_admin_theme_settings',
+      'description' => 'Settings for how your administrative pages should look.',
+      'position' => 'left',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/clean-urls',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:25:"system_clean_url_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/clean-urls',
+      'title' => 'Clean URLs',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Enable or disable clean URLs for your site.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/clean-urls/check',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'drupal_json',
+      'page_arguments' => 'a:1:{i:0;a:1:{s:6:"status";b:1;}}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/clean-urls/check',
+      'title' => 'Clean URL check',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/date-time',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/date-time',
+      'title' => 'Date and time',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/configure',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:25:"system_date_time_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/settings/date-time',
+      'tab_root' => 'admin/settings/date-time',
+      'title' => 'Date and time',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => "Settings for how Drupal displays date and time, as well as the system's default timezone.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/delete/%',
+      'load_functions' => 'a:1:{i:4;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:32:"date_api_delete_format_type_form";i:1;i:4;}',
+      'fit' => '30',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/date-time/delete/%',
+      'title' => 'Delete date format type',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => 'Allow users to delete a configured date format type.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/date/date_api.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/formats',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/settings/date-time',
+      'tab_root' => 'admin/settings/date-time',
+      'title' => 'Formats',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => 'Allow users to configure date formats',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/date/date_api.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/formats/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:30:"date_api_add_date_formats_form";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/settings/date-time/formats',
+      'tab_root' => 'admin/settings/date-time',
+      'title' => 'Add format',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => 'Allow users to add additional date formats.',
+      'position' => '',
+      'weight' => '3',
+      'file' => 'sites/all/modules/date/date_api.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/formats/configure',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:26:"date_api_date_formats_form";}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/settings/date-time/formats',
+      'tab_root' => 'admin/settings/date-time',
+      'title' => 'Configure',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => 'Allow users to configure date formats',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'sites/all/modules/date/date_api.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/formats/custom',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'date_api_configure_custom_date_formats',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/settings/date-time/formats',
+      'tab_root' => 'admin/settings/date-time',
+      'title' => 'Custom formats',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => 'Allow users to configure custom date formats.',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'sites/all/modules/date/date_api.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/formats/delete/%',
+      'load_functions' => 'a:1:{i:5;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:27:"date_api_delete_format_form";i:1;i:5;}',
+      'fit' => '62',
+      'number_parts' => '6',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/date-time/formats/delete/%',
+      'title' => 'Delete date format',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => 'Allow users to delete a configured date format.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/date/date_api.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/formats/lookup',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'date_api_date_time_lookup',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '31',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/date-time/formats/lookup',
+      'title' => 'Date and time lookup',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/date-time/lookup',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_date_time_lookup',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/date-time/lookup',
+      'title' => 'Date and time lookup',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/email',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:20:"email_admin_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/email',
+      'title' => 'CCK Email Contact Form Settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Administer flood control settings for email contact forms',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/error-reporting',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:31:"system_error_reporting_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/error-reporting',
+      'title' => 'Error reporting',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/event',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_admin_menu_block_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/event',
+      'title' => 'Events',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Set up how your site handles events.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/event/overview',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:29:"event_admin_overview_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/event/overview',
+      'title' => 'Event overview',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Change how event summary information is displayed.',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/event/timezone',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:29:"event_admin_timezone_settings";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/event/timezone',
+      'title' => 'Timezone handling',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Change how timezone information is saved and displayed.',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'admin/settings/file-system',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:27:"system_file_system_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/file-system',
+      'title' => 'File system',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Tell Drupal where to store uploaded files and how they are accessed.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/filters',
+      'title' => 'Input formats',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/%',
+      'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'filter_admin_format_page',
+      'page_arguments' => 'a:1:{i:0;i:3;}',
+      'fit' => '14',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/filters/%',
+      'title' => '',
+      'title_callback' => 'filter_admin_format_title',
+      'title_arguments' => 'a:1:{i:0;i:3;}',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/%/configure',
+      'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'filter_admin_configure_page',
+      'page_arguments' => 'a:1:{i:0;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/settings/filters/%',
+      'tab_root' => 'admin/settings/filters/%',
+      'title' => 'Configure',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/%/edit',
+      'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'filter_admin_format_page',
+      'page_arguments' => 'a:1:{i:0;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/settings/filters/%',
+      'tab_root' => 'admin/settings/filters/%',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/%/order',
+      'load_functions' => 'a:1:{i:3;s:18:"filter_format_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'filter_admin_order_page',
+      'page_arguments' => 'a:1:{i:0;i:3;}',
+      'fit' => '29',
+      'number_parts' => '5',
+      'tab_parent' => 'admin/settings/filters/%',
+      'tab_root' => 'admin/settings/filters/%',
+      'title' => 'Rearrange',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'filter_admin_format_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/settings/filters',
+      'tab_root' => 'admin/settings/filters',
+      'title' => 'Add input format',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:19:"filter_admin_delete";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/filters/delete',
+      'title' => 'Delete input format',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/filters/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:18:"administer filters";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:21:"filter_admin_overview";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/settings/filters',
+      'tab_root' => 'admin/settings/filters',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/filter/filter.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/image-toolkit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:29:"system_image_toolkit_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/image-toolkit',
+      'title' => 'Image toolkit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Choose which image toolkit to use if you have installed optional toolkits.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/logging',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'system_logging_overview',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/logging',
+      'title' => 'Logging and alerts',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Settings for logging and alerts modules. Various modules can route Drupal's system events to different destination, such as syslog, database, email, ...etc.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/performance',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:27:"system_performance_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/performance',
+      'title' => 'Performance',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/site-information',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:32:"system_site_information_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/site-information',
+      'title' => 'Site information',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/site-maintenance',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:32:"system_site_maintenance_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/site-maintenance',
+      'title' => 'Site maintenance',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Take the site off-line for maintenance or bring it back online.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/settings/uploads',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"administer site configuration";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:21:"upload_admin_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/settings/uploads',
+      'title' => 'File uploads',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Control how files may be attached to content.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/upload/upload.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:27:"access administration pages";}',
+      'page_callback' => 'system_admin_menu_block_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user',
+      'title' => 'User management',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "Manage your site's users, groups and access to site features.",
+      'position' => 'left',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/permissions',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:15:"user_admin_perm";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/permissions',
+      'title' => 'Permissions',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Determine access to features by selecting permissions for roles.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/profile',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:22:"profile_admin_overview";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/profile',
+      'title' => 'Profiles',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Create customizable fields for your users.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/profile/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/profile/add',
+      'title' => 'Add field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/profile/autocomplete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'profile_admin_settings_autocomplete',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/profile/autocomplete',
+      'title' => 'Profile category autocomplete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/profile/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:20:"profile_field_delete";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/profile/delete',
+      'title' => 'Delete field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/profile/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:18:"profile_field_form";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/profile/edit',
+      'title' => 'Edit field',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/roles',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:19:"user_admin_new_role";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/roles',
+      'title' => 'Roles',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'List, edit, or add user roles.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/roles/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:15:"user_admin_role";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/roles/edit',
+      'title' => 'Edit role',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/rules',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'user_admin_access',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/rules',
+      'title' => 'Access rules',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'List and create rules to disallow usernames, e-mail addresses, and IP addresses.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/rules/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'user_admin_access_add',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/user/rules',
+      'tab_root' => 'admin/user/rules',
+      'title' => 'Add rule',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/rules/check',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'user_admin_access_check',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/user/rules',
+      'tab_root' => 'admin/user/rules',
+      'title' => 'Check rules',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/rules/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:32:"user_admin_access_delete_confirm";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/rules/delete',
+      'title' => 'Delete rule',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/rules/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'user_admin_access_edit',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/rules/edit',
+      'title' => 'Edit rule',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/rules/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:22:"administer permissions";}',
+      'page_callback' => 'user_admin_access',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/user/rules',
+      'tab_root' => 'admin/user/rules',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/settings',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:19:"user_admin_settings";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/settings',
+      'title' => 'User settings',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/user',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'user_admin',
+      'page_arguments' => 'a:1:{i:0;s:4:"list";}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'admin/user/user',
+      'title' => 'Users',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'List, add, and edit users.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/user/create',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'user_admin',
+      'page_arguments' => 'a:1:{i:0;s:6:"create";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/user/user',
+      'tab_root' => 'admin/user/user',
+      'title' => 'Add user',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'admin/user/user/list',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:16:"administer users";}',
+      'page_callback' => 'user_admin',
+      'page_arguments' => 'a:1:{i:0;s:4:"list";}',
+      'fit' => '15',
+      'number_parts' => '4',
+      'tab_parent' => 'admin/user/user',
+      'tab_root' => 'admin/user/user',
+      'title' => 'List',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/user/user.admin.inc',
+    ))->values(array(
+      'path' => 'aggregator',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_last',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator',
+      'title' => 'Feed aggregator',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '5',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/categories',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_aggregator_has_categories',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'aggregator_page_categories',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator/categories',
+      'title' => 'Categories',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/categories/%',
+      'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_category',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '6',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator/categories/%',
+      'title' => '',
+      'title_callback' => '_aggregator_category_title',
+      'title_arguments' => 'a:1:{i:0;i:2;}',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/categories/%/categorize',
+      'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"aggregator_page_category";i:1;i:2;}',
+      'fit' => '13',
+      'number_parts' => '4',
+      'tab_parent' => 'aggregator/categories/%',
+      'tab_root' => 'aggregator/categories/%',
+      'title' => 'Categorize',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/categories/%/configure',
+      'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:24:"aggregator_form_category";i:1;i:2;}',
+      'fit' => '13',
+      'number_parts' => '4',
+      'tab_parent' => 'aggregator/categories/%',
+      'tab_root' => 'aggregator/categories/%',
+      'title' => 'Configure',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'aggregator/categories/%/view',
+      'load_functions' => 'a:1:{i:2;s:24:"aggregator_category_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_category',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '13',
+      'number_parts' => '4',
+      'tab_parent' => 'aggregator/categories/%',
+      'tab_root' => 'aggregator/categories/%',
+      'title' => 'View',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/opml',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_opml',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator/opml',
+      'title' => 'OPML feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/rss',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_rss',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator/rss',
+      'title' => 'RSS feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/sources',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_sources',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator/sources',
+      'title' => 'Sources',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/sources/%',
+      'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_source',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '6',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'aggregator/sources/%',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/sources/%/categorize',
+      'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:22:"aggregator_page_source";i:1;i:2;}',
+      'fit' => '13',
+      'number_parts' => '4',
+      'tab_parent' => 'aggregator/sources/%',
+      'tab_root' => 'aggregator/sources/%',
+      'title' => 'Categorize',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'aggregator/sources/%/configure',
+      'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:21:"administer news feeds";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:20:"aggregator_form_feed";i:1;i:2;}',
+      'fit' => '13',
+      'number_parts' => '4',
+      'tab_parent' => 'aggregator/sources/%',
+      'tab_root' => 'aggregator/sources/%',
+      'title' => 'Configure',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/aggregator/aggregator.admin.inc',
+    ))->values(array(
+      'path' => 'aggregator/sources/%/view',
+      'load_functions' => 'a:1:{i:2;s:20:"aggregator_feed_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:17:"access news feeds";}',
+      'page_callback' => 'aggregator_page_source',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '13',
+      'number_parts' => '4',
+      'tab_parent' => 'aggregator/sources/%',
+      'tab_root' => 'aggregator/sources/%',
+      'title' => 'View',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/aggregator/aggregator.pages.inc',
+    ))->values(array(
+      'path' => 'batch',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'system_batch_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'batch',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/system/system.admin.inc',
+    ))->values(array(
+      'path' => 'book',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'book_render',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'book',
+      'title' => 'Books',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '20',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.pages.inc',
+    ))->values(array(
+      'path' => 'book/export/%/%',
+      'load_functions' => 'a:2:{i:2;N;i:3;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:31:"access printer-friendly version";}',
+      'page_callback' => 'book_export',
+      'page_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
+      'fit' => '12',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'book/export/%/%',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.pages.inc',
+    ))->values(array(
+      'path' => 'book/js/form',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'book_form_update',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'book/js/form',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.pages.inc',
+    ))->values(array(
+      'path' => 'comment/delete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:19:"administer comments";}',
+      'page_callback' => 'comment_delete',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'comment/delete',
+      'title' => 'Delete comment',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/comment/comment.admin.inc',
+    ))->values(array(
+      'path' => 'comment/edit',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:13:"post comments";}',
+      'page_callback' => 'comment_edit',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'comment/edit',
+      'title' => 'Edit comment',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/comment/comment.pages.inc',
+    ))->values(array(
+      'path' => 'comment/reply/%',
+      'load_functions' => 'a:1:{i:2;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:2;}',
+      'page_callback' => 'comment_reply',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '6',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'comment/reply/%',
+      'title' => 'Reply to comment',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/comment/comment.pages.inc',
+    ))->values(array(
+      'path' => 'contact',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:29:"access site-wide contact form";}',
+      'page_callback' => 'contact_site_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'contact',
+      'title' => 'Contact',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '20',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/contact/contact.pages.inc',
+    ))->values(array(
+      'path' => 'content/js_add_more',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'content_add_more_js',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'content/js_add_more',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/cck/includes/content.node_form.inc',
+    ))->values(array(
+      'path' => 'email/%/%',
+      'load_functions' => 'a:2:{i:1;s:9:"node_load";i:2;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+      'page_callback' => 'email_mail_page',
+      'page_arguments' => 'a:2:{i:0;i:1;i:1;i:2;}',
+      'fit' => '4',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'email/%/%',
+      'title' => 'Email Contact Form',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'event',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'event_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'event',
+      'title' => 'Events',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '20',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/event/ical.inc',
+    ))->values(array(
+      'path' => 'event/dst',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'event_dst',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'event/dst',
+      'title' => 'Event dst view',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'event/feed',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'event_feed',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'event/feed',
+      'title' => 'Event rss feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'event/ical',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'event_ical',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'event/ical',
+      'title' => 'Event ical feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/event/ical.inc',
+    ))->values(array(
+      'path' => 'event/term',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'event_term',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'event/term',
+      'title' => 'Filter by taxonomy',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'event/type',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'event_type',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'event/type',
+      'title' => 'Filter by content type',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'filefield/ahah/%/%/%',
+      'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'filefield_edit_access',
+      'access_arguments' => 'a:2:{i:0;i:2;i:1;i:3;}',
+      'page_callback' => 'filefield_js',
+      'page_arguments' => 'a:3:{i:0;i:2;i:1;i:3;i:2;i:4;}',
+      'fit' => '24',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'filefield/ahah/%/%/%',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'filefield/progress',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'filefield_progress',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'filefield/progress',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'filter/tips',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'filter_tips_long',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'filter/tips',
+      'title' => 'Compose tips',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '20',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/filter/filter.pages.inc',
+    ))->values(array(
+      'path' => 'logout',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_is_logged_in',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'user_logout',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'logout',
+      'title' => 'Log out',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '10',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'node',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'node_page_default',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'node',
+      'title' => 'Content',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'node/%',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+      'page_callback' => 'node_page_view',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '2',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'node/%',
+      'title' => '',
+      'title_callback' => 'node_page_title',
+      'title_arguments' => 'a:1:{i:0;i:1;}',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'node/%/delete',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"delete";i:1;i:1;}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:19:"node_delete_confirm";i:1;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/%/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/edit',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"update";i:1;i:1;}',
+      'page_callback' => 'node_page_edit',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'node/%',
+      'tab_root' => 'node/%',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/ical',
+      'load_functions' => 'a:1:{i:1;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'event_ical_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'event_node_ical',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/%/ical',
+      'title' => 'Event ical',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'sites/all/modules/event/ical.inc',
+    ))->values(array(
+      'path' => 'node/%/outline',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => '_book_outline_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'book_outline',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'node/%',
+      'tab_root' => 'node/%',
+      'title' => 'Outline',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'modules/book/book.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/outline/remove',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => '_book_outline_remove_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:16:"book_remove_form";i:1;i:1;}',
+      'fit' => '11',
+      'number_parts' => '4',
+      'tab_parent' => '',
+      'tab_root' => 'node/%/outline/remove',
+      'title' => 'Remove from outline',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/book/book.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/revisions',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => '_node_revision_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'node_revision_overview',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'node/%',
+      'tab_root' => 'node/%',
+      'title' => 'Revisions',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/revisions/%/delete',
+      'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => '_node_revision_access',
+      'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"delete";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:28:"node_revision_delete_confirm";i:1;i:1;}',
+      'fit' => '21',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'node/%/revisions/%/delete',
+      'title' => 'Delete earlier revision',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/revisions/%/revert',
+      'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => '_node_revision_access',
+      'access_arguments' => 'a:2:{i:0;i:1;i:1;s:6:"update";}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:28:"node_revision_revert_confirm";i:1;i:1;}',
+      'fit' => '21',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'node/%/revisions/%/revert',
+      'title' => 'Revert to earlier revision',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/%/revisions/%/view',
+      'load_functions' => 'a:2:{i:1;a:1:{s:9:"node_load";a:1:{i:0;i:3;}}i:3;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => '_node_revision_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'node_show',
+      'page_arguments' => 'a:3:{i:0;i:1;i:1;N;i:2;b:1;}',
+      'fit' => '21',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'node/%/revisions/%/view',
+      'title' => 'Revisions',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'node/%/view',
+      'load_functions' => 'a:1:{i:1;s:9:"node_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:4:"view";i:1;i:1;}',
+      'page_callback' => 'node_page_view',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'node/%',
+      'tab_root' => 'node/%',
+      'title' => 'View',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => '',
+    ))->values(array(
+      'path' => 'node/add',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '_node_add_access',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'node_add_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'node/add',
+      'title' => 'Create content',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '1',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/article',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"article";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/article',
+      'title' => 'Article',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'An <em>article</em>, content type.',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/company',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"company";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/company',
+      'title' => 'Company',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Company node type',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/employee',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:8:"employee";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/employee',
+      'title' => 'Employee',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Employee node type',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/sponsor',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:7:"sponsor";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/sponsor',
+      'title' => 'Sponsor',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'Sponsor node type',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/story',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:5:"story";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/story',
+      'title' => 'Story',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/test-event',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_event";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/test-event',
+      'title' => 'Migrate test event',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => 'test event description here',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/test-page',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:9:"test_page";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/test-page',
+      'title' => 'Migrate test page',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "A <em>page</em>, similar in form to a <em>story</em>, is a simple method for creating and displaying information that rarely changes, such as an \"About us\" section of a website. By default, a <em>page</em> entry does not allow visitor comments and is not featured on the site's initial home page.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/test-planet',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:11:"test_planet";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/test-planet',
+      'title' => 'Migrate test planet',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'node/add/test-story',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'node_access',
+      'access_arguments' => 'a:2:{i:0;s:6:"create";i:1;s:10:"test_story";}',
+      'page_callback' => 'node_add',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '7',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'node/add/test-story',
+      'title' => 'Migrate test story',
+      'title_callback' => 'check_plain',
+      'title_arguments' => '',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => "A <em>story</em>, similar in form to a <em>page</em>, 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 <em>story</em> entry. By default, a <em>story</em> entry is automatically featured on the site's initial home page, and provides the ability to post comments.",
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/node/node.pages.inc',
+    ))->values(array(
+      'path' => 'profile',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+      'page_callback' => 'profile_browse',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'profile',
+      'title' => 'User list',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '20',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.pages.inc',
+    ))->values(array(
+      'path' => 'profile/autocomplete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+      'page_callback' => 'profile_autocomplete',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'profile/autocomplete',
+      'title' => 'Profile autocomplete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/profile/profile.pages.inc',
+    ))->values(array(
+      'path' => 'rss.xml',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'node_feed',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'rss.xml',
+      'title' => 'RSS feed',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'system/files',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:1:{i:0;s:19:"view uploaded files";}',
+      'page_callback' => 'file_download',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'system/files',
+      'title' => 'File download',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'taxonomy/autocomplete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'taxonomy_autocomplete',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'taxonomy/autocomplete',
+      'title' => 'Autocomplete taxonomy',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.pages.inc',
+    ))->values(array(
+      'path' => 'taxonomy/term/%',
+      'load_functions' => 'a:1:{i:2;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:14:"access content";}',
+      'page_callback' => 'taxonomy_term_page',
+      'page_arguments' => 'a:1:{i:0;i:2;}',
+      'fit' => '6',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'taxonomy/term/%',
+      'title' => 'Taxonomy term',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/taxonomy/taxonomy.pages.inc',
+    ))->values(array(
+      'path' => 'upload/js',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:12:"upload files";}',
+      'page_callback' => 'upload_js',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'upload/js',
+      'title' => '',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->values(array(
+      'path' => 'user',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'user_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '1',
+      'number_parts' => '1',
+      'tab_parent' => '',
+      'tab_root' => 'user',
+      'title' => 'User account',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%',
+      'load_functions' => 'a:1:{i:1;s:22:"user_uid_optional_load";}',
+      'to_arg_functions' => 'a:1:{i:1;s:24:"user_uid_optional_to_arg";}',
+      'access_callback' => 'user_view_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'user_view',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '2',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'user/%',
+      'title' => 'My account',
+      'title_callback' => 'user_page_title',
+      'title_arguments' => 'a:1:{i:0;i:1;}',
+      'type' => '6',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/contact',
+      'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => '_contact_user_tab_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'contact_user_page',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'user/%',
+      'tab_root' => 'user/%',
+      'title' => 'Contact',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '2',
+      'file' => 'modules/contact/contact.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/delete',
+      'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_delete_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:2:{i:0;s:19:"user_confirm_delete";i:1;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => '',
+      'tab_root' => 'user/%/delete',
+      'title' => 'Delete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/edit',
+      'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_edit_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'user_edit',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'user/%',
+      'tab_root' => 'user/%',
+      'title' => 'Edit',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/edit/account',
+      'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_edit_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'user_edit',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '11',
+      'number_parts' => '4',
+      'tab_parent' => 'user/%/edit',
+      'tab_root' => 'user/%',
+      'title' => 'Account',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/edit/Administrative data',
+      'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+      'to_arg_functions' => '',
+      'access_callback' => 'profile_category_access',
+      'access_arguments' => 'a:2:{i:0;i:1;i:1;s:19:"Administrative data";}',
+      'page_callback' => 'user_edit',
+      'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
+      'fit' => '11',
+      'number_parts' => '4',
+      'tab_parent' => 'user/%/edit',
+      'tab_root' => 'user/%',
+      'title' => '',
+      'title_callback' => 'check_plain',
+      'title_arguments' => 'a:1:{i:0;s:19:"Administrative data";}',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '3',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/edit/Communication preferences',
+      'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+      'to_arg_functions' => '',
+      'access_callback' => 'profile_category_access',
+      'access_arguments' => 'a:2:{i:0;i:1;i:1;s:25:"Communication preferences";}',
+      'page_callback' => 'user_edit',
+      'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
+      'fit' => '11',
+      'number_parts' => '4',
+      'tab_parent' => 'user/%/edit',
+      'tab_root' => 'user/%',
+      'title' => '',
+      'title_callback' => 'check_plain',
+      'title_arguments' => 'a:1:{i:0;s:25:"Communication preferences";}',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '3',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/edit/Personal information',
+      'load_functions' => 'a:1:{i:1;a:1:{s:18:"user_category_load";a:2:{i:0;s:4:"%map";i:1;s:6:"%index";}}}',
+      'to_arg_functions' => '',
+      'access_callback' => 'profile_category_access',
+      'access_arguments' => 'a:2:{i:0;i:1;i:1;s:20:"Personal information";}',
+      'page_callback' => 'user_edit',
+      'page_arguments' => 'a:2:{i:0;i:1;i:1;i:3;}',
+      'fit' => '11',
+      'number_parts' => '4',
+      'tab_parent' => 'user/%/edit',
+      'tab_root' => 'user/%',
+      'title' => '',
+      'title_callback' => 'check_plain',
+      'title_arguments' => 'a:1:{i:0;s:20:"Personal information";}',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '3',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/%/view',
+      'load_functions' => 'a:1:{i:1;s:9:"user_load";}',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_view_access',
+      'access_arguments' => 'a:1:{i:0;i:1;}',
+      'page_callback' => 'user_view',
+      'page_arguments' => 'a:1:{i:0;i:1;}',
+      'fit' => '5',
+      'number_parts' => '3',
+      'tab_parent' => 'user/%',
+      'tab_root' => 'user/%',
+      'title' => 'View',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '-10',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/autocomplete',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_access',
+      'access_arguments' => 'a:1:{i:0;s:20:"access user profiles";}',
+      'page_callback' => 'user_autocomplete',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'user/autocomplete',
+      'title' => 'User autocomplete',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/login',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_is_anonymous',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'user_page',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => 'user',
+      'tab_root' => 'user',
+      'title' => 'Log in',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '136',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/password',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_is_anonymous',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:9:"user_pass";}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => 'user',
+      'tab_root' => 'user',
+      'title' => 'Request new password',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/register',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => 'user_register_access',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:1:{i:0;s:13:"user_register";}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => 'user',
+      'tab_root' => 'user',
+      'title' => 'Create new account',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '128',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/reset/%/%/%',
+      'load_functions' => 'a:3:{i:2;N;i:3;N;i:4;N;}',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'drupal_get_form',
+      'page_arguments' => 'a:4:{i:0;s:15:"user_pass_reset";i:1;i:2;i:2;i:3;i:3;i:4;}',
+      'fit' => '24',
+      'number_parts' => '5',
+      'tab_parent' => '',
+      'tab_root' => 'user/reset/%/%/%',
+      'title' => 'Reset password',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => 'modules/user/user.pages.inc',
+    ))->values(array(
+      'path' => 'user/timezone',
+      'load_functions' => '',
+      'to_arg_functions' => '',
+      'access_callback' => '1',
+      'access_arguments' => 'a:0:{}',
+      'page_callback' => 'user_timezone',
+      'page_arguments' => 'a:0:{}',
+      'fit' => '3',
+      'number_parts' => '2',
+      'tab_parent' => '',
+      'tab_root' => 'user/timezone',
+      'title' => 'User timezone',
+      'title_callback' => 't',
+      'title_arguments' => '',
+      'type' => '4',
+      'block_callback' => '',
+      'description' => '',
+      'position' => '',
+      'weight' => '0',
+      'file' => '',
+    ))->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/Sessions.php b/core/modules/migrate_drupal/src/Tests/Table/d6/Sessions.php
new file mode 100644
index 0000000..1b8db7c
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/Sessions.php
@@ -0,0 +1,76 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\Sessions.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the sessions table.
+ */
+class Sessions extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("sessions", array(
+      'fields' => array(
+        'uid' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '10',
+          'unsigned' => TRUE,
+        ),
+        'sid' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '64',
+          'default' => '',
+        ),
+        'hostname' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '128',
+          'default' => '',
+        ),
+        'timestamp' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'cache' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'session' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+      ),
+      'primary key' => array(
+        'sid',
+      ),
+    ));
+    $this->database->insert("sessions")->fields(array(
+      'uid',
+      'sid',
+      'hostname',
+      'timestamp',
+      'cache',
+      'session',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/modules/migrate_drupal/src/Tests/Table/d6/Watchdog.php b/core/modules/migrate_drupal/src/Tests/Table/d6/Watchdog.php
new file mode 100644
index 0000000..c5aac9a
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/Table/d6/Watchdog.php
@@ -0,0 +1,108 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\Dump\Watchdog.
+ *
+ * THIS IS A GENERATED FILE. DO NOT EDIT.
+ *
+ * @see cores/scripts/dump-database-d6.sh
+ * @see https://www.drupal.org/sandbox/benjy/2405029
+ */
+
+namespace Drupal\migrate_drupal\Tests\Table\d6;
+
+use Drupal\migrate_drupal\Tests\Dump\DrupalDumpBase;
+
+/**
+ * Generated file to represent the watchdog table.
+ */
+class Watchdog extends DrupalDumpBase {
+
+  public function load() {
+    $this->createTable("watchdog", array(
+      'primary key' => array(
+        'wid',
+      ),
+      'fields' => array(
+        'wid' => array(
+          'type' => 'serial',
+          'not null' => TRUE,
+          'length' => '11',
+        ),
+        'uid' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+        'type' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '16',
+          'default' => '',
+        ),
+        'message' => array(
+          'type' => 'text',
+          'not null' => TRUE,
+          'length' => 100,
+        ),
+        'variables' => array(
+          'type' => 'text',
+          'not null' => TRUE,
+          'length' => 100,
+        ),
+        'severity' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '3',
+          'default' => '0',
+          'unsigned' => TRUE,
+        ),
+        'link' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '255',
+          'default' => '',
+        ),
+        'location' => array(
+          'type' => 'text',
+          'not null' => TRUE,
+          'length' => 100,
+        ),
+        'referer' => array(
+          'type' => 'text',
+          'not null' => FALSE,
+          'length' => 100,
+        ),
+        'hostname' => array(
+          'type' => 'varchar',
+          'not null' => TRUE,
+          'length' => '128',
+          'default' => '',
+        ),
+        'timestamp' => array(
+          'type' => 'int',
+          'not null' => TRUE,
+          'length' => '11',
+          'default' => '0',
+        ),
+      ),
+    ));
+    $this->database->insert("watchdog")->fields(array(
+      'wid',
+      'uid',
+      'type',
+      'message',
+      'variables',
+      'severity',
+      'link',
+      'location',
+      'referer',
+      'hostname',
+      'timestamp',
+    ))
+    ->execute();
+  }
+
+}
diff --git a/core/scripts/migrate-dump-d6.sh b/core/scripts/migrate-dump-d6.sh
index 6d9b366..0222477 100755
--- a/core/scripts/migrate-dump-d6.sh
+++ b/core/scripts/migrate-dump-d6.sh
@@ -71,10 +71,6 @@ public function load() {
 $tables = $connection->query('SHOW TABLES')->fetchCol();
 
 foreach ($tables as $table) {
-  if (substr($table, 0, 5) === 'cache' || $table === 'watchdog' || $table === 'menu_router' || $table === 'sessions') {
-    continue;
-  }
-
   // Generate the class name.
   $class = Inflector::classify($table);
 
@@ -95,8 +91,12 @@ public function load() {
   // Generate the field values.
   $query = $connection->query(_db_get_query($table) . $order);
   $values = '';
-  while(($row = $query->fetchAssoc()) !== FALSE) {
-    $values .= '->values(' . Variable::export($row, '    ') . ')';
+  // Only dump the actual table values if we're NOT looking at a cache table,
+  // watchdog, router, or sessions tables.
+  if (substr($table, 0, 5) !== 'cache' && !in_array($table, array('watchdog', 'sessions'))) {
+    while(($row = $query->fetchAssoc()) !== FALSE) {
+      $values .= '->values(' . Variable::export($row, '    ') . ')';
+    }
   }
 
   // Generate the field names.
@@ -160,7 +160,6 @@ public function load() {
   $php = str_replace('{{PHP_FIELDS}}', $fields, $php);
   $php = str_replace('{{TABLE_DEFINITION}}', $definition, $php);
 
-
   // Save the file.
   $php = implode("\n", array_map('rtrim', explode("\n", $php)));
   file_put_contents("$output_folder/$class.php", $php);
@@ -200,4 +199,4 @@ function _db_get_query($table) {
 $pass = $options['password'];
 $db = $options['database'];
 
-@system("mysqldump -u$user -p$pass $db | gzip -c > core/modules/migrate_drupal/src/Tests/d6.gz");
+// There used to be a call to mysqldump here, and I got rid of it. Hahahahahaha.
diff --git a/core/scripts/migrate-generate-d6.sh b/core/scripts/migrate-generate-d6.sh
new file mode 100644
index 0000000..2da0988
--- /dev/null
+++ b/core/scripts/migrate-generate-d6.sh
@@ -0,0 +1,41 @@
+#!/usr/bin/env php
+<?php
+
+/**
+ * This script rebuilds a Drupal 6 database from the PHP files generated
+ * by migrate-dump-d6.sh. To use, create a DB connection, called d6_migrate,
+ * in your settings.php. Then run this here script. I advise you to use
+ * either a completely different database from your main DB, or prefixing.
+ * This is the inverse operation of migrate-dump-d6.sh.
+ */
+
+use Drupal\Core\Database\Database;
+use Drupal\Core\DrupalKernel;
+use Drupal\Core\Site\Settings;
+use Symfony\Component\HttpFoundation\Request;
+
+if (PHP_SAPI !== 'cli') {
+  return;
+}
+
+$autoloader  = require __DIR__ . '/../../autoload.php';
+require_once __DIR__ . '/../includes/bootstrap.inc';
+
+$request = Request::createFromGlobals();
+Settings::initialize(dirname(dirname(__DIR__)), DrupalKernel::findSitePath($request), $autoloader);
+
+// Drupal must be fully bootstrapped in order to use file_scan_directory(),
+// and all legacy includes (like file.inc) need to be included.
+$kernel = DrupalKernel::createFromRequest($request, $autoloader, 'prod');
+$kernel->boot();
+$kernel->loadLegacyIncludes();
+
+$tables_dir = DRUPAL_ROOT . '/core/modules/migrate_drupal/src/Tests/Table/d6';
+
+// Scan for *.php files in $tables_dir and include all of them.
+$tables = file_scan_directory($tables_dir, '/.php$/', array('recurse' => FALSE));
+foreach ($tables as $table) {
+  require_once $table->uri;
+  $class = 'Drupal\migrate_drupal\Tests\Table\d6\\' . $table->name;
+  (new $class(Database::getConnection('default', 'd6_migrate')))->load();
+}
