+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
:: sql_layer; ?>
+-' . $config['version'] . ' ';
+-echo $lang['UPDATED_VERSION'] . ' :: ' . $updates_to_version . '
';
+-
+ $current_version = str_replace('rc', 'RC', strtolower($config['version']));
+ $latest_version = str_replace('rc', 'RC', strtolower($updates_to_version));
+ $orig_version = $config['version'];
+@@ -243,79 +205,6 @@
+ set_config('dbms_version', $db->sql_server_info(true));
+ }
+
+-// Firebird update from Firebird 2.0 to 2.1+ required?
+-if ($db->sql_layer == 'firebird')
+-{
+- // We do not trust any PHP5 function enabled, we will simply test for a function new in 2.1
+- $db->sql_return_on_error(true);
+-
+- $sql = 'SELECT 1 FROM RDB$DATABASE
+- WHERE BIN_AND(10, 1) = 0';
+- $result = $db->sql_query($sql);
+-
+- if (!$result || $db->sql_error_triggered)
+- {
+- echo '
';
+- echo '
' . $lang['ERROR'] . ' ';
+-
+- echo '
' . $lang['FIREBIRD_DBMS_UPDATE_REQUIRED'] . '
';
+-
+- _print_footer();
+-
+- exit_handler();
+- exit;
+- }
+-
+- $db->sql_freeresult($result);
+- $db->sql_return_on_error(false);
+-}
+-
+-// MySQL update from MySQL 3.x/4.x to > 4.1.x required?
+-if ($db->sql_layer == 'mysql' || $db->sql_layer == 'mysql4' || $db->sql_layer == 'mysqli')
+-{
+- // Verify by fetching column... if the column type matches the new type we update dbms_version...
+- $sql = "SHOW COLUMNS FROM " . CONFIG_TABLE;
+- $result = $db->sql_query($sql);
+-
+- $column_type = '';
+- while ($row = $db->sql_fetchrow($result))
+- {
+- $field = strtolower($row['Field']);
+-
+- if ($field == 'config_value')
+- {
+- $column_type = strtolower($row['Type']);
+- break;
+- }
+- }
+- $db->sql_freeresult($result);
+-
+- // If column type is blob, but mysql version says we are on > 4.1.3, then the schema needs an update
+- if (strpos($column_type, 'blob') !== false && version_compare($db->sql_server_info(true), '4.1.3', '>='))
+- {
+- echo '
';
+- echo '
' . $lang['ERROR'] . ' ';
+-
+- echo '
' . sprintf($lang['MYSQL_SCHEMA_UPDATE_REQUIRED'], $config['dbms_version'], $db->sql_server_info(true)) . '
';
+-
+- _print_footer();
+-
+- exit_handler();
+- exit;
+- }
+-}
+-
+-// Now check if the user wants to update from a version we no longer support updates from
+-if (version_compare($current_version, $oldest_from_version, '<'))
+-{
+- echo '
' . $lang['ERROR'] . ' ';
+- echo '
' . sprintf($lang['DB_UPDATE_NOT_SUPPORTED'], $oldest_from_version, $current_version) . '
';
+-
+- _print_footer();
+- exit_handler();
+- exit;
+-}
+-
+ // If the latest version and the current version are 'unequal', we will update the version_update_from, else we do not update anything.
+ if ($inline_update)
+ {
+@@ -331,17 +220,6 @@
+ }
+
+ // Schema updates
+-?>
+-
+-
+-
+-
+-
+-
::
+-
+-
+-
+-
+-
+-
+- ::
+-
+-
+-
+-
+-
+-
+- ::
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+- " class="button1">
+-
+-purge();
+
+-_print_footer();
++//_print_footer();
+
+ garbage_collection();
+
+@@ -514,32 +340,9 @@
+ }
+
+ /**
+-* Print out footer
+-*/
+-function _print_footer()
+-{
+- echo <<
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-
+-EOF;
+-}
+-
+-/**
+ * Function for triggering an sql statement
+ */
+-function _sql($sql, &$errored, &$error_ary, $echo_dot = true)
++function _sql($sql, &$errored, &$error_ary, $echo_dot = false)
+ {
+ global $db;
+
+@@ -582,6 +385,7 @@
+
+ function _write_result($no_updates, $errored, $error_ary)
+ {
++ return true;
+ global $lang;
+
+ if ($no_updates)
diff --git a/debian/maint-patches/010_board_configuration.diff b/debian/maint-patches/010_board_configuration.diff
new file mode 100644
index 0000000..861bd5a
--- /dev/null
+++ b/debian/maint-patches/010_board_configuration.diff
@@ -0,0 +1,2225 @@
+--- install/schemas/schema_data.sql 2013-09-27 21:20:51.000000000 -0400
++++ debian/schema_data_debian.sql 2013-11-02 21:29:24.699731111 -0400
+@@ -1,836 +1,1386 @@
+-#
+-# $Id$
+-#
+-
+-# POSTGRES BEGIN #
+-
+-# -- Config
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('active_sessions', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_attachments', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_autologin', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_local', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_upload', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote_upload', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bbcode', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_birthdays', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bookmarks', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_emailreuse', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_forum_notify', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_mass_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_name_chars', 'USERNAME_CHARS_ANY');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_nocensors', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_attach', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_report', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_flash', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_links', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_privmsg', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_quick_reply', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_bbcode', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_flash', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_img', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_links', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_smilies', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_smilies', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_topic_notify', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('attachment_quota', '52428800');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_bbcode_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_flash_pm', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_img_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_method', 'db');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_smilies_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_filesize', '6144');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_gallery_path', 'images/avatars/gallery');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_height', '90');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_width', '90');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_height', '20');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_width', '20');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_path', 'images/avatars/upload');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_salt', 'phpbb_avatar');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_contact', 'contact@yourdomain.tld');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable_msg', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_dst', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email', 'address@yourdomain.tld');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_form', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_sig', '{L_CONFIG_BOARD_EMAIL_SIG}');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_hide_emails', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_timezone', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('browser_check', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_interval', '10');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_type', 'd');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('cache_gc', '7200');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_plugin', 'phpbb_captcha_nogd');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_foreground_noise', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_x_grid', '25');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_y_grid', '25');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_wave', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_3d_noise', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_fonts', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('confirm_refresh', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('check_attachment_content', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('check_dnsbl', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('chg_passforce', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_domain', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_name', 'phpbb3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path', '/');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_secure', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('database_gc', '604800');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('dbms_version', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat', 'D M d, Y g:i a');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_style', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_last_edited', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_order', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('edit_time', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('delete_time', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_check_mx', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_enable', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_function_name', 'mail');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_max_chunk_size', '50');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_package_size', '20');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_confirm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_pm_icons', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_post_confirm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_enable', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_http_auth', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_post', '15');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_topic', '10');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall_forums', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_forum', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topic', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_new', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_active', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_item_statistics', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('flood_interval', '15');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('force_server_vars', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_lifetime', '7200');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_mintime', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_sid_guests', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('forward_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('forwarded_for_check', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('full_folder_action', '2');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_max_word_len', '254');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_min_word_len', '4');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_common_thres', '5');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_load_upd', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_max_chars', '14');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_min_chars', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold', '25');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('icons_path', 'images/icons');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_create_thumbnail', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_display_inlined', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_imagick', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_height', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_width', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_height', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_thumb_width', '400');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_width', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_min_thumb_filesize', '12000');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_check', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_login_limit_max', '50');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_login_limit_time', '21600');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_login_limit_use_forwarded', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_enable', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_host', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_password', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_package_size', '20');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_port', '5222');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_use_ssl', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_username', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_base_dn', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_email', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_password', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_port', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_server', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_uid', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user_filter', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_load', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_search_load', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_anon_lastread', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_birthdays', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_memberlist', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_viewprofile', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_viewtopic', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_db_lastread', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_db_track', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_jumpbox', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_moderators', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_guests', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_time', '5');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_onlinetrack', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_search', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_tplcompile', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_unreads_search', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_user_activity', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_autologin_time', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize', '262144');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize_pm', '262144');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_login_attempts', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_name_chars', '20');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_num_search_keywords', '10');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_pass_chars', '100');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_poll_options', '10');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_chars', '60000');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_font_size', '200');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_img_height', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_img_width', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_smilies', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_urls', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_quote_depth', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_reg_attempts', '5');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_chars', '255');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_font_size', '200');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_img_height', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_img_width', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_smilies', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_urls', '5');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_name_chars', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_pass_chars', '6');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_post_chars', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_search_author_chars', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('mime_triggers', 'body|head|html|img|plaintext|a href|pre|script|table|title');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('new_member_post_limit', '3');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('new_member_group_default', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('override_user_style', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('pass_complex', 'PASS_TYPE_ANY');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_edit_time', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_boxes', '4');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_msgs', '50');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_recipients', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('posts_per_page', '10');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('print_pm', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('queue_interval', '60');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('ranks_path', 'images/ranks');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('require_activation', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('referer_validation', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('script_path', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_block_size', '250');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_gc', '7200');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_anonymous_interval', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', 'fulltext_native');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_store_results', '1800');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_downloads', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_name', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_port', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_protocol', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length', '3600');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc', '{L_CONFIG_SITE_DESC}');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename', '{L_CONFIG_SITENAME}');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path', 'images/smilies');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page', '50');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_auth_method', 'PLAIN');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_delivery', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_host', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_password', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_port', '25');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username', '');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', '25');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.12');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90');
+-INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400');
+-
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour', 'AA0000', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id', '2', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username', '', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts', '1', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics', '1', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users', '1', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state', '', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size', '0', 1);
+-INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc', '0', 1);
+-
+-# -- Forum related auth options
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_announce', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_attach', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_bbcode', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_bump', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_delete', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_download', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_edit', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_email', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_flash', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_icons', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_ignoreflood', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_img', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_list', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_noapprove', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_poll', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_post', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_postcount', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_print', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_read', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_reply', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_report', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_search', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_sigs', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_smilies', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_sticky', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_subscribe', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_user_lock', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_vote', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_votechg', 1);
+-
+-# -- Moderator related auth options
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_approve', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_chgposter', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_delete', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_edit', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_info', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_lock', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_merge', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_move', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_report', 1, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_split', 1, 1);
+-
+-# -- Global moderator auth option (not a local option)
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_ban', 0, 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_warn', 0, 1);
+-
+-# -- Admin related auth options
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_aauth', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_attach', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_authgroups', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_authusers', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_backup', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_ban', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_bbcode', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_board', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_bots', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_clearlogs', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_email', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_fauth', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forum', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forumadd', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forumdel', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_group', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_groupadd', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_groupdel', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_icons', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_jabber', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_language', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_mauth', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_modules', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_names', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_phpinfo', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_profile', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_prune', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_ranks', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_reasons', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_roles', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_search', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_server', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_styles', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_switchperm', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_uauth', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_user', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_userdel', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_viewauth', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_viewlogs', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_words', 1);
+-
+-# -- User related auth options
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_attach', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgavatar', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgcensors', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgemail', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chggrp', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgname', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgpasswd', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_download', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_hideonline', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_ignoreflood', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_masspm', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_masspm_group', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_attach', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_bbcode', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_delete', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_download', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_edit', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_emailpm', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_flash', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_forward', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_img', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_printpm', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_smilies', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_readpm', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_savedrafts', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_search', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendemail', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendim', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendpm', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sig', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_viewonline', 1);
+-INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_viewprofile', 1);
+-
+-
+-# -- standard auth roles
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_STANDARD', 'ROLE_DESCRIPTION_ADMIN_STANDARD', 'a_', 1);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_FORUM', 'ROLE_DESCRIPTION_ADMIN_FORUM', 'a_', 3);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_USERGROUP', 'ROLE_DESCRIPTION_ADMIN_USERGROUP', 'a_', 4);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_FULL', 'ROLE_DESCRIPTION_ADMIN_FULL', 'a_', 2);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_FULL', 'ROLE_DESCRIPTION_USER_FULL', 'u_', 3);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_STANDARD', 'ROLE_DESCRIPTION_USER_STANDARD', 'u_', 1);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_LIMITED', 'ROLE_DESCRIPTION_USER_LIMITED', 'u_', 2);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NOPM', 'ROLE_DESCRIPTION_USER_NOPM', 'u_', 4);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NOAVATAR', 'ROLE_DESCRIPTION_USER_NOAVATAR', 'u_', 5);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_FULL', 'ROLE_DESCRIPTION_MOD_FULL', 'm_', 3);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_STANDARD', 'ROLE_DESCRIPTION_MOD_STANDARD', 'm_', 1);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_SIMPLE', 'ROLE_DESCRIPTION_MOD_SIMPLE', 'm_', 2);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_QUEUE', 'ROLE_DESCRIPTION_MOD_QUEUE', 'm_', 4);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_FULL', 'ROLE_DESCRIPTION_FORUM_FULL', 'f_', 7);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_STANDARD', 'ROLE_DESCRIPTION_FORUM_STANDARD', 'f_', 5);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NOACCESS', 'ROLE_DESCRIPTION_FORUM_NOACCESS', 'f_', 1);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_READONLY', 'ROLE_DESCRIPTION_FORUM_READONLY', 'f_', 2);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_LIMITED', 'ROLE_DESCRIPTION_FORUM_LIMITED', 'f_', 3);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_BOT', 'ROLE_DESCRIPTION_FORUM_BOT', 'f_', 9);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_ONQUEUE', 'ROLE_DESCRIPTION_FORUM_ONQUEUE', 'f_', 8);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_POLLS', 'ROLE_DESCRIPTION_FORUM_POLLS', 'f_', 6);
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_LIMITED_POLLS', 'ROLE_DESCRIPTION_FORUM_LIMITED_POLLS', 'f_', 4);
+-
+-# 23
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NEW_MEMBER', 'ROLE_DESCRIPTION_USER_NEW_MEMBER', 'u_', 6);
+-
+-# 24
+-INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NEW_MEMBER', 'ROLE_DESCRIPTION_FORUM_NEW_MEMBER', 'f_', 10);
+-
+-# -- phpbb_styles
+-INSERT INTO phpbb_styles (style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES ('prosilver', '© phpBB Group', 1, 1, 1, 1);
+-
+-# -- phpbb_styles_imageset
+-INSERT INTO phpbb_styles_imageset (imageset_name, imageset_copyright, imageset_path) VALUES ('prosilver', '© phpBB Group', 'prosilver');
+-
+-# -- phpbb_styles_imageset_data
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('site_logo', 'site_logo.gif', '', 52, 139, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_link', 'forum_link.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read', 'forum_read.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read_locked', 'forum_read_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read_subforum', 'forum_read_subforum.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread', 'forum_unread.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread_locked', 'forum_unread_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread_subforum', 'forum_unread_subforum.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_moved', 'topic_moved.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read', 'topic_read.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_mine', 'topic_read_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_hot', 'topic_read_hot.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_hot_mine', 'topic_read_hot_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_locked', 'topic_read_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_locked_mine', 'topic_read_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread', 'topic_unread.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_mine', 'topic_unread_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_hot', 'topic_unread_hot.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_hot_mine', 'topic_unread_hot_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_locked', 'topic_unread_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_locked_mine', 'topic_unread_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read', 'sticky_read.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_mine', 'sticky_read_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_locked', 'sticky_read_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_locked_mine', 'sticky_read_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread', 'sticky_unread.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_mine', 'sticky_unread_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_locked', 'sticky_unread_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_locked_mine', 'sticky_unread_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read', 'announce_read.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_mine', 'announce_read_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_locked', 'announce_read_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_locked_mine', 'announce_read_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread', 'announce_unread.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_mine', 'announce_unread_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_locked', 'announce_unread_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read', 'announce_read.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_mine', 'announce_read_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_locked', 'announce_read_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_locked_mine', 'announce_read_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread', 'announce_unread.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_mine', 'announce_unread_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked', 'announce_unread_locked.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_read', 'topic_read.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_unread', 'topic_unread.gif', '', 27, 27, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_back_top', 'icon_back_top.gif', '', 11, 11, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_aim', 'icon_contact_aim.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_email', 'icon_contact_email.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_icq', 'icon_contact_icq.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_jabber', 'icon_contact_jabber.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_msnm', 'icon_contact_msnm.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_www', 'icon_contact_www.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_yahoo', 'icon_contact_yahoo.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_delete', 'icon_post_delete.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_info', 'icon_post_info.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_report', 'icon_post_report.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_target', 'icon_post_target.gif', '', 9, 11, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_target_unread', 'icon_post_target_unread.gif', '', 9, 11, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_attach', 'icon_topic_attach.gif', '', 10, 7, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_latest', 'icon_topic_latest.gif', '', 9, 11, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_newest', 'icon_topic_newest.gif', '', 9, 11, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_reported', 'icon_topic_reported.gif', '', 14, 16, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_unapproved', 'icon_topic_unapproved.gif', '', 14, 16, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_user_warn', 'icon_user_warn.gif', '', 20, 20, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_read', 'subforum_read.gif', '', 9, 11, 1);
+-INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_unread', 'subforum_unread.gif', '', 9, 11, 1);
+-
+-# -- phpbb_styles_template
+-INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('prosilver', '© phpBB Group', 'prosilver', 'lNg=', 0);
+-
+-# -- phpbb_styles_theme
+-INSERT INTO phpbb_styles_theme (theme_name, theme_copyright, theme_path, theme_storedb, theme_data) VALUES ('prosilver', '© phpBB Group', 'prosilver', 1, '');
+-
+-# -- Forums
+-INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('{L_FORUMS_FIRST_CATEGORY}', '', 1, 4, 0, 0, 1, 1, 1, 1, 2, 'Admin', 'AA0000', 972086460, '', '', '', '', '', '', '', 0, 0, '');
+-
+-INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_subject, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents, forum_flags) VALUES ('{L_FORUMS_TEST_FORUM_TITLE}', '{L_FORUMS_TEST_FORUM_DESC}', 2, 3, 1, 1, 1, 1, 1, 1, 2, 'Admin', 'AA0000', '{L_TOPICS_TOPIC_TITLE}', 972086460, '', '', '', '', '', '', '', 0, 0, '', 48);
+-
+-# -- Users / Anonymous user
+-INSERT INTO phpbb_users (user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_allow_massemail) VALUES (2, 1, 'Anonymous', 'anonymous', 0, '', '', 'en', 1, 0, '', 0, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 0);
+-
+-# -- username: Admin password: admin (change this or remove it once everything is working!)
+-INSERT INTO phpbb_users (user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd) VALUES (3, 5, 'Admin', 'admin', 0, '21232f297a57a5a743894a0e4a801fc3', 'admin@yourdomain.com', 'en', 1, 1, 'AA0000', 1, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '');
+-
+-# -- Groups
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('GUESTS', 3, 0, '', 0, '', '', '', 5);
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('REGISTERED', 3, 0, '', 0, '', '', '', 5);
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('REGISTERED_COPPA', 3, 0, '', 0, '', '', '', 5);
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('GLOBAL_MODERATORS', 3, 0, '00AA00', 1, '', '', '', 0);
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('ADMINISTRATORS', 3, 1, 'AA0000', 1, '', '', '', 0);
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('BOTS', 3, 0, '9E8DA7', 0, '', '', '', 5);
+-INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('NEWLY_REGISTERED', 3, 0, '', 0, '', '', '', 5);
+-
+-# -- User -> Group
+-INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (1, 1, 0, 0);
+-INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (2, 2, 0, 0);
+-INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (4, 2, 0, 0);
+-INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (5, 2, 0, 1);
+-
+-# -- Ranks
+-INSERT INTO phpbb_ranks (rank_title, rank_min, rank_special, rank_image) VALUES ('{L_RANKS_SITE_ADMIN_TITLE}', 0, 1, '');
+-
+-# -- Roles data
+-
+-# Standard Admin (a_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 1, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option NOT IN ('a_switchperm', 'a_jabber', 'a_phpinfo', 'a_server', 'a_backup', 'a_styles', 'a_clearlogs', 'a_modules', 'a_language', 'a_email', 'a_bots', 'a_search', 'a_aauth', 'a_roles');
+-
+-# Forum admin (a_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 2, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option IN ('a_', 'a_authgroups', 'a_authusers', 'a_fauth', 'a_forum', 'a_forumadd', 'a_forumdel', 'a_mauth', 'a_prune', 'a_uauth', 'a_viewauth', 'a_viewlogs');
+-
+-# User and Groups Admin (a_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 3, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option IN ('a_', 'a_authgroups', 'a_authusers', 'a_ban', 'a_group', 'a_groupadd', 'a_groupdel', 'a_ranks', 'a_uauth', 'a_user', 'a_viewauth', 'a_viewlogs');
+-
+-# Full Admin (a_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 4, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%';
+-
+-# All Features (u_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 5, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%';
+-
+-# Standard Features (u_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 6, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_flash', 'u_pm_forward');
+-
+-# Limited Features (u_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 7, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group');
+-
+-# No Private Messages (u_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 8, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_', 'u_chgavatar', 'u_chgcensors', 'u_chgemail', 'u_chgpasswd', 'u_download', 'u_hideonline', 'u_sig', 'u_viewprofile');
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 8, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_readpm', 'u_sendpm', 'u_masspm', 'u_masspm_group');
+-
+-# No Avatar (u_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_chgavatar', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group');
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_chgavatar');
+-
+-# Full Moderator (m_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 10, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%';
+-
+-# Standard Moderator (m_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 11, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option NOT IN ('m_ban', 'm_chgposter');
+-
+-# Simple Moderator (m_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 12, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option IN ('m_', 'm_delete', 'm_edit', 'm_info', 'm_report');
+-
+-# Queue Moderator (m_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 13, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option IN ('m_', 'm_approve', 'm_edit');
+-
+-# Full Access (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 14, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%';
+-
+-# Standard Access (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 15, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_flash', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock');
+-
+-# No Access (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 16, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option = 'f_';
+-
+-# Read Only Access (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 17, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_', 'f_download', 'f_list', 'f_read', 'f_search', 'f_subscribe', 'f_print');
+-
+-# Limited Access (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 18, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_attach', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock', 'f_votechg');
+-
+-# Bot Access (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 19, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_', 'f_download', 'f_list', 'f_read', 'f_print');
+-
+-# On Moderation Queue (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 20, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock', 'f_votechg', 'f_noapprove');
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 20, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove');
+-
+-# Standard Access + Polls (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 21, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_flash', 'f_ignoreflood', 'f_sticky', 'f_user_lock');
+-
+-# Limited Access + Polls (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 22, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_attach', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_sticky', 'f_user_lock', 'f_votechg');
+-
+-# New Member (u_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 23, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_sendpm', 'u_masspm', 'u_masspm_group');
+-
+-# New Member (f_)
+-INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 24, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove');
+-
+-
+-# Permissions
+-
+-# GUESTS - u_download and u_search ability
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) SELECT 1, 0, auth_option_id, 0, 1 FROM phpbb_acl_options WHERE auth_option IN ('u_', 'u_download', 'u_search');
+-
+-# Admin user - full user features
+-INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 0, 0, 5, 0);
+-
+-# ADMINISTRATOR Group - full user features
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 0, 0, 5, 0);
+-
+-# ADMINISTRATOR Group - standard admin
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 0, 0, 1, 0);
+-
+-# REGISTERED and REGISTERED_COPPA having standard user features
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 0, 0, 6, 0);
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 0, 0, 6, 0);
+-
+-# GLOBAL_MODERATORS having full user features
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 0, 0, 5, 0);
+-
+-# GLOBAL_MODERATORS having full global moderator access
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 0, 0, 10, 0);
+-
+-# Giving all groups read only access to the first category
+-# since administrators and moderators are already within the registered users group we do not need to set them here
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1, 1, 0, 17, 0);
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 1, 0, 17, 0);
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 1, 0, 17, 0);
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 1, 0, 17, 0);
+-
+-# Giving access to the first forum
+-
+-# guests having read only access
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1, 2, 0, 17, 0);
+-
+-# registered and registered_coppa having standard access
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 2, 0, 15, 0);
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 2, 0, 15, 0);
+-
+-# global moderators having standard access + polls
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 2, 0, 21, 0);
+-
+-# administrators having full forum and full moderator access
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 2, 0, 14, 0);
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 2, 0, 10, 0);
+-
+-# Bots having bot access
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 2, 0, 19, 0);
+-
+-# NEW MEMBERS aren't allowed to PM
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 0, 0, 23, 0);
+-
+-# NEW MEMBERS on the queue
+-INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 2, 0, 24, 0);
+-
+-
+-# -- Demo Topic
+-INSERT INTO phpbb_topics (topic_title, topic_poster, topic_time, topic_views, topic_replies, topic_replies_real, forum_id, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, poll_title) VALUES ('{L_TOPICS_TOPIC_TITLE}', 2, 972086460, 0, 0, 0, 2, 0, 0, 1, 'Admin', 'AA0000', 1, 2, 'Admin', 'AA0000', '{L_TOPICS_TOPIC_TITLE}', 972086460, 972086460, '');
+-
+-# -- Demo Post
+-INSERT INTO phpbb_posts (topic_id, forum_id, poster_id, icon_id, post_time, post_username, poster_ip, post_subject, post_text, post_checksum, bbcode_uid) VALUES (1, 2, 2, 0, 972086460, '', '127.0.0.1', '{L_TOPICS_TOPIC_TITLE}', '{L_DEFAULT_INSTALL_POST}', '5dd683b17f641daf84c040bfefc58ce9', '');
+-
+-# -- Admin posted to the demo topic
+-INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2, 1, 1);
+-
+-# -- Smilies
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':D', 'icon_e_biggrin.gif', '{L_SMILIES_VERY_HAPPY}', 15, 17, 1);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-D', 'icon_e_biggrin.gif', '{L_SMILIES_VERY_HAPPY}', 15, 17, 2);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':grin:', 'icon_e_biggrin.gif', '{L_SMILIES_VERY_HAPPY}', 15, 17, 3);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':)', 'icon_e_smile.gif', '{L_SMILIES_SMILE}', 15, 17, 4);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-)', 'icon_e_smile.gif', '{L_SMILIES_SMILE}', 15, 17, 5);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':smile:', 'icon_e_smile.gif', '{L_SMILIES_SMILE}', 15, 17, 6);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (';)', 'icon_e_wink.gif', '{L_SMILIES_WINK}', 15, 17, 7);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (';-)', 'icon_e_wink.gif', '{L_SMILIES_WINK}', 15, 17, 8);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':wink:', 'icon_e_wink.gif', '{L_SMILIES_WINK}', 15, 17, 9);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':(', 'icon_e_sad.gif', '{L_SMILIES_SAD}', 15, 17, 10);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-(', 'icon_e_sad.gif', '{L_SMILIES_SAD}', 15, 17, 11);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':sad:', 'icon_e_sad.gif', '{L_SMILIES_SAD}', 15, 17, 12);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':o', 'icon_e_surprised.gif', '{L_SMILIES_SURPRISED}', 15, 17, 13);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-o', 'icon_e_surprised.gif', '{L_SMILIES_SURPRISED}', 15, 17, 14);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':eek:', 'icon_e_surprised.gif', '{L_SMILIES_SURPRISED}', 15, 17, 15);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':shock:', 'icon_eek.gif', '{L_SMILIES_SHOCKED}', 15, 17, 16);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':?', 'icon_e_confused.gif', '{L_SMILIES_CONFUSED}', 15, 17, 17);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-?', 'icon_e_confused.gif', '{L_SMILIES_CONFUSED}', 15, 17, 18);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':???:', 'icon_e_confused.gif', '{L_SMILIES_CONFUSED}', 15, 17, 19);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES ('8-)', 'icon_cool.gif', '{L_SMILIES_COOL}', 15, 17, 20);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':cool:', 'icon_cool.gif', '{L_SMILIES_COOL}', 15, 17, 21);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':lol:', 'icon_lol.gif', '{L_SMILIES_LAUGHING}', 15, 17, 22);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':x', 'icon_mad.gif', '{L_SMILIES_MAD}', 15, 17, 23);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-x', 'icon_mad.gif', '{L_SMILIES_MAD}', 15, 17, 24);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':mad:', 'icon_mad.gif', '{L_SMILIES_MAD}', 15, 17, 25);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':P', 'icon_razz.gif', '{L_SMILIES_RAZZ}', 15, 17, 26);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-P', 'icon_razz.gif', '{L_SMILIES_RAZZ}', 15, 17, 27);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':razz:', 'icon_razz.gif', '{L_SMILIES_RAZZ}', 15, 17, 28);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':oops:', 'icon_redface.gif', '{L_SMILIES_EMARRASSED}', 15, 17, 29);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':cry:', 'icon_cry.gif', '{L_SMILIES_CRYING}', 15, 17, 30);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':evil:', 'icon_evil.gif', '{L_SMILIES_EVIL}', 15, 17, 31);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':twisted:', 'icon_twisted.gif', '{L_SMILIES_TWISTED_EVIL}', 15, 17, 32);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':roll:', 'icon_rolleyes.gif', '{L_SMILIES_ROLLING_EYES}', 15, 17, 33);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':!:', 'icon_exclaim.gif', '{L_SMILIES_EXCLAMATION}', 15, 17, 34);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':?:', 'icon_question.gif', '{L_SMILIES_QUESTION}', 15, 17, 35);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':idea:', 'icon_idea.gif', '{L_SMILIES_IDEA}', 15, 17, 36);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':arrow:', 'icon_arrow.gif', '{L_SMILIES_ARROW}', 15, 17, 37);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':|', 'icon_neutral.gif', '{L_SMILIES_NEUTRAL}', 15, 17, 38);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-|', 'icon_neutral.gif', '{L_SMILIES_NEUTRAL}', 15, 17, 39);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':mrgreen:', 'icon_mrgreen.gif', '{L_SMILIES_MR_GREEN}', 15, 17, 40);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':geek:', 'icon_e_geek.gif', '{L_SMILIES_GEEK}', 17, 17, 41);
+-INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':ugeek:', 'icon_e_ugeek.gif', '{L_SMILIES_UBER_GEEK}', 17, 18, 42);
+-
+-# -- icons
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/fire.gif', 16, 16, 1, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/redface.gif', 16, 16, 9, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/mrgreen.gif', 16, 16, 10, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/heart.gif', 16, 16, 4, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/star.gif', 16, 16, 2, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/radioactive.gif', 16, 16, 3, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/thinking.gif', 16, 16, 5, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/info.gif', 16, 16, 8, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/question.gif', 16, 16, 6, 1);
+-INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/alert.gif', 16, 16, 7, 1);
+-
+-# -- reasons
+-INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('warez', '{L_REPORT_WAREZ}', 1);
+-INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('spam', '{L_REPORT_SPAM}', 2);
+-INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('off_topic', '{L_REPORT_OFF_TOPIC}', 3);
+-INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('other', '{L_REPORT_OTHER}', 4);
+-
+-# -- extension_groups
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('IMAGES', 1, 1, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('ARCHIVES', 0, 1, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('PLAIN_TEXT', 0, 0, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('DOCUMENTS', 0, 0, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('REAL_MEDIA', 3, 0, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('WINDOWS_MEDIA', 2, 0, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('FLASH_FILES', 5, 0, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('QUICKTIME_MEDIA', 6, 0, 1, '', 0, '');
+-INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('DOWNLOADABLE_FILES', 0, 0, 1, '', 0, '');
+-
+-# -- extensions
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'gif');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'png');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'jpeg');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'jpg');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tif');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tiff');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tga');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'gtar');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'gz');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'tar');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'zip');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'rar');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'ace');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'torrent');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'tgz');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'bz2');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, '7z');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'txt');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'c');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'h');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'cpp');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'hpp');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'diz');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'csv');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'ini');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'log');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'js');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'xml');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xls');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsx');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsm');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsb');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'doc');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'docx');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'docm');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dot');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dotx');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dotm');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pdf');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ai');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ps');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ppt');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pptx');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pptm');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odg');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odp');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ods');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odt');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'rtf');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (5, 'rm');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (5, 'ram');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (6, 'wma');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (6, 'wmv');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (7, 'swf');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'mov');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'm4v');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'm4a');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'mp4');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, '3gp');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, '3g2');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'qt');
+-
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mpeg');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mpg');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mp3');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogg');
+-INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogm');
+-
+-# POSTGRES COMMIT #
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,85,0,1);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,93,0,1);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,110,0,1);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,5,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,1,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,6,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,0,0,6,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,5,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,10,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,1,0,17,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,1,0,17,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,1,0,17,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,1,0,17,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,2,0,17,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,2,0,15,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,2,0,15,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,2,0,21,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,14,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,10,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,2,0,19,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,0,0,23,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,1,0,24,0);
++INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,2,0,24,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (1,'f_',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (2,'f_announce',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (3,'f_attach',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (4,'f_bbcode',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (5,'f_bump',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (6,'f_delete',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (7,'f_download',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (8,'f_edit',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (9,'f_email',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (10,'f_flash',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (11,'f_icons',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (12,'f_ignoreflood',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (13,'f_img',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (14,'f_list',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (15,'f_noapprove',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (16,'f_poll',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (17,'f_post',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (18,'f_postcount',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (19,'f_print',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (20,'f_read',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (21,'f_reply',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (22,'f_report',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (23,'f_search',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (24,'f_sigs',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (25,'f_smilies',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (26,'f_sticky',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (27,'f_subscribe',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (28,'f_user_lock',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (29,'f_vote',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (30,'f_votechg',0,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (31,'m_',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (32,'m_approve',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (33,'m_chgposter',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (34,'m_delete',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (35,'m_edit',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (36,'m_info',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (37,'m_lock',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (38,'m_merge',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (39,'m_move',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (40,'m_report',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (41,'m_split',1,1,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (42,'m_ban',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (43,'m_warn',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (44,'a_',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (45,'a_aauth',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (46,'a_attach',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (47,'a_authgroups',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (48,'a_authusers',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (49,'a_backup',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (50,'a_ban',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (51,'a_bbcode',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (52,'a_board',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (53,'a_bots',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (54,'a_clearlogs',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (55,'a_email',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (56,'a_fauth',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (57,'a_forum',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (58,'a_forumadd',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (59,'a_forumdel',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (60,'a_group',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (61,'a_groupadd',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (62,'a_groupdel',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (63,'a_icons',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (64,'a_jabber',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (65,'a_language',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (66,'a_mauth',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (67,'a_modules',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (68,'a_names',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (69,'a_phpinfo',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (70,'a_profile',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (71,'a_prune',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (72,'a_ranks',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (73,'a_reasons',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (74,'a_roles',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (75,'a_search',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (76,'a_server',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (77,'a_styles',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (78,'a_switchperm',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (79,'a_uauth',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (80,'a_user',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (81,'a_userdel',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (82,'a_viewauth',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (83,'a_viewlogs',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (84,'a_words',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (85,'u_',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (86,'u_attach',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (87,'u_chgavatar',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (88,'u_chgcensors',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (89,'u_chgemail',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (90,'u_chggrp',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (91,'u_chgname',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (92,'u_chgpasswd',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (93,'u_download',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (94,'u_hideonline',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (95,'u_ignoreflood',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (96,'u_masspm',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (97,'u_pm_attach',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (98,'u_pm_bbcode',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (99,'u_pm_delete',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (100,'u_pm_download',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (101,'u_pm_edit',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (102,'u_pm_emailpm',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (103,'u_pm_flash',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (104,'u_pm_forward',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (105,'u_pm_img',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (106,'u_pm_printpm',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (107,'u_pm_smilies',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (108,'u_readpm',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (109,'u_savedrafts',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (110,'u_search',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (111,'u_sendemail',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (112,'u_sendim',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (113,'u_sendpm',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (114,'u_sig',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (115,'u_viewonline',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (116,'u_viewprofile',1,0,0);
++INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (117,'u_masspm_group',1,0,0);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (1,'ROLE_ADMIN_STANDARD','ROLE_DESCRIPTION_ADMIN_STANDARD','a_',1);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (2,'ROLE_ADMIN_FORUM','ROLE_DESCRIPTION_ADMIN_FORUM','a_',3);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (3,'ROLE_ADMIN_USERGROUP','ROLE_DESCRIPTION_ADMIN_USERGROUP','a_',4);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (4,'ROLE_ADMIN_FULL','ROLE_DESCRIPTION_ADMIN_FULL','a_',2);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (5,'ROLE_USER_FULL','ROLE_DESCRIPTION_USER_FULL','u_',3);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (6,'ROLE_USER_STANDARD','ROLE_DESCRIPTION_USER_STANDARD','u_',1);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (7,'ROLE_USER_LIMITED','ROLE_DESCRIPTION_USER_LIMITED','u_',2);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (8,'ROLE_USER_NOPM','ROLE_DESCRIPTION_USER_NOPM','u_',4);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (9,'ROLE_USER_NOAVATAR','ROLE_DESCRIPTION_USER_NOAVATAR','u_',5);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (10,'ROLE_MOD_FULL','ROLE_DESCRIPTION_MOD_FULL','m_',3);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (11,'ROLE_MOD_STANDARD','ROLE_DESCRIPTION_MOD_STANDARD','m_',1);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (12,'ROLE_MOD_SIMPLE','ROLE_DESCRIPTION_MOD_SIMPLE','m_',2);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (13,'ROLE_MOD_QUEUE','ROLE_DESCRIPTION_MOD_QUEUE','m_',4);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (14,'ROLE_FORUM_FULL','ROLE_DESCRIPTION_FORUM_FULL','f_',7);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (15,'ROLE_FORUM_STANDARD','ROLE_DESCRIPTION_FORUM_STANDARD','f_',5);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (16,'ROLE_FORUM_NOACCESS','ROLE_DESCRIPTION_FORUM_NOACCESS','f_',1);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (17,'ROLE_FORUM_READONLY','ROLE_DESCRIPTION_FORUM_READONLY','f_',2);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (18,'ROLE_FORUM_LIMITED','ROLE_DESCRIPTION_FORUM_LIMITED','f_',3);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (19,'ROLE_FORUM_BOT','ROLE_DESCRIPTION_FORUM_BOT','f_',9);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (20,'ROLE_FORUM_ONQUEUE','ROLE_DESCRIPTION_FORUM_ONQUEUE','f_',8);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (21,'ROLE_FORUM_POLLS','ROLE_DESCRIPTION_FORUM_POLLS','f_',6);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (22,'ROLE_FORUM_LIMITED_POLLS','ROLE_DESCRIPTION_FORUM_LIMITED_POLLS','f_',4);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (23,'ROLE_USER_NEW_MEMBER','ROLE_DESCRIPTION_USER_NEW_MEMBER','u_',6);
++INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (24,'ROLE_FORUM_NEW_MEMBER','ROLE_DESCRIPTION_FORUM_NEW_MEMBER','f_',10);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,44,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,46,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,47,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,48,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,50,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,51,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,52,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,56,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,57,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,58,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,59,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,60,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,61,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,62,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,63,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,66,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,68,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,70,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,71,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,72,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,73,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,79,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,80,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,81,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,82,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,83,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,84,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,44,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,47,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,48,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,56,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,57,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,58,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,59,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,66,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,71,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,79,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,82,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,83,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,44,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,47,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,48,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,50,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,60,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,61,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,62,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,72,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,79,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,80,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,82,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,83,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,44,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,45,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,46,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,47,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,48,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,49,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,50,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,51,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,52,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,53,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,54,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,55,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,56,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,57,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,58,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,59,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,60,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,61,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,62,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,63,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,64,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,65,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,66,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,67,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,68,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,69,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,70,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,71,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,72,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,73,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,74,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,75,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,76,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,77,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,78,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,79,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,80,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,81,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,82,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,83,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,84,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,85,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,86,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,87,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,88,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,89,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,90,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,91,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,92,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,93,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,94,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,95,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,96,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,97,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,98,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,99,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,100,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,101,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,102,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,103,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,104,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,105,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,106,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,107,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,108,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,109,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,110,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,111,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,112,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,113,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,114,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,115,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,116,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,117,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,85,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,86,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,87,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,88,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,89,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,92,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,93,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,94,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,96,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,97,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,98,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,99,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,100,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,101,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,102,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,105,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,106,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,107,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,108,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,109,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,110,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,111,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,112,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,113,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,114,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,116,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,117,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,85,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,87,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,88,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,89,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,92,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,93,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,94,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,96,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,98,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,99,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,100,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,101,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,104,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,105,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,106,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,107,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,108,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,113,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,114,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,116,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,117,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,85,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,87,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,88,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,89,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,92,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,93,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,94,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,96,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,108,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,113,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,114,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,116,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,117,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,85,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,87,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,88,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,89,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,92,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,93,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,94,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,96,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,98,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,99,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,100,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,101,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,104,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,105,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,106,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,107,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,108,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,113,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,114,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,116,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,117,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,31,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,32,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,33,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,34,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,35,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,36,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,37,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,38,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,39,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,40,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,41,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,42,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,43,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,31,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,32,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,34,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,35,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,36,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,37,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,38,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,39,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,40,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,41,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,43,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,31,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,34,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,35,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,36,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,40,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,31,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,32,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,35,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,2,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,3,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,4,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,5,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,6,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,8,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,9,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,10,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,11,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,12,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,13,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,15,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,16,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,17,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,18,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,21,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,22,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,24,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,25,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,26,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,28,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,29,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,30,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,3,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,4,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,5,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,6,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,8,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,9,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,11,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,13,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,15,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,17,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,18,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,21,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,22,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,24,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,25,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,29,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,30,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (16,1,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,4,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,8,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,9,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,13,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,15,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,17,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,18,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,21,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,22,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,24,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,25,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,29,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,3,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,4,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,8,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,9,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,13,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,15,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,17,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,18,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,21,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,22,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,24,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,25,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,29,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,3,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,4,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,5,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,6,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,8,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,9,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,11,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,13,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,15,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,16,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,17,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,18,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,21,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,22,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,24,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,25,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,29,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,30,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,1,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,4,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,7,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,8,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,9,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,13,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,14,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,15,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,16,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,17,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,18,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,19,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,20,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,21,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,22,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,23,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,24,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,25,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,27,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,29,1);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,96,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,113,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,117,0);
++INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (24,15,0);
++INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,5,0);
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (1,1,'AdsBot [Google]',3,'AdsBot-Google','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (2,1,'Alexa [Bot]',4,'ia_archiver','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (3,1,'Alta Vista [Bot]',5,'Scooter/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (4,1,'Ask Jeeves [Bot]',6,'Ask Jeeves','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (5,1,'Baidu [Spider]',7,'Baiduspider','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (6,1,'Exabot [Bot]',8,'Exabot','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (7,1,'FAST Enterprise [Crawler]',9,'FAST Enterprise Crawler','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (8,1,'FAST WebCrawler [Crawler]',10,'FAST-WebCrawler/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (9,1,'Francis [Bot]',11,'http://www.neomo.de/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (10,1,'Gigabot [Bot]',12,'Gigabot/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (11,1,'Google Adsense [Bot]',13,'Mediapartners-Google/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (12,1,'Google Desktop',14,'Google Desktop','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (13,1,'Google Feedfetcher',15,'Feedfetcher-Google','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (14,1,'Google [Bot]',16,'Googlebot','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (15,1,'Heise IT-Markt [Crawler]',17,'heise-IT-Markt-Crawler','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (16,1,'Heritrix [Crawler]',18,'heritrix/1.','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (17,1,'IBM Research [Bot]',19,'ibm.com/cs/crawler','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (18,1,'ICCrawler - ICjobs',20,'ICCrawler - ICjobs','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (19,1,'ichiro [Crawler]',21,'ichiro/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (20,1,'Majestic-12 [Bot]',22,'MJ12bot/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (21,1,'Metager [Bot]',23,'MetagerBot/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (22,1,'MSN NewsBlogs',24,'msnbot-NewsBlogs/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (23,1,'MSN [Bot]',25,'msnbot/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (24,1,'MSNbot Media',26,'msnbot-media/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (26,1,'Nutch [Bot]',28,'http://lucene.apache.org/nutch/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (29,1,'Online link [Validator]',31,'online link validator','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (30,1,'psbot [Picsearch]',32,'psbot/0','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (32,1,'Sensis [Crawler]',34,'Sensis Web Crawler','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (33,1,'SEO Crawler',35,'SEO search Crawler/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (34,1,'Seoma [Crawler]',36,'Seoma [SEO Crawler]','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (35,1,'SEOSearch [Crawler]',37,'SEOsearch/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (36,1,'Snappy [Bot]',38,'Snappy/1.1 ( http://www.urltrends.com/ )','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (37,1,'Steeler [Crawler]',39,'http://www.tkl.iis.u-tokyo.ac.jp/~crawler/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (39,1,'Telekom [Bot]',41,'crawleradmin.t-info@telekom.de','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (40,1,'TurnitinBot [Bot]',42,'TurnitinBot/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (41,1,'Voyager [Bot]',43,'voyager/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (42,1,'W3 [Sitesearch]',44,'W3 SiteSearch Crawler','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (43,1,'W3C [Linkcheck]',45,'W3C-checklink/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (44,1,'W3C [Validator]',46,'W3C_Validator','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (46,1,'Yacy [Bot]',48,'yacybot','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (47,1,'Yahoo MMCrawler [Bot]',49,'Yahoo-MMCrawler/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (48,1,'Yahoo Slurp [Bot]',50,'Yahoo! DE Slurp','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (49,1,'Yahoo [Bot]',51,'Yahoo! Slurp','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (50,1,'YahooSeeker [Bot]',52,'YahooSeeker/','');
++INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (51,1,'Bing [Bot]',53,'bingbot/','');
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('active_sessions','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_attachments','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_autologin','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_local','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote_upload','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_upload','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bbcode','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_birthdays','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bookmarks','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_emailreuse','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_forum_notify','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_mass_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_name_chars','USERNAME_CHARS_ANY',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_namechange','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_nocensors','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_attach','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_report','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_flash','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_links','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_privmsg','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_quick_reply','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_bbcode','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_flash','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_img','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_links','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_smilies','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_smilies','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_topic_notify','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('attachment_quota','52428800',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_bbcode_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_flash_pm','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_img_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_method','db',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_smilies_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_filesize','6144',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_gallery_path','images/avatars/gallery',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_height','90',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_width','90',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_height','20',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_width','20',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_path','images/avatars/upload',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_salt','phpbb_avatar',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_contact','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable_msg','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_dst','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_form','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_sig','Thanks, The Management',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_hide_emails','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_startdate','1268943869',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_timezone','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('browser_check','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_interval','10',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_type','d',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_gc','7200',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_3d_noise','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_fonts','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_foreground_noise','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_wave','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_x_grid','@DEB_CAPTCHA_X_RAND@',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_y_grid','@DEB_CAPTCHA_Y_RAND@',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_plugin','phpbb_captcha_gd',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_attachment_content','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_dnsbl','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('chg_passforce','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('confirm_refresh','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_domain','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_name','phpbb3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_path','/',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_secure','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_enable','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_fax','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_mail','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_gc','604800',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('dbms_version','5.5.33-1-log',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_dateformat','D M d, Y g:i a',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_lang','en',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_style','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('delete_time','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_last_edited','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_order','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('edit_time','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_check_mx','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_enable','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_function_name','mail',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_package_size','20',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_confirm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_pm_icons','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_post_confirm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_queue_trigger','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_enable','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_forum','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_http_auth','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_item_statistics','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit','10',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_post','10',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_topic','15',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums_limit','15',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics_limit','15',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topic','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_active','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_new','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('flood_interval','15',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('force_server_vars','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_lifetime','7200',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_mintime','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_sid_guests','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forward_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forwarded_for_check','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('full_folder_action','2',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_max_word_len','254',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_min_word_len','4',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_common_thres','5',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_load_upd','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_max_chars','14',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_min_chars','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('gzip_compress','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('hot_threshold','25',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('icons_path','images/icons',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_create_thumbnail','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_display_inlined','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_imagick','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_height','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_width','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_height','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_thumb_width','400',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_width','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_min_thumb_filesize','12000',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_check','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_max','50',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_time','21600',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_use_forwarded','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_enable','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_host','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_package_size','20',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_password','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_port','5222',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_use_ssl','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_username','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_base_dn','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_email','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_password','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_port','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_server','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_uid','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user_filter','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_load','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_search_load','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_anon_lastread','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_birthdays','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_memberlist','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewprofile','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewtopic','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_lastread','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_track','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_jumpbox','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_moderators','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_guests','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_time','5',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_onlinetrack','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_search','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_tplcompile','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_unreads_search','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_user_activity','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_autologin_time','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize','262144',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize_pm','262144',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_login_attempts','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_name_chars','20',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_num_search_keywords','10',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_pass_chars','30',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_poll_options','10',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_chars','60000',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_font_size','200',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_height','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_width','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_smilies','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_urls','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_quote_depth','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_reg_attempts','5',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_chars','255',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_font_size','200',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_height','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_width','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_smilies','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_urls','5',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('mime_triggers','body|head|html|img|plaintext|a href|pre|script|table|title',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_name_chars','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_pass_chars','6',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_post_chars','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_search_author_chars','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_group_default','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_post_limit','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour','AA0000',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id','2',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username','',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts','1',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics','1',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users','1',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('override_user_style','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pass_complex','PASS_TYPE_ANY',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_edit_time','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_boxes','4',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_msgs','50',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_recipients','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('posts_per_page','10',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('print_pm','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_interval','60',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_trigger_posts','3',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ranks_path','images/ranks',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('referer_validation','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('require_activation','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('script_path','/phpbb',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_anonymous_interval','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_block_size','250',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_gc','7200',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state','',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_interval','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_store_results','1800',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_type','fulltext_native',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_deny','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_empty_referer','1',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_downloads','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_name','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_port','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_protocol','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_gc','3600',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_length','3600',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('site_desc','Powered by Debian',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('sitename','Your new phpBB board',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_path','images/smilies',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_per_page','50',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_auth_method','PLAIN',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_delivery','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_host','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_password','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_port','25',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_username','',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('topics_per_page','25',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('tpl_allow_php','0',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size','0',1);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_icons_path','images/upload_icons',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_path','files',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('version','3.0.12',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_expire_days','90',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_gc','14400',0);
++INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc','0',1);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (1,'IMAGES',1,1,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (2,'ARCHIVES',0,1,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (3,'PLAIN_TEXT',0,0,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (4,'DOCUMENTS',0,0,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (5,'REAL_MEDIA',3,0,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (6,'WINDOWS_MEDIA',2,0,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (7,'FLASH_FILES',5,0,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (8,'QUICKTIME_MEDIA',6,0,1,'',0,'',0);
++INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (9,'DOWNLOADABLE_FILES',0,0,1,'',0,'',0);
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (1,1,'gif');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (2,1,'png');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (3,1,'jpeg');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (4,1,'jpg');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (5,1,'tif');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (6,1,'tiff');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (7,1,'tga');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (8,2,'gtar');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (9,2,'gz');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (10,2,'tar');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (11,2,'zip');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (12,2,'rar');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (13,2,'ace');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (14,2,'torrent');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (15,2,'tgz');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (16,2,'bz2');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (17,2,'7z');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (18,3,'txt');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (19,3,'c');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (20,3,'h');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (21,3,'cpp');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (22,3,'hpp');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (23,3,'diz');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (24,3,'csv');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (25,3,'ini');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (26,3,'log');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (27,3,'js');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (28,3,'xml');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (29,4,'xls');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (30,4,'xlsx');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (31,4,'xlsm');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (32,4,'xlsb');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (33,4,'doc');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (34,4,'docx');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (35,4,'docm');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (36,4,'dot');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (37,4,'dotx');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (38,4,'dotm');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (39,4,'pdf');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (40,4,'ai');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (41,4,'ps');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (42,4,'ppt');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (43,4,'pptx');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (44,4,'pptm');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (45,4,'odg');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (46,4,'odp');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (47,4,'ods');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (48,4,'odt');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (49,4,'rtf');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (50,5,'rm');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (51,5,'ram');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (52,6,'wma');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (53,6,'wmv');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (54,7,'swf');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (55,8,'mov');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (56,8,'m4v');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (57,8,'m4a');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (58,8,'mp4');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (59,8,'3gp');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (60,8,'3g2');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (61,8,'qt');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (62,9,'mpeg');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (63,9,'mpg');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (64,9,'mp3');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (65,9,'ogg');
++INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (66,9,'ogm');
++INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (1,0,1,4,'','Example Category','','',7,'','','',0,'','','','',7,'',0,0,0,1,1,1,1,2,'',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0);
++INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (2,1,2,3,'','Example Forum','This forum serves as an example','',7,'','','',0,'','','','',7,'',0,1,0,1,1,1,1,2,'Test Topic',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (1,3,0,0,'GUESTS','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (2,3,0,0,'REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (3,3,0,0,'REGISTERED_COPPA','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (4,3,0,0,'GLOBAL_MODERATORS','','',7,'',0,'',0,0,0,0,'00AA00',0,0,0,0,1);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (5,3,1,0,'ADMINISTRATORS','','',7,'',0,'',0,0,0,0,'AA0000',0,0,0,0,1);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (6,3,0,0,'BOTS','','',7,'',0,'',0,0,0,0,'9E8DA7',0,0,0,5,0);
++INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (7,3,0,0,'NEWLY_REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (1,'misc/fire.gif',16,16,1,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (2,'smile/redface.gif',16,16,9,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (3,'smile/mrgreen.gif',16,16,10,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (4,'misc/heart.gif',16,16,4,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (5,'misc/star.gif',16,16,2,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (6,'misc/radioactive.gif',16,16,3,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (7,'misc/thinking.gif',16,16,5,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (8,'smile/info.gif',16,16,8,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (9,'smile/question.gif',16,16,6,1);
++INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (10,'smile/alert.gif',16,16,7,1);
++INSERT INTO phpbb_lang (lang_id, lang_iso, lang_dir, lang_english_name, lang_local_name, lang_author) VALUES (1,'en','en','English [GB]','English [GB]','phpBB Group');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (1,1,1,'','acp',0,1,64,'ACP_CAT_GENERAL','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (2,1,1,'','acp',1,4,17,'ACP_QUICK_ACCESS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (3,1,1,'','acp',1,18,41,'ACP_BOARD_CONFIGURATION','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (4,1,1,'','acp',1,42,49,'ACP_CLIENT_COMMUNICATION','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (5,1,1,'','acp',1,50,63,'ACP_SERVER_CONFIGURATION','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (6,1,1,'','acp',0,65,84,'ACP_CAT_FORUMS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (7,1,1,'','acp',6,66,71,'ACP_MANAGE_FORUMS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (8,1,1,'','acp',6,72,83,'ACP_FORUM_BASED_PERMISSIONS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (9,1,1,'','acp',0,85,110,'ACP_CAT_POSTING','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (10,1,1,'','acp',9,86,99,'ACP_MESSAGES','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (11,1,1,'','acp',9,100,109,'ACP_ATTACHMENTS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (12,1,1,'','acp',0,111,166,'ACP_CAT_USERGROUP','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (13,1,1,'','acp',12,112,145,'ACP_CAT_USERS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (14,1,1,'','acp',12,146,153,'ACP_GROUPS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (15,1,1,'','acp',12,154,165,'ACP_USER_SECURITY','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (16,1,1,'','acp',0,167,216,'ACP_CAT_PERMISSIONS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (17,1,1,'','acp',16,170,179,'ACP_GLOBAL_PERMISSIONS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (18,1,1,'','acp',16,180,191,'ACP_FORUM_BASED_PERMISSIONS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (19,1,1,'','acp',16,192,201,'ACP_PERMISSION_ROLES','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (20,1,1,'','acp',16,202,215,'ACP_PERMISSION_MASKS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (21,1,1,'','acp',0,217,230,'ACP_CAT_STYLES','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (22,1,1,'','acp',21,218,221,'ACP_STYLE_MANAGEMENT','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (23,1,1,'','acp',21,222,229,'ACP_STYLE_COMPONENTS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (24,1,1,'','acp',0,231,250,'ACP_CAT_MAINTENANCE','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (25,1,1,'','acp',24,232,241,'ACP_FORUM_LOGS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (26,1,1,'','acp',24,242,249,'ACP_CAT_DATABASE','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (27,1,1,'','acp',0,251,276,'ACP_CAT_SYSTEM','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (28,1,1,'','acp',27,252,255,'ACP_AUTOMATION','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (29,1,1,'','acp',27,256,267,'ACP_GENERAL_TASKS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (30,1,1,'','acp',27,268,275,'ACP_MODULE_MANAGEMENT','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (31,1,1,'','acp',0,277,278,'ACP_CAT_DOT_MODS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (32,1,1,'attachments','acp',3,19,20,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (33,1,1,'attachments','acp',11,101,102,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (34,1,1,'attachments','acp',11,103,104,'ACP_MANAGE_EXTENSIONS','extensions','acl_a_attach');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (35,1,1,'attachments','acp',11,105,106,'ACP_EXTENSION_GROUPS','ext_groups','acl_a_attach');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (36,1,1,'attachments','acp',11,107,108,'ACP_ORPHAN_ATTACHMENTS','orphan','acl_a_attach');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (37,1,1,'ban','acp',15,155,156,'ACP_BAN_EMAILS','email','acl_a_ban');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (38,1,1,'ban','acp',15,157,158,'ACP_BAN_IPS','ip','acl_a_ban');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (39,1,1,'ban','acp',15,159,160,'ACP_BAN_USERNAMES','user','acl_a_ban');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (40,1,1,'bbcodes','acp',10,87,88,'ACP_BBCODES','bbcodes','acl_a_bbcode');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (41,1,1,'board','acp',3,21,22,'ACP_BOARD_SETTINGS','settings','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (42,1,1,'board','acp',3,23,24,'ACP_BOARD_FEATURES','features','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (43,1,1,'board','acp',3,25,26,'ACP_AVATAR_SETTINGS','avatar','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (44,1,1,'board','acp',3,27,28,'ACP_MESSAGE_SETTINGS','message','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (45,1,1,'board','acp',10,89,90,'ACP_MESSAGE_SETTINGS','message','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (46,1,1,'board','acp',3,29,30,'ACP_POST_SETTINGS','post','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (47,1,1,'board','acp',3,31,32,'ACP_SIGNATURE_SETTINGS','signature','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (48,1,1,'board','acp',3,33,34,'ACP_REGISTER_SETTINGS','registration','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (49,1,1,'board','acp',4,43,44,'ACP_AUTH_SETTINGS','auth','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (50,1,1,'board','acp',4,45,46,'ACP_EMAIL_SETTINGS','email','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (51,1,1,'board','acp',5,51,52,'ACP_COOKIE_SETTINGS','cookie','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (52,1,1,'board','acp',5,53,54,'ACP_SERVER_SETTINGS','server','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (53,1,1,'board','acp',5,55,56,'ACP_SECURITY_SETTINGS','security','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (54,1,1,'board','acp',5,57,58,'ACP_LOAD_SETTINGS','load','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (55,1,1,'bots','acp',29,257,258,'ACP_BOTS','bots','acl_a_bots');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (56,1,1,'captcha','acp',3,35,36,'ACP_VC_SETTINGS','visual','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (57,1,0,'captcha','acp',3,37,38,'ACP_VC_CAPTCHA_DISPLAY','img','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (58,1,1,'database','acp',26,243,244,'ACP_BACKUP','backup','acl_a_backup');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (59,1,1,'database','acp',26,245,246,'ACP_RESTORE','restore','acl_a_backup');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (60,1,1,'disallow','acp',15,161,162,'ACP_DISALLOW_USERNAMES','usernames','acl_a_names');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (61,1,1,'email','acp',29,259,260,'ACP_MASS_EMAIL','email','acl_a_email && cfg_email_enable');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (62,1,1,'forums','acp',7,67,68,'ACP_MANAGE_FORUMS','manage','acl_a_forum');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (63,1,1,'groups','acp',14,147,148,'ACP_GROUPS_MANAGE','manage','acl_a_group');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (64,1,1,'icons','acp',10,93,94,'ACP_ICONS','icons','acl_a_icons');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (65,1,1,'icons','acp',10,95,96,'ACP_SMILIES','smilies','acl_a_icons');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (66,1,1,'inactive','acp',13,115,116,'ACP_INACTIVE_USERS','list','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (67,1,1,'jabber','acp',4,47,48,'ACP_JABBER_SETTINGS','settings','acl_a_jabber');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (68,1,1,'language','acp',29,261,262,'ACP_LANGUAGE_PACKS','lang_packs','acl_a_language');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (69,1,1,'logs','acp',25,233,234,'ACP_ADMIN_LOGS','admin','acl_a_viewlogs');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (70,1,1,'logs','acp',25,235,236,'ACP_MOD_LOGS','mod','acl_a_viewlogs');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (71,1,1,'logs','acp',25,237,238,'ACP_USERS_LOGS','users','acl_a_viewlogs');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (72,1,1,'logs','acp',25,239,240,'ACP_CRITICAL_LOGS','critical','acl_a_viewlogs');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (73,1,1,'main','acp',1,2,3,'ACP_INDEX','main','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (74,1,1,'modules','acp',30,269,270,'ACP','acp','acl_a_modules');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (75,1,1,'modules','acp',30,271,272,'UCP','ucp','acl_a_modules');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (76,1,1,'modules','acp',30,273,274,'MCP','mcp','acl_a_modules');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (77,1,1,'permission_roles','acp',19,193,194,'ACP_ADMIN_ROLES','admin_roles','acl_a_roles && acl_a_aauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (78,1,1,'permission_roles','acp',19,195,196,'ACP_USER_ROLES','user_roles','acl_a_roles && acl_a_uauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (79,1,1,'permission_roles','acp',19,197,198,'ACP_MOD_ROLES','mod_roles','acl_a_roles && acl_a_mauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (80,1,1,'permission_roles','acp',19,199,200,'ACP_FORUM_ROLES','forum_roles','acl_a_roles && acl_a_fauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (81,1,1,'permissions','acp',16,168,169,'ACP_PERMISSIONS','intro','acl_a_authusers || acl_a_authgroups || acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (82,1,0,'permissions','acp',20,203,204,'ACP_PERMISSION_TRACE','trace','acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (83,1,1,'permissions','acp',18,181,182,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (84,1,1,'permissions','acp',18,183,184,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (85,1,1,'permissions','acp',17,171,172,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (86,1,1,'permissions','acp',13,117,118,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (87,1,1,'permissions','acp',18,185,186,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (88,1,1,'permissions','acp',13,119,120,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (89,1,1,'permissions','acp',17,173,174,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (90,1,1,'permissions','acp',14,149,150,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (91,1,1,'permissions','acp',18,187,188,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (92,1,1,'permissions','acp',14,151,152,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (93,1,1,'permissions','acp',17,175,176,'ACP_ADMINISTRATORS','setting_admin_global','acl_a_aauth && (acl_a_authusers || acl_a_authgroups)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (94,1,1,'permissions','acp',17,177,178,'ACP_GLOBAL_MODERATORS','setting_mod_global','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (95,1,1,'permissions','acp',20,205,206,'ACP_VIEW_ADMIN_PERMISSIONS','view_admin_global','acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (96,1,1,'permissions','acp',20,207,208,'ACP_VIEW_USER_PERMISSIONS','view_user_global','acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (97,1,1,'permissions','acp',20,209,210,'ACP_VIEW_GLOBAL_MOD_PERMISSIONS','view_mod_global','acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (98,1,1,'permissions','acp',20,211,212,'ACP_VIEW_FORUM_MOD_PERMISSIONS','view_mod_local','acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (99,1,1,'permissions','acp',20,213,214,'ACP_VIEW_FORUM_PERMISSIONS','view_forum_local','acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (100,1,1,'php_info','acp',29,263,264,'ACP_PHP_INFO','info','acl_a_phpinfo');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (101,1,1,'profile','acp',13,121,122,'ACP_CUSTOM_PROFILE_FIELDS','profile','acl_a_profile');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (102,1,1,'prune','acp',7,69,70,'ACP_PRUNE_FORUMS','forums','acl_a_prune');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (103,1,1,'prune','acp',15,163,164,'ACP_PRUNE_USERS','users','acl_a_userdel');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (104,1,1,'ranks','acp',13,123,124,'ACP_MANAGE_RANKS','ranks','acl_a_ranks');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (105,1,1,'reasons','acp',29,265,266,'ACP_MANAGE_REASONS','main','acl_a_reasons');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (106,1,1,'search','acp',5,59,60,'ACP_SEARCH_SETTINGS','settings','acl_a_search');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (107,1,1,'search','acp',26,247,248,'ACP_SEARCH_INDEX','index','acl_a_search');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (108,1,1,'styles','acp',22,219,220,'ACP_STYLES','style','acl_a_styles');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (109,1,1,'styles','acp',23,223,224,'ACP_TEMPLATES','template','acl_a_styles');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (110,1,1,'styles','acp',23,225,226,'ACP_THEMES','theme','acl_a_styles');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (111,1,1,'styles','acp',23,227,228,'ACP_IMAGESETS','imageset','acl_a_styles');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (112,1,1,'update','acp',28,253,254,'ACP_VERSION_CHECK','version_check','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (113,1,1,'users','acp',13,113,114,'ACP_MANAGE_USERS','overview','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (114,1,0,'users','acp',13,125,126,'ACP_USER_FEEDBACK','feedback','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (115,1,0,'users','acp',13,127,128,'ACP_USER_PROFILE','profile','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (116,1,0,'users','acp',13,129,130,'ACP_USER_PREFS','prefs','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (117,1,0,'users','acp',13,131,132,'ACP_USER_AVATAR','avatar','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (118,1,0,'users','acp',13,133,134,'ACP_USER_RANK','rank','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (119,1,0,'users','acp',13,135,136,'ACP_USER_SIG','sig','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (120,1,0,'users','acp',13,137,138,'ACP_USER_GROUPS','groups','acl_a_user && acl_a_group');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (121,1,0,'users','acp',13,139,140,'ACP_USER_PERM','perm','acl_a_user && acl_a_viewauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (122,1,0,'users','acp',13,141,142,'ACP_USER_ATTACH','attach','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (123,1,1,'words','acp',10,97,98,'ACP_WORDS','words','acl_a_words');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (124,1,1,'users','acp',2,5,6,'ACP_MANAGE_USERS','overview','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (125,1,1,'groups','acp',2,7,8,'ACP_GROUPS_MANAGE','manage','acl_a_group');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (126,1,1,'forums','acp',2,9,10,'ACP_MANAGE_FORUMS','manage','acl_a_forum');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (127,1,1,'logs','acp',2,11,12,'ACP_MOD_LOGS','mod','acl_a_viewlogs');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (128,1,1,'bots','acp',2,13,14,'ACP_BOTS','bots','acl_a_bots');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (129,1,1,'php_info','acp',2,15,16,'ACP_PHP_INFO','info','acl_a_phpinfo');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (130,1,1,'permissions','acp',8,73,74,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (131,1,1,'permissions','acp',8,75,76,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (132,1,1,'permissions','acp',8,77,78,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (133,1,1,'permissions','acp',8,79,80,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (134,1,1,'','mcp',0,1,10,'MCP_MAIN','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (135,1,1,'','mcp',0,11,18,'MCP_QUEUE','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (136,1,1,'','mcp',0,19,32,'MCP_REPORTS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (137,1,1,'','mcp',0,33,38,'MCP_NOTES','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (138,1,1,'','mcp',0,39,48,'MCP_WARN','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (139,1,1,'','mcp',0,49,56,'MCP_LOGS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (140,1,1,'','mcp',0,57,64,'MCP_BAN','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (141,1,1,'ban','mcp',140,58,59,'MCP_BAN_USERNAMES','user','acl_m_ban');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (142,1,1,'ban','mcp',140,60,61,'MCP_BAN_IPS','ip','acl_m_ban');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (143,1,1,'ban','mcp',140,62,63,'MCP_BAN_EMAILS','email','acl_m_ban');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (144,1,1,'logs','mcp',139,50,51,'MCP_LOGS_FRONT','front','acl_m_ || aclf_m_');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (145,1,1,'logs','mcp',139,52,53,'MCP_LOGS_FORUM_VIEW','forum_logs','acl_m_,$id');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (146,1,1,'logs','mcp',139,54,55,'MCP_LOGS_TOPIC_VIEW','topic_logs','acl_m_,$id');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (147,1,1,'main','mcp',134,2,3,'MCP_MAIN_FRONT','front','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (148,1,1,'main','mcp',134,4,5,'MCP_MAIN_FORUM_VIEW','forum_view','acl_m_,$id');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (149,1,1,'main','mcp',134,6,7,'MCP_MAIN_TOPIC_VIEW','topic_view','acl_m_,$id');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (150,1,1,'main','mcp',134,8,9,'MCP_MAIN_POST_DETAILS','post_details','acl_m_,$id || (!$id && aclf_m_)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (151,1,1,'notes','mcp',137,34,35,'MCP_NOTES_FRONT','front','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (152,1,1,'notes','mcp',137,36,37,'MCP_NOTES_USER','user_notes','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (153,1,1,'queue','mcp',135,12,13,'MCP_QUEUE_UNAPPROVED_TOPICS','unapproved_topics','aclf_m_approve');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (154,1,1,'queue','mcp',135,14,15,'MCP_QUEUE_UNAPPROVED_POSTS','unapproved_posts','aclf_m_approve');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (155,1,1,'queue','mcp',135,16,17,'MCP_QUEUE_APPROVE_DETAILS','approve_details','acl_m_approve,$id || (!$id && aclf_m_approve)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (156,1,1,'reports','mcp',136,20,21,'MCP_REPORTS_OPEN','reports','aclf_m_report');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (157,1,1,'reports','mcp',136,22,23,'MCP_REPORTS_CLOSED','reports_closed','aclf_m_report');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (158,1,1,'reports','mcp',136,24,25,'MCP_REPORT_DETAILS','report_details','acl_m_report,$id || (!$id && aclf_m_report)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (159,1,1,'warn','mcp',138,40,41,'MCP_WARN_FRONT','front','aclf_m_warn');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (160,1,1,'warn','mcp',138,42,43,'MCP_WARN_LIST','list','aclf_m_warn');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (161,1,1,'warn','mcp',138,44,45,'MCP_WARN_USER','warn_user','aclf_m_warn');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (162,1,1,'warn','mcp',138,46,47,'MCP_WARN_POST','warn_post','acl_m_warn,$id || (!$id && aclf_m_warn)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (163,1,1,'','ucp',0,1,12,'UCP_MAIN','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (164,1,1,'','ucp',0,13,22,'UCP_PROFILE','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (165,1,1,'','ucp',0,23,30,'UCP_PREFS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (166,1,1,'','ucp',0,31,42,'UCP_PM','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (167,1,1,'','ucp',0,43,48,'UCP_USERGROUPS','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (168,1,1,'','ucp',0,49,54,'UCP_ZEBRA','','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (169,1,1,'attachments','ucp',163,10,11,'UCP_MAIN_ATTACHMENTS','attachments','acl_u_attach');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (170,1,1,'groups','ucp',167,44,45,'UCP_USERGROUPS_MEMBER','membership','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (171,1,1,'groups','ucp',167,46,47,'UCP_USERGROUPS_MANAGE','manage','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (172,1,1,'main','ucp',163,2,3,'UCP_MAIN_FRONT','front','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (173,1,1,'main','ucp',163,4,5,'UCP_MAIN_SUBSCRIBED','subscribed','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (174,1,1,'main','ucp',163,6,7,'UCP_MAIN_BOOKMARKS','bookmarks','cfg_allow_bookmarks');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (175,1,1,'main','ucp',163,8,9,'UCP_MAIN_DRAFTS','drafts','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (176,1,0,'pm','ucp',166,32,33,'UCP_PM_VIEW','view','cfg_allow_privmsg');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (177,1,1,'pm','ucp',166,34,35,'UCP_PM_COMPOSE','compose','cfg_allow_privmsg');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (178,1,1,'pm','ucp',166,36,37,'UCP_PM_DRAFTS','drafts','cfg_allow_privmsg');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (179,1,1,'pm','ucp',166,38,39,'UCP_PM_OPTIONS','options','cfg_allow_privmsg');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (180,1,0,'pm','ucp',166,40,41,'UCP_PM_POPUP_TITLE','popup','cfg_allow_privmsg');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (181,1,1,'prefs','ucp',165,24,25,'UCP_PREFS_PERSONAL','personal','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (182,1,1,'prefs','ucp',165,26,27,'UCP_PREFS_POST','post','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (183,1,1,'prefs','ucp',165,28,29,'UCP_PREFS_VIEW','view','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (184,1,1,'profile','ucp',164,14,15,'UCP_PROFILE_PROFILE_INFO','profile_info','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (185,1,1,'profile','ucp',164,16,17,'UCP_PROFILE_SIGNATURE','signature','acl_u_sig');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (186,1,1,'profile','ucp',164,18,19,'UCP_PROFILE_AVATAR','avatar','cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (187,1,1,'profile','ucp',164,20,21,'UCP_PROFILE_REG_DETAILS','reg_details','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (188,1,1,'zebra','ucp',168,50,51,'UCP_ZEBRA_FRIENDS','friends','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (189,1,1,'zebra','ucp',168,52,53,'UCP_ZEBRA_FOES','foes','');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (190,1,1,'board','acp',3,39,40,'ACP_FEED_SETTINGS','feed','acl_a_board');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (191,1,0,'users','acp',13,143,144,'ACP_USER_WARNINGS','warnings','acl_a_user');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (192,1,1,'send_statistics','acp',5,61,62,'ACP_SEND_STATISTICS','send_statistics','acl_a_server');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (193,1,1,'permissions','acp',8,81,82,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (194,1,1,'permissions','acp',18,189,190,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (195,1,1,'pm_reports','mcp',136,26,27,'MCP_PM_REPORTS_OPEN','pm_reports','aclf_m_report');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (196,1,1,'pm_reports','mcp',136,28,29,'MCP_PM_REPORTS_CLOSED','pm_reports_closed','aclf_m_report');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (197,1,1,'pm_reports','mcp',136,30,31,'MCP_PM_REPORT_DETAILS','pm_report_details','aclf_m_report');
++INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (198,1,1,'board','acp',10,91,92,'ACP_POST_SETTINGS','post','acl_a_board');
++INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, icon_id, poster_ip, post_time, post_approved, post_reported, enable_bbcode, enable_smilies, enable_magic_url, enable_sig, post_username, post_subject, post_text, post_checksum, post_attachment, bbcode_bitfield, bbcode_uid, post_postcount, post_edit_time, post_edit_reason, post_edit_user, post_edit_count, post_edit_locked) VALUES (1,1,2,2,0,'127.0.0.1',972086460,1,0,1,1,1,1,'','Test Toptic','First Post!','5dd683b17f641daf84c040bfefc58ce9',0,'','',1,0,'',0,0,0);
++INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES (1,'Site Admin',0,1,'');
++INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (1,'warez','{L_REPORT_WAREZ}',1);
++INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (2,'spam','{L_REPORT_SPAM}',2);
++INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (3,'off_topic','{L_REPORT_OFF_TOPIC}',3);
++INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (4,'other','{L_REPORT_OTHER}',4);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (1,':D',':-D','icon_e_biggrin.gif',15,17,1,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (2,':-D',':-D','icon_e_biggrin.gif',15,17,2,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (3,':grin:',':-D','icon_e_biggrin.gif',15,17,3,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (4,':)',':-)','icon_e_smile.gif',15,17,4,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (5,':-)',':-)','icon_e_smile.gif',15,17,5,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (6,':smile:',':-)','icon_e_smile.gif',15,17,6,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (7,';)',';-)','icon_e_wink.gif',15,17,7,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (8,';-)',';-)','icon_e_wink.gif',15,17,8,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (9,':wink:',';-)','icon_e_wink.gif',15,17,9,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (10,':(',':-(','icon_e_sad.gif',15,17,10,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (11,':-(',':-(','icon_e_sad.gif',15,17,11,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (12,':sad:',':-(','icon_e_sad.gif',15,17,12,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (13,':o',':-O','icon_e_surprised.gif',15,19,13,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (14,':-o',':-O','icon_e_surprised.gif',15,19,14,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (15,':eek:',':-O','icon_e_surprised.gif',15,19,15,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (16,':shock:',':-O','icon_eek.gif',15,15,16,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (17,':?',':-/','icon_e_confused.gif',15,17,17,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (18,':-?',':-/','icon_e_confused.gif',15,17,18,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (19,':???:',':-/','icon_e_confused.gif',15,17,19,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (20,'8-)','8-)','icon_cool.gif',15,15,20,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (21,':cool:','8-)','icon_cool.gif',15,15,21,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (22,':lol:',':-D','icon_lol.gif',15,15,22,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (23,':x','>:-(','icon_mad.gif',15,15,23,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (24,':-x','>:-(','icon_mad.gif',15,15,24,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (25,':mad:','>:-(','icon_mad.gif',15,15,25,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (26,':P',':-P','icon_razz.gif',15,15,26,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (27,':-P',':-P','icon_razz.gif',15,15,27,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (28,':razz:',':-P','icon_razz.gif',15,15,28,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (29,':oops:',':-|','icon_redface.gif',15,15,29,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (30,':cry:',':~(','icon_cry.gif',15,15,30,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (31,':evil:','>:-)','icon_evil.gif',15,15,31,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (32,':twisted:','>:->','icon_twisted.gif',15,15,32,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (33,':roll:',':-/','icon_rolleyes.gif',15,15,33,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (34,':!:','!','icon_exclaim.gif',15,15,34,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (35,':?:','?','icon_question.gif',15,15,35,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (36,':idea:','(!)','icon_idea.gif',15,15,36,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (37,':arrow:','->','icon_arrow.gif',15,15,37,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (38,':|',':-|','icon_neutral.gif',15,15,38,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (39,':-|',':-|','icon_neutral.gif',15,15,39,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (40,':mrgreen:','8-D','icon_mrgreen.gif',15,15,40,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (41,':geek:','8-{','icon_e_geek.gif',17,17,41,1);
++INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (42,':ugeek:','88-{','icon_e_ugeek.gif',19,18,42,1);
++INSERT INTO phpbb_styles (style_id, style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES (1,'prosilver','© phpBB Group',1,1,1,1);
++INSERT INTO phpbb_styles_imageset (imageset_id, imageset_name, imageset_copyright, imageset_path) VALUES (1,'prosilver','© phpBB Group','prosilver');
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (1,'site_logo','site_logo.gif','',52,139,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (2,'forum_link','forum_link.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (3,'forum_read','forum_read.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (4,'forum_read_locked','forum_read_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (5,'forum_read_subforum','forum_read_subforum.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (6,'forum_unread','forum_unread.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (7,'forum_unread_locked','forum_unread_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (8,'forum_unread_subforum','forum_unread_subforum.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (9,'topic_moved','topic_moved.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (10,'topic_read','topic_read.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (11,'topic_read_mine','topic_read_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (12,'topic_read_hot','topic_read_hot.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (13,'topic_read_hot_mine','topic_read_hot_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (14,'topic_read_locked','topic_read_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (15,'topic_read_locked_mine','topic_read_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (16,'topic_unread','topic_unread.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (17,'topic_unread_mine','topic_unread_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (18,'topic_unread_hot','topic_unread_hot.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (19,'topic_unread_hot_mine','topic_unread_hot_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (20,'topic_unread_locked','topic_unread_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (21,'topic_unread_locked_mine','topic_unread_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (22,'sticky_read','sticky_read.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (23,'sticky_read_mine','sticky_read_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (24,'sticky_read_locked','sticky_read_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (25,'sticky_read_locked_mine','sticky_read_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (26,'sticky_unread','sticky_unread.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (27,'sticky_unread_mine','sticky_unread_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (28,'sticky_unread_locked','sticky_unread_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (29,'sticky_unread_locked_mine','sticky_unread_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (30,'announce_read','announce_read.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (31,'announce_read_mine','announce_read_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (32,'announce_read_locked','announce_read_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (33,'announce_read_locked_mine','announce_read_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (34,'announce_unread','announce_unread.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (35,'announce_unread_mine','announce_unread_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (36,'announce_unread_locked','announce_unread_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (37,'announce_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (38,'global_read','announce_read.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (39,'global_read_mine','announce_read_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (40,'global_read_locked','announce_read_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (41,'global_read_locked_mine','announce_read_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (42,'global_unread','announce_unread.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (43,'global_unread_mine','announce_unread_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (44,'global_unread_locked','announce_unread_locked.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (45,'global_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (46,'pm_read','topic_read.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (47,'pm_unread','topic_unread.gif','',27,27,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (48,'icon_back_top','icon_back_top.gif','',11,11,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (49,'icon_contact_aim','icon_contact_aim.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (50,'icon_contact_email','icon_contact_email.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (51,'icon_contact_icq','icon_contact_icq.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (52,'icon_contact_jabber','icon_contact_jabber.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (53,'icon_contact_msnm','icon_contact_msnm.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (54,'icon_contact_www','icon_contact_www.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (55,'icon_contact_yahoo','icon_contact_yahoo.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (56,'icon_post_delete','icon_post_delete.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (57,'icon_post_info','icon_post_info.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (58,'icon_post_report','icon_post_report.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (59,'icon_post_target','icon_post_target.gif','',9,11,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (60,'icon_post_target_unread','icon_post_target_unread.gif','',9,11,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (61,'icon_topic_attach','icon_topic_attach.gif','',10,7,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (62,'icon_topic_latest','icon_topic_latest.gif','',9,11,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (63,'icon_topic_newest','icon_topic_newest.gif','',9,11,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (64,'icon_topic_reported','icon_topic_reported.gif','',14,16,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (65,'icon_topic_unapproved','icon_topic_unapproved.gif','',14,16,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (66,'icon_user_warn','icon_user_warn.gif','',20,20,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (67,'subforum_read','subforum_read.gif','',9,11,1);
++INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (68,'subforum_unread','subforum_unread.gif','',9,11,1);
++INSERT INTO phpbb_styles_template (template_id, template_name, template_copyright, template_path, bbcode_bitfield, template_storedb, template_inherits_id, template_inherit_path) VALUES (1,'prosilver','© phpBB Group','prosilver','lNg=',0,0,'');
++INSERT INTO phpbb_styles_theme (theme_id, theme_name, theme_copyright, theme_path, theme_storedb, theme_mtime, theme_data) VALUES (1,'prosilver','© phpBB Group','prosilver',1,0,'');
++INSERT INTO phpbb_topics (topic_id, forum_id, icon_id, topic_attachment, topic_approved, topic_reported, topic_title, topic_poster, topic_time, topic_time_limit, topic_views, topic_replies, topic_replies_real, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, topic_moved_id, topic_bumped, topic_bumper, poll_title, poll_start, poll_length, poll_max_options, poll_last_vote, poll_vote_change) VALUES (1,2,0,0,1,0,'Test Topic',2,972086460,0,0,0,0,0,0,1,'Admin','AA0000',1,2,'Admin','AA0000','Test Topic',972086460,972086460,0,0,0,'',0,0,1,0,0);
++INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2,1,1);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (1,1,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (2,2,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (4,2,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (5,2,1,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,3,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,4,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,5,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,6,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,7,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,8,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,9,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,10,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,11,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,12,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,13,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,14,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,15,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,16,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,17,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,18,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,19,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,20,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,21,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,22,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,23,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,24,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,25,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,26,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,28,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,31,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,32,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,34,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,35,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,36,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,37,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,38,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,39,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,41,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,42,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,43,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,44,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,45,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,46,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,48,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,49,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,50,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,51,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,52,0,0);
++INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,53,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (1,2,1,'',0,'',1170765411,'Anonymous','anonymous','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'d M Y H:i a',1,0,'',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (2,3,5,'',0,'',1170765411,'admin','admin','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,1,'en',0.00,0,'d M Y H:i a',1,1,'AA0000',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,1,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (3,2,6,'',0,'',1170765411,'AdsBot [Google]','adsbot [google]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (4,2,6,'',0,'',1170765411,'Alexa [Bot]','alexa [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (5,2,6,'',0,'',1170765411,'Alta Vista [Bot]','alta vista [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (6,2,6,'',0,'',1170765411,'Ask Jeeves [Bot]','ask jeeves [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (7,2,6,'',0,'',1170765411,'Baidu [Spider]','baidu [spider]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (8,2,6,'',0,'',1170765411,'Exabot [Bot]','exabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (9,2,6,'',0,'',1170765411,'FAST Enterprise [Crawler]','fast enterprise [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (10,2,6,'',0,'',1170765411,'FAST WebCrawler [Crawler]','fast webcrawler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (11,2,6,'',0,'',1170765411,'Francis [Bot]','francis [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (12,2,6,'',0,'',1170765411,'Gigabot [Bot]','gigabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (13,2,6,'',0,'',1170765411,'Google Adsense [Bot]','google adsense [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (14,2,6,'',0,'',1170765411,'Google Desktop','google desktop','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (15,2,6,'',0,'',1170765411,'Google Feedfetcher','google feedfetcher','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (16,2,6,'',0,'',1170765411,'Google [Bot]','google [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (17,2,6,'',0,'',1170765411,'Heise IT-Markt [Crawler]','heise it-markt [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (18,2,6,'',0,'',1170765411,'Heritrix [Crawler]','heritrix [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (19,2,6,'',0,'',1170765411,'IBM Research [Bot]','ibm research [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (20,2,6,'',0,'',1170765411,'ICCrawler - ICjobs','iccrawler - icjobs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (21,2,6,'',0,'',1170765411,'ichiro [Crawler]','ichiro [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (22,2,6,'',0,'',1170765411,'Majestic-12 [Bot]','majestic-12 [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (23,2,6,'',0,'',1170765411,'Metager [Bot]','metager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (24,2,6,'',0,'',1170765411,'MSN NewsBlogs','msn newsblogs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (25,2,6,'',0,'',1170765411,'MSN [Bot]','msn [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (26,2,6,'',0,'',1170765411,'MSNbot Media','msnbot media','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (28,2,6,'',0,'',1170765411,'Nutch [Bot]','nutch [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (31,2,6,'',0,'',1170765411,'Online link [Validator]','online link [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (32,2,6,'',0,'',1170765411,'psbot [Picsearch]','psbot [picsearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (34,2,6,'',0,'',1170765411,'Sensis [Crawler]','sensis [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (35,2,6,'',0,'',1170765411,'SEO Crawler','seo crawler','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (36,2,6,'',0,'',1170765411,'Seoma [Crawler]','seoma [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (37,2,6,'',0,'',1170765411,'SEOSearch [Crawler]','seosearch [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (38,2,6,'',0,'',1170765411,'Snappy [Bot]','snappy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (39,2,6,'',0,'',1170765411,'Steeler [Crawler]','steeler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (41,2,6,'',0,'',1170765411,'Telekom [Bot]','telekom [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (42,2,6,'',0,'',1170765411,'TurnitinBot [Bot]','turnitinbot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (43,2,6,'',0,'',1170765411,'Voyager [Bot]','voyager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (44,2,6,'',0,'',1170765411,'W3 [Sitesearch]','w3 [sitesearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (45,2,6,'',0,'',1170765411,'W3C [Linkcheck]','w3c [linkcheck]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (46,2,6,'',0,'',1170765411,'W3C [Validator]','w3c [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (48,2,6,'',0,'',1170765411,'Yacy [Bot]','yacy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (49,2,6,'',0,'',1170765411,'Yahoo MMCrawler [Bot]','yahoo mmcrawler [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (50,2,6,'',0,'',1170765411,'Yahoo Slurp [Bot]','yahoo slurp [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (51,2,6,'',0,'',1170765411,'Yahoo [Bot]','yahoo [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (52,2,6,'',0,'',1170765411,'YahooSeeker [Bot]','yahooseeker [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
++INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (53,2,6,'',0,'',1321022106,'Bing [Bot]','bing [bot]','',1321022106,0,'',0,'',0,1321022106,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','e528469e2ef47bee',0,0,0);
diff --git a/debian/patches/011_fix_version_display.patch b/debian/patches/011_fix_version_display.patch
new file mode 100644
index 0000000..00ff4fd
--- /dev/null
+++ b/debian/patches/011_fix_version_display.patch
@@ -0,0 +1,72 @@
+Author: Jeroen van Wolffelaar
+Description: Overrides the version display, such that it is clear a Debian package is used.
+Last-Update: 2013-09-28
+--- a/adm/index.php
++++ b/adm/index.php
+@@ -200,7 +200,7 @@
+ 'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '',
+ 'S_COPYRIGHT_HTML' => $copyright_html,
+ 'CREDIT_LINE' => $user->lang('POWERED_BY', 'phpBB ® Forum Software © phpBB Group'),
+- 'VERSION' => $config['version'])
++ 'VERSION' => PHPBB_VERSION)
+ );
+
+ $template->display('body');
+--- a/common.php
++++ b/common.php
+@@ -16,6 +16,8 @@
+ exit;
+ }
+
++define('PHPBB_VERSION', '@VERSION@');
++
+ require($phpbb_root_path . 'includes/startup.' . $phpEx);
+
+ if (file_exists($phpbb_root_path . 'config.' . $phpEx))
+--- a/includes/acp/acp_styles.php
++++ b/includes/acp/acp_styles.php
+@@ -2034,7 +2034,7 @@
+
+ if ($mode == 'style')
+ {
+- $style_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['style_name'], $style_row['style_copyright'], $config['version']), $this->style_cfg);
++ $style_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['style_name'], $style_row['style_copyright'], PHPBB_VERSION), $this->style_cfg);
+
+ $style_cfg .= (!$inc_template) ? "\nrequired_template = {$style_row['template_name']}" : '';
+ $style_cfg .= (!$inc_theme) ? "\nrequired_theme = {$style_row['theme_name']}" : '';
+@@ -2065,7 +2065,7 @@
+ $db->sql_freeresult($result);
+ }
+
+- $template_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}', '{INHERIT_FROM}'), array($mode, $style_row['template_name'], $style_row['template_copyright'], $config['version'], $use_template_name), $this->template_cfg);
++ $template_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}', '{INHERIT_FROM}'), array($mode, $style_row['template_name'], $style_row['template_copyright'], PHPBB_VERSION, $use_template_name), $this->template_cfg);
+
+ $template_cfg .= "\n\nbbcode_bitfield = {$style_row['bbcode_bitfield']}";
+
+@@ -2106,7 +2106,7 @@
+ // Export theme core code
+ if ($mode == 'theme' || $inc_theme)
+ {
+- $theme_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['theme_name'], $style_row['theme_copyright'], $config['version']), $this->theme_cfg);
++ $theme_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['theme_name'], $style_row['theme_copyright'], PHPBB_VERSION), $this->theme_cfg);
+
+ // Read old cfg file
+ $items = $cache->obtain_cfg_items($style_row);
+@@ -2145,7 +2145,7 @@
+ // Export imageset core code
+ if ($mode == 'imageset' || $inc_imageset)
+ {
+- $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], $config['version']), $this->imageset_cfg);
++ $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], PHPBB_VERSION), $this->imageset_cfg);
+
+ $imageset_main = array();
+
+@@ -2214,7 +2214,7 @@
+
+ foreach ($imageset_lang as $lang => $imageset_localized)
+ {
+- $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], $config['version']), $this->imageset_cfg);
++ $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], PHPBB_VERSION), $this->imageset_cfg);
+
+ foreach ($this->imageset_keys as $topic => $key_array)
+ {
diff --git a/debian/patches/012_disable_version_check.patch b/debian/patches/012_disable_version_check.patch
new file mode 100644
index 0000000..a08c8c6
--- /dev/null
+++ b/debian/patches/012_disable_version_check.patch
@@ -0,0 +1,64 @@
+Author: Jeroen van Wolffelaar
+Description: Disables upstream version check.
+Last-Update: 2013-09-28
+--- a/includes/acp/acp_update.php
++++ b/includes/acp/acp_update.php
+@@ -32,7 +32,7 @@
+
+ $this->tpl_name = 'acp_update';
+ $this->page_title = 'ACP_VERSION_CHECK';
+-
++/*
+ // Get current and latest version
+ $errstr = '';
+ $errno = 0;
+@@ -68,20 +68,20 @@
+ $db->sql_freeresult($result);
+
+ $current_version = (!empty($version_update_from)) ? $version_update_from : $config['version'];
+-
++*/
+ $template->assign_vars(array(
+- 'S_UP_TO_DATE' => phpbb_version_compare($latest_version, $config['version'], '<='),
+- 'S_UP_TO_DATE_AUTO' => phpbb_version_compare($latest_version, $current_version, '<='),
++ 'S_UP_TO_DATE' => true,
++ 'S_UP_TO_DATE_AUTO' => true,
+ 'S_VERSION_CHECK' => true,
+ 'U_ACTION' => $this->u_action,
+ 'U_VERSIONCHECK_FORCE' => append_sid($this->u_action . '&versioncheck_force=1'),
+
+- 'LATEST_VERSION' => $latest_version,
+- 'CURRENT_VERSION' => $config['version'],
+- 'AUTO_VERSION' => $version_update_from,
++ 'LATEST_VERSION' => 'See Debian Packages ',
++ 'CURRENT_VERSION' => PHPBB_VERSION,
++ 'AUTO_VERSION' => 'See Debian Packages ',
+ 'NEXT_FEATURE_VERSION' => $next_feature_version,
+
+- 'UPDATE_INSTRUCTIONS' => sprintf($user->lang['UPDATE_INSTRUCTIONS'], $announcement_url, $update_link),
++ 'UPDATE_INSTRUCTIONS' => 'You are using the Debian package of phpBB. Check packages.debian.org for updates.',
+ 'UPGRADE_INSTRUCTIONS' => $next_feature_version ? $user->lang('UPGRADE_INSTRUCTIONS', $next_feature_version, $next_feature_announcement_url) : false,
+ ));
+ }
+--- a/includes/acp/acp_main.php
++++ b/includes/acp/acp_main.php
+@@ -405,7 +405,7 @@
+ 'L_PHP_VERSION_OLD' => sprintf($user->lang['PHP_VERSION_OLD'], '', ' '),
+ ));
+ }
+-
++/*
+ $latest_version_info = false;
+ if (($latest_version_info = obtain_latest_version_info(request_var('versioncheck_force', false))) === false)
+ {
+@@ -419,6 +419,10 @@
+ 'S_VERSION_UP_TO_DATE' => phpbb_version_compare(trim($latest_version_info[0]), $config['version'], '<='),
+ ));
+ }
++*/
++ $template->assign_vars(array(
++ 'S_VERSION_UP_TO_DATE' => true,
++ ));
+
+ // Get forum statistics
+ $total_posts = $config['num_posts'];
diff --git a/debian/patches/021_multisite.patch b/debian/patches/021_multisite.patch
new file mode 100644
index 0000000..cff5bc3
--- /dev/null
+++ b/debian/patches/021_multisite.patch
@@ -0,0 +1,474 @@
+Author: David Prévot
+Reviewed-by: J.M. Roth
+Description: Makes caches, file uploads, etc. work when multiple forums use the same codebase.
+Bug-Debian: http://bugs.debian.org/437836
+Last-Update: 2013-09-28
+--- a/cron.php
++++ b/cron.php
+@@ -72,7 +72,9 @@
+ {
+ case 'queue':
+
+- if (time() - $config['queue_interval'] <= $config['last_queue_run'] || !file_exists($phpbb_root_path . 'cache/queue.' . $phpEx))
++ global $url_forum;
++
++ if (time() - $config['queue_interval'] <= $config['last_queue_run'] || !file_exists($phpbb_root_path . 'cache/' . $url_forum . '/queue.' . $phpEx))
+ {
+ break;
+ }
+--- a/includes/acm/acm_file.php
++++ b/includes/acm/acm_file.php
+@@ -35,8 +35,16 @@
+ */
+ function acm()
+ {
+- global $phpbb_root_path;
+- $this->cache_dir = $phpbb_root_path . 'cache/';
++ global $phpbb_root_path, $url_forum;
++
++ $cache = $phpbb_root_path . 'cache/' . $url_forum . '/';
++
++ if (!file_exists($cache)) {
++ mkdir($cache);
++ }
++ @chmod($cache, 0750);
++
++ $this->cache_dir = $cache;
+ }
+
+ /**
+--- a/includes/acp/acp_database.php
++++ b/includes/acp/acp_database.php
+@@ -27,7 +27,11 @@
+ function main($id, $mode)
+ {
+ global $cache, $db, $user, $auth, $template, $table_prefix;
+- global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx;
++ global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx, $url_forum;
++
++ if (!file_exists("$phpbb_root_path/store/$url_forum")) {
++ mkdir("$phpbb_root_path/store/$url_forum", 0750);
++ }
+
+ if (!class_exists('phpbb_db_tools'))
+ {
+@@ -234,7 +238,7 @@
+ trigger_error($user->lang['BACKUP_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING);
+ }
+
+- $file_name = $phpbb_root_path . 'store/' . $matches[0];
++ $file_name = $phpbb_root_path . 'store/'. $url_forum. '/' . $matches[0];
+
+ if (!file_exists($file_name) || !is_readable($file_name))
+ {
+@@ -434,7 +438,7 @@
+ $methods[] = $type;
+ }
+
+- $dir = $phpbb_root_path . 'store/';
++ $dir = $phpbb_root_path . 'store/'. $url_forum. '/';
+ $dh = @opendir($dir);
+
+ $backup_files = array();
+@@ -553,8 +557,8 @@
+
+ if ($store == true)
+ {
+- global $phpbb_root_path;
+- $file = $phpbb_root_path . 'store/' . $filename . $ext;
++ global $phpbb_root_path, $url_forum;
++ $file = $phpbb_root_path . 'store/'. $url_forum. '/' . $filename . $ext;
+
+ $this->fp = $open($file, 'w');
+
+--- a/includes/acp/acp_language.php
++++ b/includes/acp/acp_language.php
+@@ -34,6 +34,7 @@
+ global $config, $db, $user, $auth, $template, $cache;
+ global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix;
+ global $safe_mode, $file_uploads;
++ global $url_forum;
+
+ include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);
+
+@@ -269,15 +270,15 @@
+
+ foreach ($mkdir_ary as $dir)
+ {
+- $dir = $phpbb_root_path . 'store/' . $dir;
++ $dir = $phpbb_root_path . 'store/' . $url_forum . '/' . $dir;
+
+ if (!is_dir($dir))
+ {
+- if (!@mkdir($dir, 0777))
++ if (!@mkdir($dir, 0777, true))
+ {
+ trigger_error("Could not create directory $dir", E_USER_ERROR);
+ }
+- @chmod($dir, 0777);
++ @chmod($dir, 0750);
+ }
+ }
+ }
+@@ -398,7 +399,7 @@
+ }
+
+ $transfer->rename($lang_path . $file, $lang_path . $file . '.bak');
+- $result = $transfer->copy_file('store/' . $lang_path . $file, $lang_path . $file);
++ $result = $transfer->copy_file('store/' . $url_forum . '/' . $lang_path . $file, $lang_path . $file);
+
+ if ($result === false)
+ {
+@@ -412,9 +413,9 @@
+ $transfer->close_session();
+
+ // Remove from storage folder
+- if (file_exists($phpbb_root_path . 'store/' . $lang_path . $file))
++ if (file_exists($phpbb_root_path . 'store/' . $url_forum . '/' . $lang_path . $file))
+ {
+- @unlink($phpbb_root_path . 'store/' . $lang_path . $file);
++ @unlink($phpbb_root_path . 'store/' . $url_forum . '/' . $lang_path . $file);
+ }
+
+ add_log('admin', 'LOG_LANGUAGE_FILE_REPLACED', $file);
+@@ -1016,13 +1017,18 @@
+
+ include_once($phpbb_root_path . 'includes/functions_compress.' . $phpEx);
+
++ // create subdir in store before writing to it
++ if (!@mkdir($phpbb_root_path . 'store/' . $url_forum, 0750, true))
++ {
++ trigger_error("Could not create directory store/$url_forum", E_USER_ERROR);
++ }
+ if ($use_method == '.zip')
+ {
+- $compress = new compress_zip('w', $phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method);
++ $compress = new compress_zip('w', $phpbb_root_path . 'store/' . $url_forum . '/' . 'lang_' . $row['lang_iso'] . $use_method);
+ }
+ else
+ {
+- $compress = new compress_tar('w', $phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method, $use_method);
++ $compress = new compress_tar('w', $phpbb_root_path . 'store/' . $url_forum . '/' . 'lang_' . $row['lang_iso'] . $use_method, $use_method);
+ }
+
+ // Get email templates
+@@ -1075,7 +1081,7 @@
+ $compress->close();
+
+ $compress->download('lang_' . $row['lang_iso']);
+- @unlink($phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method);
++ @unlink($phpbb_root_path . 'store/' . $url_forum . '/' . 'lang_' . $row['lang_iso'] . $use_method);
+
+ exit;
+
+@@ -1232,13 +1238,13 @@
+ */
+ function get_filename($lang_iso, $directory, $filename, $check_store = false, $only_return_filename = false)
+ {
+- global $phpbb_root_path, $safe_mode;
++ global $phpbb_root_path, $safe_mode, $url_forum;
+
+ $check_filename = "language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename;
+
+ if ($check_store)
+ {
+- $check_store_filename = ($safe_mode) ? "store/langfile_{$lang_iso}" . (($directory) ? '_' . $directory : '') . "_{$filename}" : "store/language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename;
++ $check_store_filename = ($safe_mode) ? "store/$url_forum/langfile_{$lang_iso}" . (($directory) ? '_' . $directory : '') . "_{$filename}" : "store/$url_forum/language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename;
+
+ if (!$only_return_filename && file_exists($phpbb_root_path . $check_store_filename))
+ {
+--- a/includes/acp/acp_styles.php
++++ b/includes/acp/acp_styles.php
+@@ -953,7 +953,7 @@
+ */
+ function template_cache($template_id)
+ {
+- global $phpbb_root_path, $phpEx, $config, $db, $cache, $user, $template;
++ global $phpbb_root_path, $phpEx, $config, $db, $cache, $user, $template, $url_forum;
+
+ $source = str_replace('/', '.', request_var('source', ''));
+ $file_ary = array_diff(request_var('delete', array('')), array(''));
+@@ -983,7 +983,7 @@
+ // Someone wants to see the cached source ... so we'll highlight it,
+ // add line numbers and indent it appropriately. This could be nasty
+ // on larger source files ...
+- if ($source && file_exists("{$phpbb_root_path}cache/{$cache_prefix}_$source.html.$phpEx"))
++ if ($source && file_exists("{$phpbb_root_path}cache/$url_forum/{$cache_prefix}_$source.html.$phpEx"))
+ {
+ adm_page_header($user->lang['TEMPLATE_CACHE']);
+
+@@ -995,7 +995,7 @@
+ 'FILENAME' => str_replace('.', '/', $source) . '.html')
+ );
+
+- $code = str_replace(array("\r\n", "\r"), array("\n", "\n"), file_get_contents("{$phpbb_root_path}cache/{$cache_prefix}_$source.html.$phpEx"));
++ $code = str_replace(array("\r\n", "\r"), array("\n", "\n"), file_get_contents("{$phpbb_root_path}cache/$url_forum/{$cache_prefix}_$source.html.$phpEx"));
+
+ $conf = array('highlight.bg', 'highlight.comment', 'highlight.default', 'highlight.html', 'highlight.keyword', 'highlight.string');
+ foreach ($conf as $ini_var)
+@@ -1070,7 +1070,7 @@
+
+ $filename = "{$cache_prefix}_$file.html.$phpEx";
+
+- if (!file_exists("{$phpbb_root_path}cache/$filename"))
++ if (!file_exists("{$phpbb_root_path}cache/$url_forum/$filename"))
+ {
+ continue;
+ }
+@@ -1107,10 +1107,10 @@
+ $template->assign_block_vars('file', array(
+ 'U_VIEWSOURCE' => $this->u_action . "&action=cache&id=$template_id&source=$file",
+
+- 'CACHED' => $user->format_date(filemtime("{$phpbb_root_path}cache/$filename")),
++ 'CACHED' => $user->format_date(filemtime("{$phpbb_root_path}cache/$url_forum/$filename")),
+ 'FILENAME' => $file,
+ 'FILENAME_PATH' => $file_tpl,
+- 'FILESIZE' => get_formatted_filesize(filesize("{$phpbb_root_path}cache/$filename")),
++ 'FILESIZE' => get_formatted_filesize(filesize("{$phpbb_root_path}cache/$url_forum/$filename")),
+ 'MODIFIED' => $user->format_date((!$template_row['template_storedb']) ? filemtime($file_tpl) : $filemtime[$file . '.html']))
+ );
+ }
+@@ -1926,7 +1926,7 @@
+ */
+ function export($mode, $style_id)
+ {
+- global $db, $template, $user, $phpbb_root_path, $cache, $phpEx, $config;
++ global $db, $template, $user, $phpbb_root_path, $cache, $phpEx, $config, $url_forum;
+
+ $update = (isset($_POST['update'])) ? true : false;
+
+@@ -2271,13 +2271,17 @@
+ $path = $style_row[$mode . '_path'];
+ }
+
++ if (!file_exists("$phpbb_root_path/store/$url_forum")) {
++ mkdir("$phpbb_root_path/store/$url_forum", 0750);
++ }
++
+ if ($format == 'zip')
+ {
+- $compress = new compress_zip('w', $phpbb_root_path . "store/$path$ext");
++ $compress = new compress_zip('w', $phpbb_root_path . "store/$url_forum/$path$ext");
+ }
+ else
+ {
+- $compress = new compress_tar('w', $phpbb_root_path . "store/$path$ext", $ext);
++ $compress = new compress_tar('w', $phpbb_root_path . "store/$url_forum/$path$ext", $ext);
+ }
+
+ if (sizeof($files))
+@@ -2303,11 +2307,11 @@
+ if (!$store)
+ {
+ $compress->download($path);
+- @unlink("{$phpbb_root_path}store/$path$ext");
++ @unlink("{$phpbb_root_path}store/$url_forum/$path$ext");
+ exit;
+ }
+
+- trigger_error(sprintf($user->lang[$l_prefix . '_EXPORTED'], "store/$path$ext") . adm_back_link($this->u_action));
++ trigger_error(sprintf($user->lang[$l_prefix . '_EXPORTED'], "store/$url_forum/$path$ext") . adm_back_link($this->u_action));
+ }
+ }
+
+@@ -2835,11 +2839,11 @@
+ */
+ function template_cache_filelist($template_path)
+ {
+- global $phpbb_root_path, $phpEx, $user;
++ global $phpbb_root_path, $phpEx, $user, $url_forum;
+
+ $cache_prefix = 'tpl_' . str_replace('_', '-', $template_path);
+
+- if (!($dp = @opendir("{$phpbb_root_path}cache")))
++ if (!($dp = @opendir("{$phpbb_root_path}cache/$url_forum")))
+ {
+ trigger_error($user->lang['TEMPLATE_ERR_CACHE_READ'] . adm_back_link($this->u_action), E_USER_WARNING);
+ }
+@@ -2852,7 +2856,7 @@
+ continue;
+ }
+
+- if (is_file($phpbb_root_path . 'cache/' . $file) && (strpos($file, $cache_prefix) === 0))
++ if (is_file($phpbb_root_path . 'cache/' . $url_forum . '/' . $file) && (strpos($file, $cache_prefix) === 0))
+ {
+ $file_ary[] = str_replace('.', '/', preg_replace('#^' . preg_quote($cache_prefix, '#') . '_(.*?)\.html\.' . $phpEx . '$#i', '\1', $file));
+ }
+@@ -2871,7 +2875,7 @@
+ */
+ function clear_template_cache($template_row, $file_ary = false)
+ {
+- global $phpbb_root_path, $phpEx, $user;
++ global $phpbb_root_path, $phpEx, $user, $url_forum;
+
+ $cache_prefix = 'tpl_' . str_replace('_', '-', $template_row['template_path']);
+
+@@ -2889,7 +2893,7 @@
+ {
+ $file = str_replace('/', '.', $file);
+
+- $file = "{$phpbb_root_path}cache/{$cache_prefix}_$file.html.$phpEx";
++ $file = "{$phpbb_root_path}cache/$url_forum/{$cache_prefix}_$file.html.$phpEx";
+ if (file_exists($file) && is_file($file))
+ {
+ @unlink($file);
+--- a/includes/functions.php
++++ b/includes/functions.php
+@@ -4769,7 +4769,7 @@
+ */
+ function page_footer($run_cron = true)
+ {
+- global $db, $config, $template, $user, $auth, $cache, $starttime, $phpbb_root_path, $phpEx;
++ global $db, $config, $template, $user, $auth, $cache, $starttime, $phpbb_root_path, $phpEx, $url_forum;
+
+ // Output page creation time
+ if (defined('DEBUG'))
+@@ -4835,7 +4835,7 @@
+ {
+ $cron_type = '';
+
+- if ($time_now - $config['queue_interval'] > $config['last_queue_run'] && !defined('IN_ADMIN') && file_exists($phpbb_root_path . 'cache/queue.' . $phpEx))
++ if ($time_now - $config['queue_interval'] > $config['last_queue_run'] && !defined('IN_ADMIN') && file_exists($phpbb_root_path . 'cache/' . $url_forum . '/queue.' . $phpEx))
+ {
+ // Process email queue
+ $cron_type = 'queue';
+--- a/includes/functions_compress.php
++++ b/includes/functions_compress.php
+@@ -462,7 +462,7 @@
+ */
+ function download($filename, $download_name = false)
+ {
+- global $phpbb_root_path;
++ global $phpbb_root_path, $url_forum;
+
+ if ($download_name === false)
+ {
+@@ -475,7 +475,7 @@
+ header("Content-Type: $mimetype; name=\"$download_name.zip\"");
+ header("Content-disposition: attachment; filename=$download_name.zip");
+
+- $fp = @fopen("{$phpbb_root_path}store/$filename.zip", 'rb');
++ $fp = @fopen("{$phpbb_root_path}store/$url_forum/$filename.zip", 'rb');
+ if ($fp)
+ {
+ while ($buffer = fread($fp, 1024))
+@@ -694,7 +694,7 @@
+ */
+ function download($filename, $download_name = false)
+ {
+- global $phpbb_root_path;
++ global $phpbb_root_path, $url_forum;
+
+ if ($download_name === false)
+ {
+@@ -724,7 +724,7 @@
+ header("Content-Type: $mimetype; name=\"$download_name$this->type\"");
+ header("Content-disposition: attachment; filename=$download_name$this->type");
+
+- $fp = @fopen("{$phpbb_root_path}store/$filename$this->type", 'rb');
++ $fp = @fopen("{$phpbb_root_path}store/$url_forum/$filename$this->type", 'rb');
+ if ($fp)
+ {
+ while ($buffer = fread($fp, 1024))
+--- a/includes/functions_messenger.php
++++ b/includes/functions_messenger.php
+@@ -641,10 +641,10 @@
+ */
+ function queue()
+ {
+- global $phpEx, $phpbb_root_path;
++ global $phpEx, $phpbb_root_path, $url_forum;
+
+ $this->data = array();
+- $this->cache_file = "{$phpbb_root_path}cache/queue.$phpEx";
++ $this->cache_file = "{$phpbb_root_path}cache/$url_forum/queue.$phpEx";
+
+ // Determine EOL character (\n for UNIX, \r\n for Windows and \r for Mac)
+ $this->eol = (!defined('PHP_EOL')) ? (($eol = strtolower(substr(PHP_OS, 0, 3))) == 'win') ? "\r\n" : (($eol == 'mac') ? "\r" : "\n") : PHP_EOL;
+--- a/includes/functions_posting.php
++++ b/includes/functions_posting.php
+@@ -453,6 +453,7 @@
+ $no_image = ($cat_id == ATTACHMENT_CATEGORY_IMAGE) ? false : true;
+
+ $file->move_file($config['upload_path'], false, $no_image);
++ chmod($config['upload_path'].'/'.$file->realname, 0640);
+
+ if (sizeof($file->error))
+ {
+--- a/includes/functions_transfer.php
++++ b/includes/functions_transfer.php
+@@ -38,13 +38,13 @@
+ */
+ function transfer()
+ {
+- global $phpbb_root_path;
++ global $phpbb_root_path, $url_forum;
+
+ $this->file_perms = 0644;
+ $this->dir_perms = 0777;
+
+ // We use the store directory as temporary path to circumvent open basedir restrictions
+- $this->tmp_path = $phpbb_root_path . 'store/';
++ $this->tmp_path = $phpbb_root_path . 'store/'. $url_forum. '/';
+ }
+
+ /**
+--- a/includes/functions_user.php
++++ b/includes/functions_user.php
+@@ -2091,6 +2091,7 @@
+
+ // Move file and overwrite any existing image
+ $file->move_file($destination, true);
++ chmod("$destination/".$file->realname, 0640);
+
+ if (sizeof($file->error))
+ {
+--- a/includes/template.php
++++ b/includes/template.php
+@@ -51,12 +51,12 @@
+ */
+ function set_template()
+ {
+- global $phpbb_root_path, $user;
++ global $phpbb_root_path, $user, $url_forum;
+
+ if (file_exists($phpbb_root_path . 'styles/' . $user->theme['template_path'] . '/template'))
+ {
+ $this->root = $phpbb_root_path . 'styles/' . $user->theme['template_path'] . '/template';
+- $this->cachepath = $phpbb_root_path . 'cache/tpl_' . str_replace('_', '-', $user->theme['template_path']) . '_';
++ $this->cachepath = $phpbb_root_path . 'cache/' . $url_forum . '/tpl_' . str_replace('_', '-', $user->theme['template_path']) . '_';
+
+ if ($this->orig_tpl_storedb === null)
+ {
+@@ -92,7 +92,7 @@
+ */
+ function set_custom_template($template_path, $template_name, $fallback_template_path = false)
+ {
+- global $phpbb_root_path, $user;
++ global $phpbb_root_path, $user, $url_forum;
+
+ // Make sure $template_path has no ending slash
+ if (substr($template_path, -1) == '/')
+@@ -101,7 +101,7 @@
+ }
+
+ $this->root = $template_path;
+- $this->cachepath = $phpbb_root_path . 'cache/ctpl_' . str_replace('_', '-', $template_name) . '_';
++ $this->cachepath = $phpbb_root_path . 'cache/' . $url_forum . '/ctpl_' . str_replace('_', '-', $template_name) . '_';
+
+ if ($fallback_template_path !== false)
+ {
+--- a/includes/acm/acm_memory.php
++++ b/includes/acm/acm_memory.php
+@@ -36,9 +36,9 @@
+ */
+ function acm_memory()
+ {
+- global $phpbb_root_path, $dbname, $table_prefix;
++ global $phpbb_root_path, $dbname, $table_prefix, $url_forum;
+
+- $this->cache_dir = $phpbb_root_path . 'cache/';
++ $this->cache_dir = $phpbb_root_path . 'cache/' . $url_forum . '/';
+ $this->key_prefix = substr(md5($dbname . $table_prefix), 0, 8) . '_';
+
+ if (!isset($this->extension) || !extension_loaded($this->extension))
diff --git a/debian/patches/022_multisite_installer.patch b/debian/patches/022_multisite_installer.patch
new file mode 100644
index 0000000..fa1c5b3
--- /dev/null
+++ b/debian/patches/022_multisite_installer.patch
@@ -0,0 +1,128 @@
+Author: J.M. Roth
+Description: Modifies the newly shipped installer to
+ - NOT show convert tab
+ - be able to run even though config.php is there (which in Debian, it is always)
+ - remove output that has no meaning/is confusing here or links to unexisting files
+Last-Update: 2013-09-28
+--- a/install/database_update.php
++++ b/install/database_update.php
+@@ -67,7 +67,7 @@
+
+ if (!defined('PHPBB_INSTALLED') || empty($dbms) || empty($acm_type))
+ {
+- die("Please read: INSTALL.html before attempting to update.");
++ die("Make sure you have a running board before trying to upgrade anything.");
+ }
+
+ // Load Extensions
+--- a/install/index.php
++++ b/install/index.php
+@@ -244,14 +244,14 @@
+ }
+
+ $setmodules = 1;
+- while (($file = readdir($dir)) !== false)
++ while (($file = readdir()) !== false)
+ {
+ if (preg_match('#^install_(.*?)\.' . $phpEx . '$#', $file))
+ {
+ include($file);
+ }
+ }
+- closedir($dir);
++ closedir();
+
+ unset($setmodules);
+
+--- a/install/install_convert.php
++++ b/install/install_convert.php
+@@ -10,7 +10,7 @@
+
+ /**
+ */
+-
++return;
+ if (!defined('IN_INSTALL'))
+ {
+ // Someone has tried to access the file direct. This is not a good idea, so exit
+--- a/install/install_install.php
++++ b/install/install_install.php
+@@ -23,7 +23,7 @@
+ {
+ include_once($phpbb_root_path . 'config.' . $phpEx);
+
+- if (defined('PHPBB_INSTALLED'))
++ if (empty($GLOBALS['dbhost']))
+ {
+ return;
+ }
+@@ -947,8 +947,8 @@
+ if (isset($_POST['dlconfig']))
+ {
+ // They want a copy of the file to download, so send the relevant headers and dump out the data
+- header("Content-Type: text/x-delimtext; name=\"config.$phpEx\"");
+- header("Content-disposition: attachment; filename=config.$phpEx");
++ header("Content-Type: text/x-delimtext; name=\"alternate_config.$phpEx\"");
++ header("Content-disposition: attachment; filename=alternate_config.$phpEx");
+ echo $config_data;
+ exit;
+ }
+@@ -1026,6 +1026,7 @@
+
+ // Replace backslashes and doubled slashes (could happen on some proxy setups)
+ $name = str_replace(array('\\', '//'), '/', $name);
++ $name = preg_replace('#/-\w*?/#', '/', $name);
+ $data['script_path'] = trim(dirname(dirname($name)));
+ }
+
+@@ -1366,6 +1367,19 @@
+ WHERE config_name = 'captcha_gd'";
+ }
+
++ $db_debian = array( // config table (name,value) pairs
++ 'sitename' => 'Your new phpBB board',
++ 'site_desc' => 'Powered by Debian',
++ 'board_disable' => '1',
++ 'captcha_gd_x_grid' => rand(11,24),
++ 'captcha_gd_y_grid' => rand(6,24),
++ );
++ foreach ($db_debian as $n => $v) {
++ $sql_ary[] = 'UPDATE ' . $data['table_prefix'] . "config
++ SET config_value = '$v'
++ WHERE config_name = '$n'";
++ }
++
+ $ref = substr($referer, strpos($referer, '://') + 3);
+
+ if (!(stripos($ref, $server_name) === 0))
+@@ -1939,7 +1953,7 @@
+
+ $template->assign_vars(array(
+ 'TITLE' => $lang['INSTALL_CONGRATS'],
+- 'BODY' => sprintf($lang['INSTALL_CONGRATS_EXPLAIN'], $config['version'], append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=convert&language=' . $data['language']), '../docs/README.html'),
++ 'BODY' => '',
+ 'L_SUBMIT' => $lang['INSTALL_LOGIN'],
+ 'U_ACTION' => append_sid($phpbb_root_path . 'adm/index.' . $phpEx, 'i=send_statistics&mode=send_statistics'),
+ ));
+--- a/install/install_main.php
++++ b/install/install_main.php
+@@ -24,7 +24,7 @@
+ 'module_title' => 'OVERVIEW',
+ 'module_filename' => substr(basename(__FILE__), 0, -strlen($phpEx)-1),
+ 'module_order' => 0,
+- 'module_subs' => array('INTRO', 'LICENSE', 'SUPPORT'),
++ 'module_subs' => array('INTRO'),
+ 'module_stages' => '',
+ 'module_reqs' => ''
+ );
+--- a/language/en/install.php
++++ b/language/en/install.php
+@@ -288,7 +288,7 @@
+ 'NO_LOCATION' => 'Cannot determine location. If you know Imagemagick is installed, you may specify the location later within your administration control panel',
+ 'NO_TABLES_FOUND' => 'No tables found.',
+
+- 'OVERVIEW_BODY' => 'Welcome to phpBB3! phpBB® is the most widely used open source bulletin board solution in the world. phpBB3 is the latest installment in a package line started in 2000. Like its predecessors, phpBB3 is feature-rich, user-friendly, and fully supported by the phpBB Team. phpBB3 greatly improves on what made phpBB2 popular, and adds commonly requested features that were not present in previous versions. We hope it exceeds your expectations. This installation system will guide you through installing phpBB3, updating to the latest version of phpBB3 from past releases, as well as converting to phpBB3 from a different discussion board system (including phpBB2). For more information, we encourage you to read the installation guide . To read the phpBB3 license or learn about obtaining support and our stance on it, please select the respective options from the side menu. To continue, please select the appropriate tab above.',
++ 'OVERVIEW_BODY' => 'Welcome to phpBB3! If you want to use the Database Updater to update your (multisite) database manually, click here . Remember that you have to do this for each one of your forums after each application update.',
+
+ 'PCRE_UTF_SUPPORT' => 'PCRE UTF-8 support',
+ 'PCRE_UTF_SUPPORT_EXPLAIN' => 'phpBB will not run if your PHP installation is not compiled with UTF-8 support in the PCRE extension.',
diff --git a/debian/patches/031_fix_installer.patch b/debian/patches/031_fix_installer.patch
new file mode 100644
index 0000000..070fafc
--- /dev/null
+++ b/debian/patches/031_fix_installer.patch
@@ -0,0 +1,37 @@
+Author: David Prévot
+Description: Fix PHPBB_ROOT_PATH in install-XXX (used in multiboard).
+Bug-Debian: http://bugs.debian.org/644276
+Last-Update: 2011-11-11
+--- a/install/database_update.php
++++ b/install/database_update.php
+@@ -31,6 +31,8 @@
+ define('IN_PHPBB', true);
+ define('IN_INSTALL', true);
+
++define('PHPBB_ROOT_PATH', '/usr/share/phpbb3/www/');
++
+ $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
+ $phpEx = substr(strrchr(__FILE__, '.'), 1);
+
+--- a/install/index.php
++++ b/install/index.php
+@@ -15,6 +15,8 @@
+ define('IN_INSTALL', true);
+ /**#@-*/
+
++define('PHPBB_ROOT_PATH', '/usr/share/phpbb3/www/');
++
+ $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
+ $phpEx = substr(strrchr(__FILE__, '.'), 1);
+
+@@ -191,8 +193,8 @@
+ 'load_tplcompile' => '1'
+ );
+
+-$template->set_custom_template('../adm/style', 'admin');
+-$template->assign_var('T_TEMPLATE_PATH', '../adm/style');
++$template->set_custom_template('/usr/share/phpbb3/www/adm/style', 'admin');
++$template->assign_var('T_TEMPLATE_PATH', '/usr/share/phpbb3/www/adm/style');
+
+ // the acp template is never stored in the database
+ $user->theme['template_storedb'] = false;
diff --git a/debian/patches/add_phpbb_prefix_to_ldap_escape.patch b/debian/patches/add_phpbb_prefix_to_ldap_escape.patch
new file mode 100644
index 0000000..51abc2d
--- /dev/null
+++ b/debian/patches/add_phpbb_prefix_to_ldap_escape.patch
@@ -0,0 +1,31 @@
+Description: Add phpbb_ prefix to ldap_escape()
+ Since ldap_escape() has been added to PHP 5.6.0+, it’s internal
+ declaration throws a fatal error:
+ Cannot redeclare ldap_escape() at line 300 in /includes/auth/auth_ldap.php
+Author: Jakub Senko
+Origin: upstream
+Bug: https://tracker.phpbb.com/browse/PHPBB3-12468 https://tracker.phpbb.com/browse/PHPBB3-13168
+Bug-Debian: https://bugs.debian.org/778553
+Applied-Upstream: commit, https://github.com/phpbb/phpbb/commit/ba464ec93a2707b602d212e364905a920b3b9460
+Reviewed-by: Andreas Fischer
+Last-Update: 2015-02-16
+--- a/includes/auth/auth_ldap.php
++++ b/includes/auth/auth_ldap.php
+@@ -282,7 +282,7 @@
+ {
+ global $config;
+
+- $filter = '(' . $config['ldap_uid'] . '=' . ldap_escape(htmlspecialchars_decode($username)) . ')';
++ $filter = '(' . $config['ldap_uid'] . '=' . phpbb_ldap_escape(htmlspecialchars_decode($username)) . ')';
+ if ($config['ldap_user_filter'])
+ {
+ $_filter = ($config['ldap_user_filter'][0] == '(' && substr($config['ldap_user_filter'], -1) == ')') ? $config['ldap_user_filter'] : "({$config['ldap_user_filter']})";
+@@ -294,7 +294,7 @@
+ /**
+ * Escapes an LDAP AttributeValue
+ */
+-function ldap_escape($string)
++function phpbb_ldap_escape($string)
+ {
+ return str_replace(array('*', '\\', '(', ')'), array('\\*', '\\\\', '\\(', '\\)'), $string);
+ }
diff --git a/debian/patches/fix_CVE-2015-1431.patch b/debian/patches/fix_CVE-2015-1431.patch
new file mode 100644
index 0000000..3153ad3
--- /dev/null
+++ b/debian/patches/fix_CVE-2015-1431.patch
@@ -0,0 +1,70 @@
+Description: Explicitly disallow trailing paths
+ CSRF potentially allowing an attacker to modify the private message
+ setting that determines how full folders are handled (i.e. whether to
+ delete the oldest message or hold the new message until further space
+ is available).
+ [CVE-2015-1432]
+Author: Marc Alexander
+Origin: upstream, https://www.phpbb.com/community/viewtopic.php?f=14&t=2291456
+Bug: https://tracker.phpbb.com/browse/PHPBB3-13531, https://tracker.phpbb.com/browse/PHPBB3-13549
+Bug-Debian: https://bugs.debian.org/776699
+Applied-Upstream: commit, https://github.com/phpbb/phpbb/commit/4b9434bf1ba4c015da11309602cfccf1a9c2493c https://github.com/phpbb/phpbb/commit/e34b92882a51dc89da88464b8c751a9d93a03124 https://github.com/phpbb/phpbb/commit/74950559074d738733ac1258b07912f9ca14203a
+Reviewed-by: Andreas Fischer , Nils Adermann
+Last-Update: 2015-02-01
+--- a/includes/startup.php
++++ b/includes/startup.php
+@@ -113,6 +113,54 @@
+ unset($input);
+ }
+
++/**
++ * Check if requested page uses a trailing path
++ *
++ * @param string $phpEx PHP extension
++ *
++ * @return bool True if trailing path is used, false if not
++ */
++function phpbb_has_trailing_path($phpEx)
++{
++ // Check if path_info is being used
++ if (!empty($_SERVER['PATH_INFO']) || (!empty($_SERVER['ORIG_PATH_INFO']) && $_SERVER['SCRIPT_NAME'] != $_SERVER['ORIG_PATH_INFO']))
++ {
++ return true;
++ }
++
++ // Match any trailing path appended to a php script in the REQUEST_URI.
++ // It is assumed that only actual PHP scripts use names like foo.php. Due
++ // to this, any phpBB board inside a directory that has the php extension
++ // appended to its name will stop working, i.e. if the board is at
++ // example.com/phpBB/test.php/ or example.com/test.php/
++ if (preg_match('#^[^?]+\.' . preg_quote($phpEx, '#') . '/#', $_SERVER['REQUEST_URI']))
++ {
++ return true;
++ }
++
++ return false;
++}
++
++// Check if trailing path is used
++if (phpbb_has_trailing_path($phpEx))
++{
++ if (substr(strtolower(@php_sapi_name()), 0, 3) === 'cgi')
++ {
++ $prefix = 'Status:';
++ }
++ else if (!empty($_SERVER['SERVER_PROTOCOL']))
++ {
++ $prefix = $_SERVER['SERVER_PROTOCOL'];
++ }
++ else
++ {
++ $prefix = 'HTTP/1.0';
++ }
++ header("$prefix 404 Not Found", true, 404);
++ echo 'Trailing paths and PATH_INFO is not supported by phpBB 3.0';
++ exit;
++}
++
+ // Register globals and magic quotes have been dropped in PHP 5.4
+ if (version_compare(PHP_VERSION, '5.4.0-dev', '>='))
+ {
diff --git a/debian/patches/fix_CVE-2015-1432.patch b/debian/patches/fix_CVE-2015-1432.patch
new file mode 100644
index 0000000..07a9592
--- /dev/null
+++ b/debian/patches/fix_CVE-2015-1432.patch
@@ -0,0 +1,27 @@
+Description: Correctly validate the ucp_pm_options form key
+ This allows an attacker to load arbitrary CSS in Internet Explorer by
+ crafting a URL with trailing paths after a PHP file (for example
+ /path/index.php/more/path). This is only possible if the webserver
+ configuration allows accessing PHP files in this manner.
+Author: Joas Schilling
+Origin: upstream, https://www.phpbb.com/community/viewtopic.php?f=14&t=2291456
+Bug: https://tracker.phpbb.com/browse/PHPBB3-13526
+Bug-Debian: https://bugs.debian.org/776699
+Applied-Upstream: commit, https://github.com/phpbb/phpbb/commit/23069a13e203985ab124d1139e8de74b12778449
+Reviewed-by: Andreas Fischer
+Last-Update: 2015-02-01
+--- a/includes/ucp/ucp_pm_options.php
++++ b/includes/ucp/ucp_pm_options.php
+@@ -29,7 +29,11 @@
+ // Change "full folder" setting - what to do if folder is full
+ if (isset($_POST['fullfolder']))
+ {
+- check_form_key('ucp_pm_options', $config['form_token_lifetime'], $redirect_url);
++ if (!check_form_key('ucp_pm_options'))
++ {
++ trigger_error('FORM_INVALID');
++ }
++
+ $full_action = request_var('full_action', 0);
+
+ $set_folder_id = 0;
diff --git a/debian/patches/fix_CVE-2015-3880.patch b/debian/patches/fix_CVE-2015-3880.patch
new file mode 100644
index 0000000..320d589
--- /dev/null
+++ b/debian/patches/fix_CVE-2015-3880.patch
@@ -0,0 +1,32 @@
+Description: Fix possible redirection on Chrome
+ An insufficient check allowed users of the Google Chrome browser to be
+ redirected to external domains (e.g. on login).
+ [CVE-2015-3880]
+Author: Marc Alexander , Joas Schilling
+Origin: upstream, https://github.com/phpbb/phpbb/commit/1a3350619f428d9d69d196c52128727e27ef2f04
+Reviewed-by: Andreas Fischer
+Last-Update: 2015-05-09
+--- a/includes/functions.php
++++ b/includes/functions.php
+@@ -2492,7 +2492,7 @@
+ // Attention: only able to redirect within the same domain if $disable_cd_check is false (yourdomain.com -> www.yourdomain.com will not work)
+ if (!$disable_cd_check && $url_parts['host'] !== $user->host)
+ {
+- $url = generate_board_url();
++ trigger_error('Tried to redirect to potentially insecure url.', E_USER_ERROR);
+ }
+ }
+ else if ($url[0] == '/')
+@@ -2579,6 +2579,12 @@
+ }
+ }
+
++ // Make sure we don't redirect to external URLs
++ if (!$disable_cd_check && strpos($url, generate_board_url(true) . '/') !== 0)
++ {
++ trigger_error('Tried to redirect to potentially insecure url.', E_USER_ERROR);
++ }
++
+ // Make sure no linebreaks are there... to prevent http response splitting for PHP < 4.4.2
+ if (strpos(urldecode($url), "\n") !== false || strpos(urldecode($url), "\r") !== false || strpos($url, ';') !== false)
+ {
diff --git a/debian/patches/fix_chown.patch b/debian/patches/fix_chown.patch
new file mode 100644
index 0000000..31b82e2
--- /dev/null
+++ b/debian/patches/fix_chown.patch
@@ -0,0 +1,43 @@
+Description: Fix chown in cache
+ Ensure files in cache belong to www-data. phpBB tries to set them to
+ the same owner than common.php, that belongs to root under Debian, and
+ then set them world writable because it can’t change the owner (nor
+ group) to root.
+Author: David Prévot
+Bug-Debian: http://bugs.debian.org/711172
+Forwarded: not-needed
+Last-Update: 2013-09-28
+--- a/includes/functions.php
++++ b/includes/functions.php
+@@ -725,16 +725,16 @@
+ {
+ global $phpbb_root_path, $phpEx;
+
+- // Determine owner/group of common.php file and the filename we want to change here
+- $common_php_owner = @fileowner($phpbb_root_path . 'common.' . $phpEx);
+- $common_php_group = @filegroup($phpbb_root_path . 'common.' . $phpEx);
++ // Determine owner/group of the filename we want to change here
++ $common_php_owner = (function_exists('posix_getpwnam')) ? @posix_getpwnam('www-data') : false;
++ $common_php_group = (function_exists('posix_getgrnam')) ? @posix_getgrnam('www-data') : false;
+
+ // And the owner and the groups PHP is running under.
+ $php_uid = (function_exists('posix_getuid')) ? @posix_getuid() : false;
+ $php_gids = (function_exists('posix_getgroups')) ? @posix_getgroups() : false;
+
+ // If we are unable to get owner/group, then do not try to set them by guessing
+- if (!$php_uid || empty($php_gids) || !$common_php_owner || !$common_php_group)
++ if (!$php_uid || empty($php_gids) || empty($common_php_owner) || empty($common_php_group))
+ {
+ $_chmod_info['process'] = false;
+ }
+@@ -742,8 +742,8 @@
+ {
+ $_chmod_info = array(
+ 'process' => true,
+- 'common_owner' => $common_php_owner,
+- 'common_group' => $common_php_group,
++ 'common_owner' => $common_php_owner[uid],
++ 'common_group' => $common_php_group[gid],
+ 'php_uid' => $php_uid,
+ 'php_gids' => $php_gids,
+ );
diff --git a/debian/patches/improve_php_5.6_compatibility.patch b/debian/patches/improve_php_5.6_compatibility.patch
new file mode 100644
index 0000000..67f44e8
--- /dev/null
+++ b/debian/patches/improve_php_5.6_compatibility.patch
@@ -0,0 +1,45 @@
+Description: Handle mbstring.http_{in,out}put for PHP 5.6
+ Having mbstring.http_input set to '' is as good as 'pass'.
+ Fix mbstring warnings in ACP for PHP 5.6 compatibility.
+Author: Andreas Fischer , Oliver Schramm
+Origin: upstream
+Bug: https://tracker.phpbb.com/browse/PHPBB3-12468 https://tracker.phpbb.com/browse/PHPBB3-13168
+Applied-Upstream: commit, https://github.com/phpbb/phpbb/commit/370015c1a5f490a7fae85da268b81cb8d1748f50 https://github.com/phpbb/phpbb/commit/53f166274aaa55b98a1c671dbb5cbd403d879157
+Reviewed-by: Nils Adermann
+Last-Update: 2015-02-02
+--- a/includes/acp/acp_main.php
++++ b/includes/acp/acp_main.php
+@@ -610,8 +610,8 @@
+ 'S_MBSTRING_LOADED' => true,
+ 'S_MBSTRING_FUNC_OVERLOAD_FAIL' => (intval(@ini_get('mbstring.func_overload')) & (MB_OVERLOAD_MAIL | MB_OVERLOAD_STRING)),
+ 'S_MBSTRING_ENCODING_TRANSLATION_FAIL' => (@ini_get('mbstring.encoding_translation') != 0),
+- 'S_MBSTRING_HTTP_INPUT_FAIL' => (@ini_get('mbstring.http_input') != 'pass'),
+- 'S_MBSTRING_HTTP_OUTPUT_FAIL' => (@ini_get('mbstring.http_output') != 'pass'),
++ 'S_MBSTRING_HTTP_INPUT_FAIL' => !in_array(@ini_get('mbstring.http_input'), array('pass', '')),
++ 'S_MBSTRING_HTTP_OUTPUT_FAIL' => !in_array(@ini_get('mbstring.http_output'), array('pass', '')),
+ ));
+ }
+
+--- a/install/install_install.php
++++ b/install/install_install.php
+@@ -273,8 +273,8 @@
+ $checks = array(
+ array('func_overload', '&', MB_OVERLOAD_MAIL|MB_OVERLOAD_STRING),
+ array('encoding_translation', '!=', 0),
+- array('http_input', '!=', 'pass'),
+- array('http_output', '!=', 'pass')
++ array('http_input', '!=', array('pass', '')),
++ array('http_output', '!=', array('pass', ''))
+ );
+
+ foreach ($checks as $mb_checks)
+@@ -295,7 +295,8 @@
+ break;
+
+ case '!=':
+- if ($ini_val != $mb_checks[2])
++ if (!is_array($mb_checks[2]) && $ini_val != $mb_checks[2] ||
++ is_array($mb_checks[2]) && !in_array($ini_val, $mb_checks[2]))
+ {
+ $result = '' . $lang['NO'] . ' ';
+ $passed['mbstring'] = false;
diff --git a/debian/patches/privacy-breach-generic.patch b/debian/patches/privacy-breach-generic.patch
new file mode 100644
index 0000000..957da85
--- /dev/null
+++ b/debian/patches/privacy-breach-generic.patch
@@ -0,0 +1,27 @@
+Description: Do not fetch data from an external website
+ Even if the page is not supposed to be displayed, linking to an
+ external CSS is bad taste.
+Author: David Prévot
+Last-Update: 2014-04-11
+--- a/l10n-pl/language/pl/email/index.htm
++++ /dev/null
+@@ -1,19 +0,0 @@
+-
+-
+-
+- phpBB3pl r210
+-
+-
+-
+-
+-
+-
+-
+-
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..f3998ad
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,12 @@
+011_fix_version_display.patch
+012_disable_version_check.patch
+021_multisite.patch
+022_multisite_installer.patch
+031_fix_installer.patch
+fix_chown.patch
+privacy-breach-generic.patch
+fix_CVE-2015-1431.patch
+fix_CVE-2015-1432.patch
+improve_php_5.6_compatibility.patch
+add_phpbb_prefix_to_ldap_escape.patch
+fix_CVE-2015-3880.patch
diff --git a/debian/phpbb3-l10n.install b/debian/phpbb3-l10n.install
new file mode 100644
index 0000000..9e2a4f2
--- /dev/null
+++ b/debian/phpbb3-l10n.install
@@ -0,0 +1,3 @@
+l10n-*/language/* /usr/share/phpbb3/www/language/
+l10n-*/styles/prosilver/imageset/* /usr/share/phpbb3/styles/prosilver/imageset/
+l10n-*/styles/subsilver2/imageset/* /usr/share/phpbb3/styles/subsilver2/imageset/
diff --git a/debian/phpbb3.config b/debian/phpbb3.config
new file mode 100755
index 0000000..22d2b5b
--- /dev/null
+++ b/debian/phpbb3.config
@@ -0,0 +1,142 @@
+#!/bin/sh
+# config script for phpbb3
+# Copyright 2004 Jeroen van Wolffelaar
+# Copyright 2010 J.M. Roth
+#
+# possible calls: called from postinst, same calls + reconfigure
+
+set -e
+
+if [ "$PB3DEBUG" = "maint" ]; then
+ echo "[maint] $0 $@" >&2
+fi
+if [ "$PB3DEBUG" = "sh" ]; then
+ set -x
+fi
+
+SUPPORTED_WEBSERVERS="apache2 lighttpd"
+
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+# create the list of what webservers we should show in debconf
+# (if the dialog is displayed at all)
+AVAILABLE_WEBSERVERS=""
+for w in $SUPPORTED_WEBSERVERS; do
+ if [ -x /usr/sbin/$w ]; then
+ AVAILABLE_WEBSERVERS="${AVAILABLE_WEBSERVERS:+$AVAILABLE_WEBSERVERS, }$w"
+ fi
+done
+
+# remember previously configured webservers for postinst
+# (where we determine which webservers to actually restart)
+db_register phpbb3/httpd phpbb3/httpd-old
+db_get phpbb3/httpd
+db_set phpbb3/httpd-old "$RET"
+
+db_subst phpbb3/httpd choices $AVAILABLE_WEBSERVERS
+db_input high phpbb3/httpd || true
+db_go || true
+
+# some files of the package need to be present to configure the package
+if [ -f /usr/share/phpbb3/maint-libs/webapps-config ] && \
+ [ -f /usr/share/phpbb3/maint-libs/dbapps-lib ]; then
+
+. /usr/share/phpbb3/maint-libs/webapps-config
+. /usr/share/phpbb3/maint-libs/dbapps-lib
+
+dc_dbg
+
+if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
+ dbc_dbtypes="mysql, pgsql, sqlite"
+ . /usr/share/dbconfig-common/dpkg/config
+
+ if ! dbc_go phpbb3 $@; then
+ echo 'dbc_go (config) failed'
+ fi
+fi
+
+dc_dbg
+
+# ask to provide board's admin password
+# - if dbconfig-common is used at all, and
+# - this is a fresh install (or reconfigure), or
+# - the password has never been changed from 'admin'
+if dc_true phpbb3/dbconfig-install ; then
+ if [ -n "$2" ] && ! dc_true phpbb3/dbconfig-remove ; then
+ check_admin_passwd=$(run_sql "SELECT user_password FROM phpbb_users WHERE username='admin';")
+ fi
+
+ # first ask whether we should ask the questions at all (admin-pass-ask):
+ # otherwise, when e.g. reconfiguring the _webserver_ one would
+ # also have to set a new password (NO, in contrary to standard
+ # dbconfig-common behavior, an empty password here does not mean
+ # "use the old password" but "generate random password"
+ case "$1" in
+ configure )
+ case "$2" in
+ # package install
+ "" )
+ db_set phpbb3/admin-pass-ask true
+ ;;
+ # package upgrade/reinstall
+ * )
+ if [ "$check_admin_passwd" = "$(_md5 admin)" ] || dc_true phpbb3/dbconfig-reinstall ; then
+ db_set phpbb3/admin-pass-ask true
+ fi
+ ;;
+ esac
+ ;;
+ # dpkg-reconfigure
+ reconfigure )
+ # database reinstall
+ if dc_true phpbb3/dbconfig-reinstall ; then
+ db_set phpbb3/admin-pass-ask true
+ else
+ db_input high phpbb3/admin-pass-ask || true
+ db_go || true
+ fi
+ ;;
+ * )
+ db_set phpbb3/admin-pass-ask false
+ ;;
+ esac
+ if dc_true phpbb3/admin-pass-ask ; then
+ OK=false
+ until [ "$OK" = "true" ] ; do
+ dc_forget phpbb3/admin-pass
+ db_input high phpbb3/admin-pass || true
+ db_go || true
+ P1=$(dc_get phpbb3/admin-pass)
+ if [ -n "$P1" ] ; then
+ if [ "${#P1}" -lt 6 ] ; then
+ db_input high phpbb3/admin-pass-requirements && db_go || true
+ dc_forget phpbb3/admin-pass
+ dc_forget phpbb3/admin-pass-confirm
+ continue
+ fi
+ db_input high phpbb3/admin-pass-confirm || true
+ db_go || true
+ P2=$(dc_get phpbb3/admin-pass-confirm)
+ if [ "$P1" != "$P2" ] ; then
+ db_input high phpbb3/admin-pass-mismatch || true
+ db_go || true
+ dc_forget phpbb3/admin-pass
+ dc_forget phpbb3/admin-pass-confirm
+ continue
+ fi
+ else
+ P2=
+ P1=$( and J.M. Roth
+#
+# possible calls: configure, abort-upgrade, abort-remove, abort-deconfigure
+
+set -e
+
+if [ "$PB3DEBUG" = "maint" ]; then
+ echo "[maint] $0 $@" >&2
+ dbc_debug=true
+fi
+if [ "$PB3DEBUG" = "sh" ]; then
+ set -x
+fi
+
+randminmax () {
+ local min=$1
+ local max=$2
+ local var=0
+ while ([ "$var" -le $min ] || [ "$var" -ge $max ]); do
+ var=$(dd if=/dev/urandom count=1 2>/dev/null | cksum | cut -c1-2)
+ done
+ echo $var
+}
+
+
+if [ "$1" = "configure" ]; then
+
+ ## libraries
+ . /usr/share/phpbb3/maint-libs/webapps-config
+ . /usr/share/phpbb3/maint-libs/dbapps-lib
+
+ . /usr/share/debconf/confmodule # calls phpbb3.config
+ . /usr/share/dbconfig-common/dpkg/postinst
+ db_version 2.0
+
+# have to do this here since we cannot convert from a directory
+# to a link by simple means between versions
+ ln -fs /var/lib/phpbb3/images /usr/share/phpbb3/www/
+
+## set random background for captcha (J.M.Roth 2010)
+ RANDX=$(randminmax 10 25)
+ RANDY=$(randminmax 5 25)
+ DBCCP=/usr/share/dbconfig-common/data/phpbb3
+ cp -a /usr/share/phpbb3/dbconfig-common/data/phpbb3 /usr/share/dbconfig-common/data/
+ for i in mysql pgsql sqlite; do
+ sed -i "s/@DEB_CAPTCHA_X_RAND@/${RANDX}/" $DBCCP/install/$i
+ sed -i "s/@DEB_CAPTCHA_Y_RAND@/${RANDY}/" $DBCCP/install/$i
+ done
+
+ UCF=ucf
+
+## DATABASE SETUP
+ dbc_generate_include="php:/etc/phpbb3/database.inc.php"
+ dbc_generate_include_owner="root:www-data"
+ dbc_generate_include_perms="0640"
+# for sqlite: make sure that the database is readable for the webserver
+ dbc_dbfile_owner="root:www-data"
+ dbc_dbfile_perms="0660"
+
+dc_dbg
+
+ if ! dbc_go phpbb3 $@ ; then
+ echo 'Automatic configuration using dbconfig-common failed!'
+ else
+ postgres_update_seqs
+# act on the provided admin password
+ if dc_true phpbb3/dbconfig-install ; then
+ pass=$(dc_get phpbb3/admin-pass)
+ if [ -n "$pass" ] ; then
+ echo "Setting admin password" >&2
+ run_sql "UPDATE phpbb_users SET user_password='$(_md5 $pass)' WHERE username='admin';"
+ if [ "$ERR" != "fail" ] && [ "${DEBIAN_FRONTEND}" = "noninteractive" ]; then
+ echo "Admin password set to $pass" >&2
+ fi
+ fi
+ dc_forget phpbb3/admin-pass
+ dc_forget phpbb3/admin-pass-confirm
+ fi
+ fi
+
+dc_dbg
+
+# /etc/apache2/conf.d/phpbb3.conf symlink moved to /etc/apache2/conf-available
+ if dpkg --compare-versions "$2" lt-nl "3.0.11-5"; then
+ [ -L /etc/apache2/conf.d/phpbb3.conf ] && rm /etc/apache2/conf.d/phpbb3.conf
+ fi
+
+## WEBSERVER SETUP
+# initially inspired from phpmyadmin's postinst
+ webservers=$(dc_get phpbb3/httpd)
+ reload=""
+
+ # determine inexistant, removed, added and non-changed webservers
+ webservers_old_tmp=$(dc_get phpbb3/httpd-old)
+ db_reset phpbb3/httpd-old
+ db_unregister phpbb3/httpd-old
+ # remove servers from list that don't exist anymore anyhow
+ # db_reset in phpbb3.config should have sufficed
+ #webservers_old=""
+ #for ow in $webservers_old_tmp; do
+ # ow=${ow%,}
+ # for aw in $AVAILABLE_WEBSERVERS; do
+ # aw=${aw%,}
+ # if [ "$ow" = "$aw" ] ; then
+ # webservers_old="$webservers_old $ow"
+ # break
+ # fi
+ # done
+ #done
+ # find removed servers (elements from old list not in new list)
+ for ow in $webservers_old_tmp; do
+ ow=${ow%,}
+ for w in $webservers; do
+ w=${w%,}
+ [ "$ow" = "$w" ] && continue 2
+ done
+ reload="$reload $ow"
+ done
+ # find added servers (elements from new list not in old list)
+ for w in $webservers; do
+ w=${w%,}
+ for ow in $webservers_old_tmp; do
+ ow=${ow%,}
+ [ "$ow" = "$w" ] && continue 2
+ done
+ reload="$reload $w"
+ done
+ # if we're all but reconfigured,
+ # everything that is selected has to be reloaded anyhow
+ if [ -z "$DEBCONF_RECONFIGURE" ] ; then
+ for webserver in $webservers; do
+ webserver=${webserver%,}
+ reload="$reload $webserver"
+ done
+ fi
+
+ ## to correctly account for the case in which
+ ## webservers have been chosen to be NO LONGER configured
+ ## (e.g. via dpkg-reconfigure)
+ # first, remove all symlinks
+ purge_webserver_config phpbb3 all 50
+ # then restore all selected configs
+ for webserver in $webservers; do
+ webserver=${webserver%,}
+ test -x /usr/sbin/$webserver || continue
+ $UCF --debconf-ok --three-way /usr/share/phpbb3/webserver-examples/$webserver.conf /etc/phpbb3/$webserver.conf
+ ucfr phpbb3 /etc/phpbb3/$webserver.conf
+ install_webserver_config phpbb3 $webserver 50
+ done
+ # finally reload the changed servers
+ for r in $reload; do
+ reload_webserver phpbb3 $r
+ done
+
+ if [ ! -h /usr/share/phpbb3/www/install-* ]; then
+ ln -s /usr/share/phpbb3/install /usr/share/phpbb3/www/install-$(/dev/null; then
+ ln -sf ../../phpbb3/webserver-examples $docdir
+ fi
+fi
+
+#DEBHELPER#
diff --git a/debian/phpbb3.postrm b/debian/phpbb3.postrm
new file mode 100755
index 0000000..8098a1d
--- /dev/null
+++ b/debian/phpbb3.postrm
@@ -0,0 +1,41 @@
+#!/bin/sh
+#
+# possible calls: remove, purge, failed-upgrade, abort-install, abort-upgrade, disappear
+
+set -e
+
+if [ "$PB3DEBUG" = "maint" ]; then
+ echo "[maint] $0 $@" >&2
+fi
+if [ "$PB3DEBUG" = "sh" ]; then
+ set -x
+fi
+
+if [ -f /usr/share/debconf/confmodule ]; then
+ . /usr/share/debconf/confmodule
+fi
+if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then
+ . /usr/share/dbconfig-common/dpkg/postrm
+ dbc_go phpbb3 $@
+fi
+
+if [ "$1" = "purge" ]; then
+ for c in /etc/phpbb3/database.inc.php /etc/phpbb3/*.conf ; do
+ if [ -x /usr/bin/ucf ]; then
+ ucf --purge $c
+ fi
+ if [ -x /usr/bin/ucfr ]; then
+ ucfr --purge phpbb3 $c
+ fi
+ rm -f $c
+ done
+ rm -Rf /etc/phpbb3 /var/cache/phpbb3 /var/lib/phpbb3
+
+ # remove other files generated manually via maintainer scripts
+ rm /usr/share/phpbb3/www/images
+fi
+
+rm -Rf /usr/share/phpbb3/www/install-*
+rm -Rf /usr/share/dbconfig-common/data/phpbb3
+
+#DEBHELPER#
diff --git a/debian/phpbb3.prerm b/debian/phpbb3.prerm
new file mode 100755
index 0000000..91bc5dd
--- /dev/null
+++ b/debian/phpbb3.prerm
@@ -0,0 +1,58 @@
+#!/bin/sh
+# prerm script for phpbb3
+#
+# see: dh_installdeb(1)
+#
+# possible calls: remove, upgrade, failed-upgrade, deconfigure
+
+set -e
+
+if [ "$PB3DEBUG" = "maint" ]; then
+ echo "[maint] $0 $@" >&2
+fi
+if [ "$PB3DEBUG" = "sh" ]; then
+ set -x
+fi
+
+. /usr/share/phpbb3/maint-libs/webapps-config
+. /usr/share/phpbb3/maint-libs/dbapps-lib
+
+. /usr/share/debconf/confmodule
+. /usr/share/dbconfig-common/dpkg/prerm
+
+case "$1" in
+ remove|deconfigure)
+## removal of webserver config analogous to postinst
+ db_get phpbb3/httpd
+ webservers="$RET"
+ reload=""
+ for webserver in $webservers; do
+ webserver=${webserver%,}
+ purge_webserver_config phpbb3 $webserver 50
+ reload_webserver phpbb3 $webserver
+ done
+ ;;
+
+ upgrade)
+ # purge the caches when up- (or down-) grading
+ # (see also http://www.debian.org/doc/maint-guide/ch-update.en.html#s-upgrading)
+ rm -Rf /var/cache/phpbb3/cache/*
+ ;;
+
+ failed-upgrade)
+ ;;
+
+ *)
+ echo "prerm called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+dc_dbg
+
+dbc_go phpbb3 $@
+
+dc_dbg
+
+#DEBHELPER#
+
diff --git a/debian/phpbb3.templates b/debian/phpbb3.templates
new file mode 100644
index 0000000..38b993d
--- /dev/null
+++ b/debian/phpbb3.templates
@@ -0,0 +1,45 @@
+Template: phpbb3/httpd
+Type: multiselect
+Choices: ${choices}
+Default: apache2
+_Description: Web server to configure automatically:
+ Please select any web server that should be configured automatically
+ for phpBB.
+
+Template: phpbb3/admin-pass-ask
+Type: boolean
+_Description: Configure the phpBB admin password?
+
+Template: phpbb3/admin-pass
+Type: password
+_Description: Password for phpBB admin:
+ Please provide a password for the phpBB user "admin".
+ .
+ The password must be at least 6 characters long.
+ .
+ If the password is left blank, a random one will be generated.
+
+Template: phpbb3/admin-pass-confirm
+Type: password
+_Description: Password confirmation:
+ Please confirm the password for the phpBB user "admin".
+
+Template: phpbb3/admin-pass-mismatch
+Type: error
+_Description: Password mismatch
+ The two passwords you entered were not the same. Please try again.
+
+Template: phpbb3/admin-pass-generated
+Type: note
+#flag:translate!:3
+_Description: Generation of random password
+ The following random password has been configured for the admin user:
+ .
+ ${genpass}
+ .
+ Make sure you remember it, as it will not be stored in cleartext.
+
+Template: phpbb3/admin-pass-requirements
+Type: error
+_Description: Password complexity requirements
+ The password must be at least 6 characters long.
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in
new file mode 100644
index 0000000..8d544e3
--- /dev/null
+++ b/debian/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] phpbb3.templates
diff --git a/debian/po/cs.po b/debian/po/cs.po
new file mode 100644
index 0000000..4642533
--- /dev/null
+++ b/debian/po/cs.po
@@ -0,0 +1,136 @@
+#
+# Translators, if you are not familiar with the PO format, gettext
+# documentation is worth reading, especially sections dedicated to
+# this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+#
+# Some information specific to po-debconf are available at
+# /usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+# Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 20:41-0400\n"
+"PO-Revision-Date: 2010-05-30 16:51+0200\n"
+"Last-Translator: Miroslav Kure \n"
+"Language-Team: Czech \n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Webové servery, které se mají nastavit automaticky:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr "Vyberte webové servery, které se mají automaticky nastavit pro phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Nastavit správcovské heslo phpBB?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Heslo pro správce phpBB:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Zadejte heslo pro phpBB uživatele „admin“."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Heslo musí mít alespoň 6 znaků."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Ponecháte-li prázdné, vygeneruje se náhodné heslo."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Potvrzení hesla:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Potvrďte heslo pro phpBB uživatele „admin“."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Hesla nesouhlasí"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "Zadaná hesla nejsou stejná. Zadejte je prosím znovu."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Generování náhodného hesla"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Uživateli „admin“ bylo vygenerováno následující náhodné heslo:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr ""
+"Heslo si zapamatujte, protože jeho čitelná podoba nebude nikde uložena."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Požadavky na složitost hesla"
+
+#~ msgid ""
+#~ "phpBB runs on any webserver with PHP support. However, only Apache "
+#~ "variants are currently supported by this configuration script. Select the "
+#~ "one(s) you want to configure."
+#~ msgstr ""
+#~ "phpBB běží na libovolném webovém serveru s podporou PHP, ale konfigurační "
+#~ "skript momentálně podporuje pouze různé varianty Apache. Vyberte tu, "
+#~ "kterou chcete nastavit."
+
+#~ msgid ""
+#~ "Note: You will need to restart the server(s) yourself (typically by "
+#~ "running something like /etc/init.d/apache-??? reload)."
+#~ msgstr ""
+#~ "Poznámka: servery pak budete muset restartovat sami (obvykle příkazem "
+#~ "jako /etc/init.d/apache-??? reload)."
diff --git a/debian/po/da.po b/debian/po/da.po
new file mode 100644
index 0000000..02dd1b0
--- /dev/null
+++ b/debian/po/da.po
@@ -0,0 +1,115 @@
+# Danish translation for phpbb3.
+# Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the phpbb3 package.
+# Joe Hansen , 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-05-30 17:30+01:00\n"
+"Last-Translator: Joe Hansen \n"
+"Language-Team: Danish \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Internetserver der skal konfigureres automatisk:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Vælg venligst en internetserver, som skal konfigureres automatisk til "
+"phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Konfigurer administratoradgangskoden til phpBB?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Adgangskode til phpBB-administrator:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Angiv venligst en adgangskode til phpBB-brugeren »admin«."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Adgangskoden skal være mindst 6 tegn lang."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Hvis adgangskoden er uudfyldt, vil en tilfældig blive oprettet."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Bekræftelse af adgangskode:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Bekræft venligst adgangskoden for phpBB-brugeren »admin«."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Forskellige adgangskoder"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "De to adgangskoder, du indtastede, var ikke ens. Forsøg venligst igen."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Oprettelse af tilfældig adgangskode"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Den følgende tilfældige adgangskode er blevet konfigureret for administratorbrugeren:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Vær sikker på, at du husker den, da den ikke vil blive gemt i almindeligt tekstformat."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Kompleksitetskrav for adgangskode"
+
+
diff --git a/debian/po/de.po b/debian/po/de.po
new file mode 100644
index 0000000..dcd5c1a
--- /dev/null
+++ b/debian/po/de.po
@@ -0,0 +1,120 @@
+# translation of po-debconf template to German
+# This file is distributed under the same license as the phpbb3 package.
+#
+# Copyright ©:
+# Matthias Julius , 2006, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-2\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-06-06 23:57-0400\n"
+"Last-Translator: Matthias Julius \n"
+"Language-Team: German \n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Automatisch zu konfigurierende Webserver:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Bitte wählen Sie die Webserver aus, die automatisch für phpBB konfiguriert "
+"werden sollen."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Das Passwort für den phpBB-Administrator konfigurieren?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Passwort für den phpBB-Administrator:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Bitte geben Sie ein Passwort für den phpBB-Benutzer »admin« ein."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Das Passwort muss mindestens 6 Zeichen lang sein."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Falls das Passwort frei gelassen wird, wird ein zufälliges erzeugt."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Passwortbestätigung:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Bitte bestätigen Sie das Passwort für den phpBB-Benutzer »admin«."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Passwörter stimmen nicht überein"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr ""
+"Die beiden Passwörter, die Sie eingegeben haben, stimmen nicht überein. "
+"Bitte versuchen Sie es erneut."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Erzeugen eines zufälligen Passwortes"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Das folgende zufällige Passwort wurde für den Administrator erzeugt:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr ""
+"Merken Sie sich das Passwort, da es nicht im Klartext gespeichert wird."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Anforderungen an die Passwort-Komplexität"
+
+
diff --git a/debian/po/es.po b/debian/po/es.po
new file mode 100644
index 0000000..89b9a09
--- /dev/null
+++ b/debian/po/es.po
@@ -0,0 +1,151 @@
+# phpbb3 po-debconf translation to Spanish
+# Copyright (C) 2010 Software in the Public Interest
+# This file is distributed under the same license as the phpbb3 package.
+#
+# Changes:
+# - Initial translation
+# Francisco Javier Cuadrado , 2010
+#
+# Traductores, si no conocen el formato PO, merece la pena leer la
+# documentación de gettext, especialmente las secciones dedicadas a este
+# formato, por ejemplo ejecutando:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+# - El proyecto de traducción de Debian al español
+# http://www.debian.org/intl/spanish/
+# especialmente las notas y normas de traducción en
+# http://www.debian.org/intl/spanish/notas
+#
+# - La guía de traducción de po's de debconf:
+# /usr/share/doc/po-debconf/README-trans
+# o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-2\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-05-28 08:08+0100\n"
+"Last-Translator: Francisco Javier Cuadrado \n"
+"Language-Team: Debian l10n Spanish \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Servidor web a configurar automáticamente:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Please select any web server that should be configured automatically for phpBB."
+msgstr "Escoja el servidor web que se debería configurar automáticamente para phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "¿Desea configurar la contraseña del usuario «admin» de phpBB?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Contraseña del usuario «admin» de phpBB:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Introduzca una contraseña para el usuario «admin» de phpBB."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001
+#: ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "La contraseña debe tener una longitud de al menos seis caracteres."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Si la contraseña se deja en blanco, se generará una aleatoria."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Confirmación de la contraseña:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Confirme la contraseña del usuario «admin» de phpBB."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Las contraseñas no coinciden"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "Las dos contraseñas que ha introducido no son iguales. Por favor, inténtelo de nuevo."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Generación de una contraseña aleatoria"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Se ha configurado la siguiente contraseña aleatoria para el usuario «admin»."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Asegúrese de que la recuerda, ya que no se guardará en texto claro."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Requisitos de la complejidad de la contraseña"
+
+#~ msgid "apache2"
+#~ msgstr "apache2"
+#~ msgid "lighttpd"
+#~ msgstr "lighttpd"
+#~ msgid ""
+#~ "phpBB runs on any webserver with PHP support. However, only Apache "
+#~ "variants are currently supported by this configuration script. Select the "
+#~ "one(s) you want to configure."
+#~ msgstr ""
+#~ "phpBB funciona sobre cualquier servidor web que pueda usar PHP. Sin "
+#~ "embargo, sólo las variantes de Apache se pueden usar con este script de "
+#~ "configuración. Escoja el/los que quiere configurar:"
+#~ msgid ""
+#~ "Note: You will need to restart the server(s) yourself (typically by "
+#~ "running something like /etc/init.d/apache-??? reload)."
+#~ msgstr ""
+#~ "Aviso: Necesitará reiniciar el/los servidor/es (normalmente ejecutando "
+#~ "algo similar a «/etc/init.d/apache-??? reload»)."
+
diff --git a/debian/po/fr.po b/debian/po/fr.po
new file mode 100644
index 0000000..5eab34b
--- /dev/null
+++ b/debian/po/fr.po
@@ -0,0 +1,128 @@
+# Translation of phpbb3 debconf templates to French
+# Copyright (C) 2004, 2010 Debian French l10n team
+# This file is distributed under the same license as the phpbb3 package.
+#
+# Translators:
+# Éric Madesclair , 2004.
+# David Prévot , 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-1\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 19:57-0400\n"
+"PO-Revision-Date: 2010-05-27 20:26-0400\n"
+"Last-Translator: David Prévot \n"
+"Language-Team: French \n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Serveur web à configurer automatiquement :"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Veuillez choisir chaque serveur web à configurer automatiquement pour phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Faut-il configurer le mot de passe de l'administrateur de phpBB ?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Mot de passe pour l'administrateur de phpBB :"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Veuillez fournir le mot de passe de l'identifiant « admin » de phpBB."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Le mot de passe doit être composé d'au moins six caractères."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Si le champ est laissé vide, un mot de passe aléatoire sera créé."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Confirmation du mot de passe :"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr ""
+"Veuillez confirmer le mot de passe de l'identifiant « admin » de phpBB."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Mots de passe différents"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr ""
+"Les deux mots de passes saisis ne correspondent pas. Veuillez recommencer."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Création d'un mot de passe aléatoire"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr ""
+"Le mot de passe aléatoire suivant a été configuré pour l'identifiant "
+"« admin » :"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr ""
+"Il est important de le retenir immédiatement, car il ne sera pas conservé en "
+"clair."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Exigences de complexité pour le mot de passe"
+
+#~ msgid "apache2"
+#~ msgstr "Apache 2"
+
+#~ msgid "lighttpd"
+#~ msgstr "Lighttpd"
diff --git a/debian/po/it.po b/debian/po/it.po
new file mode 100644
index 0000000..11dc831
--- /dev/null
+++ b/debian/po/it.po
@@ -0,0 +1,113 @@
+# Italian (it) translation of debconf templates for phpbb3
+# COPYRIGHT (C) 2010 THE PHPBB3'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the phpbb3 package.
+# Luca Monducci , 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-2 debconf templates\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 20:41-0400\n"
+"PO-Revision-Date: 2010-05-30 13:54+0200\n"
+"Last-Translator: Luca Monducci \n"
+"Language-Team: Italian \n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Server web da configurare automaticamente:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Selezionare tutti i server web che devono essere automaticamente configurati "
+"per phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Configurare la password per phpBB admin?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Password per phpBB admin:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Inserire la password per l'utente \"admin\" di phpBB."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "La password deve essere lunga almeno 6 caratteri."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Lasciando vuota la password, ne verrà generata una casuale."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Conferma della password:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Confermare la password dell'utente \"admin\" di phpBB."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Password diverse"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "Le due password inserite sono diverse. Riprovare."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Generazione di una password casuale"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "La seguente password casuale è stata assegnata all'utente admin:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Fare in modo di ricordarla, perché non verrà memorizzata in chiaro."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Requisiti di complessità della password"
diff --git a/debian/po/ja.po b/debian/po/ja.po
new file mode 100644
index 0000000..3abd17c
--- /dev/null
+++ b/debian/po/ja.po
@@ -0,0 +1,121 @@
+#
+# Translators, if you are not familiar with the PO format, gettext
+# documentation is worth reading, especially sections dedicated to
+# this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+#
+# Some information specific to po-debconf are available at
+# /usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+# Developers do not need to manually edit POT or PO files.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-2\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-07-29 15:58+0900\n"
+"Last-Translator: Hideki Yamane \n"
+"Language-Team: Japanese\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "自動的に設定する Web サーバ:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr "phpBB 用に自動的に設定するウェブサーバを選んでください。"
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "phpBB admin のパスワードを設定しますか?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "phpBB admin のパスワード:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "phpBBの「admin」ユーザのパスワードを入力してください。"
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "パスワードは最低 6 文字の長さが必要です。"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "パスワードを空のままにすると、ランダムなパスワードが生成されます。"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "パスワードの確認:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "phpBBの「admin」ユーザのパスワードを再度入力してください。"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "パスワードが一致しません"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "入力された二つのパスワードが同じではありません。再度入力してください。"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "ランダムなパスワードの生成"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "以下のランダムパスワードが admin ユーザに対して設定されました:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "これは平文で保存されませんので、きちんと覚えておいてください。"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "パスワードの複雑性要件"
+
diff --git a/debian/po/nl.po b/debian/po/nl.po
new file mode 100644
index 0000000..424684d
--- /dev/null
+++ b/debian/po/nl.po
@@ -0,0 +1,128 @@
+#
+# Translators, if you are not familiar with the PO format, gettext
+# documentation is worth reading, especially sections dedicated to
+# this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+#
+# Some information specific to po-debconf are available at
+# /usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+# Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb2 2.0.18-2\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 20:41-0400\n"
+"PO-Revision-Date: 2010-05-30 18:16+0200\n"
+"Last-Translator: Thijs Kinkhorst \n"
+"Language-Team: Dutch \n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Webserver(s) om in te stellen:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Geef aan welke webserver(s) automatisch geconfigureerd moeten "
+"worden voor phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "phpBB beheerswachtwoord instellen?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Wachtwoord voor de phpBB-beheerder:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Geef een wachtwoord voor de phpBB-gebruiker \"admin\"."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Het wachtwoord moet minstens 6 karakters land zijn."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr ""
+"Wordt het veld leeggelaten, dan zal een willekeurig wachtwoord worden "
+"gegenereerd."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Bevestig wachtwoord:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr ""
+"Geef ter bevestiging nogmaals het wachtwoord voor de phpBB-"
+"gebruiker \"admin\"."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Wachtwoorden komen niet overeen"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr ""
+"De twee ingegeven wachtwoorden komen niet overeen. Probeer "
+"het s.v.p. opnieuw."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Willekeurig wachtwoord gegenereerd"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Het volgende wachtwoord is gegenereerd voor de beheerder:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Onthoud het goed, aangezien het niet in cleartext wordt opgeslagen."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Eisen aan het wachtwoord"
+
diff --git a/debian/po/pt.po b/debian/po/pt.po
new file mode 100644
index 0000000..58a211d
--- /dev/null
+++ b/debian/po/pt.po
@@ -0,0 +1,148 @@
+# translation of phpbb3 debconf to Portuguese
+# Copyright (C) 2008 the phpbb3's copyright holder
+# This file is distributed under the same license as the phpbb3 package.
+#
+# Américo Monteiro , 2008, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-1\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-05-28 00:29+0100\n"
+"Last-Translator: Américo Monteiro \n"
+"Language-Team: Portuguese \n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Servidor web para configurar automaticamente:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Por favor seleccione qualquer servidor web que deverá ser configurado "
+"automaticamente para o phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Configurar a palavra-passe do administrador do phpBB?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Palavra-passe para o administrador do phpBB:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr ""
+"Por favor forneça uma palavra-passe para o utilizador \"admin\" do phpBB."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "A palavra-passe tem de ter pelo menos 6 caracteres."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Se a palavra-passe for deixada em branco, será gerada uma aleatória."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Confirmação da palavra-passe:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr ""
+"Por favor confirme a palavra-passe para o utilizador \"admin\" do phpBB."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "As palavras-passe não condizem"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr ""
+"As duas palavras-passe que inseriu não são iguais. Por favor tente de novo."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Geração de palavra-passe aleatória"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr ""
+"A seguinte palavra-passe aleatória foi configurada para o utilizador admin:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr ""
+"Certifique-se que a memoriza, pois não vai ser guardada em texto normal."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Requisitos de complexidade da palavra-passe"
+
+#~ msgid "The password must not be 'admin'."
+#~ msgstr "A palavra-passe não pode ser 'admin'."
+
+#~ msgid "The password and its confirmation do not match."
+#~ msgstr "A palavra-passe e a sua confirmação não condizem."
+
+#~ msgid "apache2"
+#~ msgstr "apache2"
+
+#~ msgid "lighttpd"
+#~ msgstr "lighttpd"
+
+#~ msgid ""
+#~ "phpBB runs on any webserver with PHP support. However, only Apache "
+#~ "variants are currently supported by this configuration script. Select the "
+#~ "one(s) you want to configure."
+#~ msgstr ""
+#~ "O phpBB corre em qualquer servidor web com suporte PHP. No entanto, "
+#~ "apenas as variantes Apache são actualmente suportadas por este script de "
+#~ "configuração. Seleccione aquele(s) que deseja configurar."
+
+#~ msgid ""
+#~ "Note: You will need to restart the server(s) yourself (typically by "
+#~ "running something like /etc/init.d/apache-??? reload)."
+#~ msgstr ""
+#~ "Nota: Terá que ser você a reiniciar o(s) servidor(es) (tipicamente "
+#~ "correndo algo como /etc/init.d/apache-??? reload)."
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
new file mode 100644
index 0000000..8bd12a8
--- /dev/null
+++ b/debian/po/pt_BR.po
@@ -0,0 +1,116 @@
+# Debconf translations for phpbb3.
+# Copyright (C) 2012 THE phpbb3'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the phpbb3 package.
+# J.S.Júnior , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 20:41-0400\n"
+"PO-Revision-Date: 2012-02-25 02:15-0200\n"
+"Last-Translator: J.S.Júnior \n"
+"Language-Team: Brazilian Portuguese \n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Servidor web para configurar automaticamente:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Por favor, selecione um servidor web para ser configurado automaticamente "
+"para o phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Configurar a senha para o admin do phpBB?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Senha para admin do phpBB:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Por favor, forneça uma senha para o usuário \"admin\" do phpBB."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "A senha deve ter pelo menos 6 caracteres."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Se a senha for deixada em branco, uma senha aleatória será gerada."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Confirmação de senha:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Por favor, confirme a senha para o usuário \"admin\" do phpBB."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Senhas não conferem"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr ""
+"As duas senhas que você digitou eram diferentes. Por favor, tente novamente."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Geração de senha aleatória"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "A seguinte senha aleatória foi configurada para o usuário admin:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr ""
+"Certifique-se de lembrá-la, uma vez que não será armazenada em texto puro."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Requisitos de complexidade de senha"
diff --git a/debian/po/ru.po b/debian/po/ru.po
new file mode 100644
index 0000000..47b1c57
--- /dev/null
+++ b/debian/po/ru.po
@@ -0,0 +1,141 @@
+# translation of ru.po to Russian
+#
+# Translators, if you are not familiar with the PO format, gettext
+# documentation is worth reading, especially sections dedicated to
+# this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+# Some information specific to po-debconf are available at
+# /usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+# Developers do not need to manually edit POT or PO files.
+#
+# Yuriy Talakan' , 2006.
+# Yuri Kozlov , 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-2\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 20:41-0400\n"
+"PO-Revision-Date: 2010-06-06 21:53+0400\n"
+"Last-Translator: Yuri Kozlov \n"
+"Language-Team: Russian \n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Веб-сервер для автоматической настройки:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+"Выберите веб-сервер, который нужно настроить автоматически для работы phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Настроить пароль к admin для phpBB?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Пароль к admin для phpBB:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Введите пароль пользователя \"admin\" для phpBB."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Пароль должен быть не менее 6 символов."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr ""
+"Если оставить пароль пустым, то будет сгенерирован произвольный пароль."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Повторный ввод пароля:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Введите пароль для пользователя \"admin\" к phpBB ещё раз."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Пароли не совпадают"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "Введены разные пароли. Попробуйте ещё раз."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Генерация произвольного пароля"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Для пользователя admin был создан следующий произвольный пароль:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Запомните его, он не будет храниться в открытом виде."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Требования к сложности пароля"
+
+#~ msgid ""
+#~ "phpBB runs on any webserver with PHP support. However, only Apache "
+#~ "variants are currently supported by this configuration script. Select the "
+#~ "one(s) you want to configure."
+#~ msgstr ""
+#~ "phpBB работает на любом веб-сервере с поддержкой PHP. Однако данный "
+#~ "сценарий настройки поддерживает только варианты Apache. Выберите нужный "
+#~ "сервер для настройки."
+
+#~ msgid ""
+#~ "Note: You will need to restart the server(s) yourself (typically by "
+#~ "running something like /etc/init.d/apache-??? reload)."
+#~ msgstr ""
+#~ "Замечание: Вам надо перезапустить сервер(ы) самостоятельно (обычно, "
+#~ "набрав что-то вида /etc/init.d/apache-??? reload)."
diff --git a/debian/po/sv.po b/debian/po/sv.po
new file mode 100644
index 0000000..ed43d08
--- /dev/null
+++ b/debian/po/sv.po
@@ -0,0 +1,117 @@
+# translation of phpbb3_sv.po to Swedish
+# Translation of phpbb3 debconf template to Swedish
+# Copyright (C) 2010 Martin Bagge
+# This file is distributed under the same license as the phpbb3 package.
+#
+# Martin Ågren , 2010.
+# Martin Bagge , 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3_sv\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-06-06 12:29+0200\n"
+"Last-Translator: Martin Ågren \n"
+"Language-Team: Swedish \n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Swedish\n"
+"X-Poedit-Country: Sweden\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr "Webbserver att konfigurera automatiskt:"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Please select any web server that should be configured automatically for phpBB."
+msgstr "Välj webbserver som ska konfigureras automatiskt för phpBB."
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr "Ange lösenord för phpBB-administratör?"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr "Lösenord för phpBB-administratör:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Ange ett lösenord för phpBB-användaren \"admin\"."
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001
+#: ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr "Lösenordet måste vara minst 6 tecken långt."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Om lösenordsfältet lämnas tomt kommer ett slumpmässigt lösenord att användas."
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr "Upprepa lösenord:"
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Upprepa lösenordet för phpBB-användaren \"admin\"."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr "Lösenorden stämmer inte överens"
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "Lösenorden stämmer inte överens. Försök igen."
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr "Skapar slumpmässigt lösenord"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr "Följande slumpmässiga lösenord har angivits för den administrativa användaren:"
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Lösenordet kommer inte att sparas i klartext, så se till att komma ihåg det."
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr "Krav på komplexitet för lösenord"
+
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
new file mode 100644
index 0000000..fd3f78c
--- /dev/null
+++ b/debian/po/templates.pot
@@ -0,0 +1,112 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 20:41-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid "Web server to configure automatically:"
+msgstr ""
+
+#. Type: multiselect
+#. Description
+#: ../phpbb3.templates:1001
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../phpbb3.templates:2001
+msgid "Configure the phpBB admin password?"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Password for phpBB admin:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr ""
+
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+#: ../phpbb3.templates:3001 ../phpbb3.templates:7001
+msgid "The password must be at least 6 characters long."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:3001
+msgid "If the password is left blank, a random one will be generated."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Password confirmation:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../phpbb3.templates:4001
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "Password mismatch"
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:5001
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Generation of random password"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "The following random password has been configured for the admin user:"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../phpbb3.templates:6001
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../phpbb3.templates:7001
+msgid "Password complexity requirements"
+msgstr ""
diff --git a/debian/po/vi.po b/debian/po/vi.po
new file mode 100644
index 0000000..8035727
--- /dev/null
+++ b/debian/po/vi.po
@@ -0,0 +1,113 @@
+# Vietnamese translation for phpbb3.
+# Copyright © 2010 Free Software Foundation, Inc.
+# Clytie Siddall , 2005-2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: phpbb3 3.0.7-PL1-2\n"
+"Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n"
+"POT-Creation-Date: 2010-05-27 18:45-0400\n"
+"PO-Revision-Date: 2010-09-30 18:08+0930\n"
+"Last-Translator: Clytie Siddall \n"
+"Language-Team: Vietnamese \n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: LocFactoryEditor 1.8\n"
+
+#: ../phpbb3.templates:1001
+#. Type: multiselect
+#. Description
+msgid "Web server to configure automatically:"
+msgstr "Trình phục vụ Web cần tự động cấu hình:"
+
+#: ../phpbb3.templates:1001
+#. Type: multiselect
+#. Description
+msgid ""
+"Please select any web server that should be configured automatically for "
+"phpBB."
+msgstr "Hãy chọn bất cứ trình phục vụ Web nào cần tự động cấu hình cho phpBB."
+
+#: ../phpbb3.templates:2001
+#. Type: boolean
+#. Description
+msgid "Configure the phpBB admin password?"
+msgstr "Lập mật khẩu quản trị phpBB ?"
+
+#: ../phpbb3.templates:3001
+#. Type: password
+#. Description
+msgid "Password for phpBB admin:"
+msgstr "Mật khẩu cho quản trị phpBB:"
+
+#: ../phpbb3.templates:3001
+#. Type: password
+#. Description
+msgid "Please provide a password for the phpBB user \"admin\"."
+msgstr "Hãy cung cấp một mật khẩu cho người dùng phpBB « admin » (quản trị)."
+
+#: ../phpbb3.templates:3001
+#: ../phpbb3.templates:7001
+#. Type: password
+#. Description
+#. Type: error
+#. Description
+msgid "The password must be at least 6 characters long."
+msgstr "Mật khẩu này phải có chiều dài ít nhất 6 ký tự."
+
+#: ../phpbb3.templates:3001
+#. Type: password
+#. Description
+msgid "If the password is left blank, a random one will be generated."
+msgstr "Bỏ trống trường mật khẩu này thì tự động tạo ra một mật khẩu ngẫu nhiên."
+
+#: ../phpbb3.templates:4001
+#. Type: password
+#. Description
+msgid "Password confirmation:"
+msgstr "Xác nhận mật khẩu :"
+
+#: ../phpbb3.templates:4001
+#. Type: password
+#. Description
+msgid "Please confirm the password for the phpBB user \"admin\"."
+msgstr "Hãy gõ lại mật khẩu cho người dùng phpBB « admin » (quản trị)."
+
+#: ../phpbb3.templates:5001
+#. Type: error
+#. Description
+msgid "Password mismatch"
+msgstr "Sai khớp mật khẩu"
+
+#: ../phpbb3.templates:5001
+#. Type: error
+#. Description
+msgid "The two passwords you entered were not the same. Please try again."
+msgstr "Bạn đã gõ hai mật khẩu khác nhau. Hãy thử lại."
+
+#: ../phpbb3.templates:6001
+#. Type: note
+#. Description
+msgid "Generation of random password"
+msgstr "Tạo ra mật khẩu ngẫu nhiên"
+
+#: ../phpbb3.templates:6001
+#. Type: note
+#. Description
+msgid "The following random password has been configured for the admin user:"
+msgstr "Mật khẩu ngẫu nhiên theo đây đã được lập cho người dùng quản trị:"
+
+#: ../phpbb3.templates:6001
+#. Type: note
+#. Description
+msgid "Make sure you remember it, as it will not be stored in cleartext."
+msgstr "Ghi nhớ nhé, vì mật khẩu này không phải được cất giữ như văn bản rõ."
+
+#: ../phpbb3.templates:7001
+#. Type: error
+#. Description
+msgid "Password complexity requirements"
+msgstr "Yêu cầu mức phức tạp mật khẩu"
diff --git a/debian/postgres_update_seqs.sh b/debian/postgres_update_seqs.sh
new file mode 100755
index 0000000..6267615
--- /dev/null
+++ b/debian/postgres_update_seqs.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+[ -z "$1" -o ! -f "$1" ] && echo "No schema given or schema does not exist." && exit 1
+schema="$1"
+for s in $(sed -n 's/^CREATE SEQUENCE \(.\+\);/\1/ p' < $schema); do
+ for c in $(grep $s $schema | grep nextval | awk '{print $1}'); do
+# echo "SELECT MAX($c) FROM ${s#_seq};"
+# echo "SELECT nextval('$s');"
+ echo "ALTER SEQUENCE $s MINVALUE 1;"
+ echo "SELECT setval('$s', (SELECT MAX($c) FROM ${s%_seq})+1, false);"
+ done
+done
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b188641
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,79 @@
+#!/usr/bin/make -f
+# $Id$
+#
+# debian/rules file for phpbb3 Debian package
+#
+# Written from scratch, with inspiration from apache's debian/rules, and the
+# examples from dh_make
+# Copyright 2002, 2004 Jeroen van Wolffelaar
+#
+# Complete overhaul for debhelper 7 and dpkg source format 3 (quilt)
+# Copyright 2010 J.M. Roth
+#
+# Distributed under the GNU General Public License version 2
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# Bash is easier
+export SHELL = /bin/bash
+
+VERSION := $(shell head -1 debian/changelog | sed 's/.*(//;s/).*//')
+UPSTREAM := $(shell head -1 debian/changelog | sed 's/.*(//;s/-.?*).*//')
+# Last version that matches the database
+LAST_VERSION := 3.0.12
+
+get-orig-source:
+ debian/get-orig-source ${UPSTREAM} _all
+ @# mv *.orig*.tar* ..
+
+override_dh_auto_clean:
+ debconf-updatepo -v
+
+override_dh_installchangelogs:
+ dh_installchangelogs docs/CHANGELOG.html -pphpbb3
+ dh_installchangelogs -pphpbb3-l10n
+
+override_dh_installdeb:
+ @# customize the stuff in the build directory
+ rm debian/phpbb3/usr/share/phpbb3/install/schemas/index.htm
+ cd debian/phpbb3/usr/share/phpbb3/docs && rm AUTHORS COPYING INSTALL.html
+ sed -i "s/@VERSION@/$(VERSION) (Debian)/" debian/phpbb3/usr/share/phpbb3/www/common.php
+
+ install -m 0755 debian/database_update_debian.php debian/phpbb3/usr/share/phpbb3/install/database_update_debian.php
+
+ @# prune the language packs
+ find debian/phpbb3-l10n/usr/share/phpbb3/www/language \( -name docs -o -name mods \) -type d -print0 | xargs -0r rm -r
+ find debian/phpbb3-l10n/usr/share/phpbb3/www/language \( -name AUTHORS -o -name COPYING -o -name LICENSE -o -name README -o -name VERSION \) -type f -print0 | xargs -0r rm
+
+ @### dbconfig install
+
+ @# mysql
+ cp install/schemas/mysql_41_schema.sql debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/mysql
+ cat debian/schema_data_debian.sql >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/mysql
+
+ @# postgres
+ cp install/schemas/postgres_schema.sql debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql
+ cat debian/schema_data_debian.sql | sed "s/# POSTGRES BEGIN #/BEGIN;/" | sed "s/^#.*//" | sed -e 's/`/"/g' -e 's/UNIX_TIMESTAMP()/EXTRACT(EPOCH FROM CURRENT_TIMESTAMP(0))/' >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql
+ debian/postgres_update_seqs.sh install/schemas/postgres_schema.sql >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql
+ echo "COMMIT;" >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql
+
+ @# sqlite
+ grep -v ^# install/schemas/sqlite_schema.sql > debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/sqlite
+ debian/sqliteconv1.sh debian/schema_data_debian.sql | perl -p debian/sqliteconv2.pl \
+ >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/sqlite
+
+ @### dbconfig update
+ @###(some update /data/ copied via dh_install already)
+
+ @# mysql
+ install -m 0755 debian/database_update_debian.php debian/phpbb3/usr/share/dbconfig-common/scripts/phpbb3/upgrade/mysql/$(LAST_VERSION)
+
+ @# postgres
+ @#scripts
+ install -m 0755 debian/database_update_debian.php debian/phpbb3/usr/share/dbconfig-common/scripts/phpbb3/upgrade/pgsql/$(LAST_VERSION)
+
+ dh_installdeb
+
+%:
+ dh $@
diff --git a/debian/schema_data_debian.sql b/debian/schema_data_debian.sql
new file mode 100644
index 0000000..34e3a70
--- /dev/null
+++ b/debian/schema_data_debian.sql
@@ -0,0 +1,1386 @@
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,85,0,1);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,93,0,1);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,110,0,1);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,5,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,1,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,6,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,0,0,6,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,5,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,10,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,1,0,17,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,1,0,17,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,1,0,17,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,1,0,17,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,2,0,17,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,2,0,15,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,2,0,15,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,2,0,21,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,14,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,10,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,2,0,19,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,0,0,23,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,1,0,24,0);
+INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,2,0,24,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (1,'f_',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (2,'f_announce',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (3,'f_attach',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (4,'f_bbcode',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (5,'f_bump',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (6,'f_delete',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (7,'f_download',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (8,'f_edit',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (9,'f_email',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (10,'f_flash',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (11,'f_icons',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (12,'f_ignoreflood',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (13,'f_img',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (14,'f_list',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (15,'f_noapprove',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (16,'f_poll',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (17,'f_post',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (18,'f_postcount',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (19,'f_print',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (20,'f_read',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (21,'f_reply',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (22,'f_report',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (23,'f_search',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (24,'f_sigs',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (25,'f_smilies',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (26,'f_sticky',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (27,'f_subscribe',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (28,'f_user_lock',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (29,'f_vote',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (30,'f_votechg',0,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (31,'m_',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (32,'m_approve',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (33,'m_chgposter',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (34,'m_delete',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (35,'m_edit',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (36,'m_info',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (37,'m_lock',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (38,'m_merge',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (39,'m_move',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (40,'m_report',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (41,'m_split',1,1,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (42,'m_ban',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (43,'m_warn',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (44,'a_',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (45,'a_aauth',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (46,'a_attach',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (47,'a_authgroups',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (48,'a_authusers',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (49,'a_backup',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (50,'a_ban',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (51,'a_bbcode',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (52,'a_board',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (53,'a_bots',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (54,'a_clearlogs',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (55,'a_email',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (56,'a_fauth',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (57,'a_forum',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (58,'a_forumadd',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (59,'a_forumdel',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (60,'a_group',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (61,'a_groupadd',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (62,'a_groupdel',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (63,'a_icons',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (64,'a_jabber',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (65,'a_language',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (66,'a_mauth',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (67,'a_modules',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (68,'a_names',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (69,'a_phpinfo',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (70,'a_profile',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (71,'a_prune',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (72,'a_ranks',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (73,'a_reasons',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (74,'a_roles',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (75,'a_search',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (76,'a_server',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (77,'a_styles',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (78,'a_switchperm',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (79,'a_uauth',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (80,'a_user',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (81,'a_userdel',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (82,'a_viewauth',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (83,'a_viewlogs',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (84,'a_words',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (85,'u_',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (86,'u_attach',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (87,'u_chgavatar',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (88,'u_chgcensors',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (89,'u_chgemail',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (90,'u_chggrp',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (91,'u_chgname',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (92,'u_chgpasswd',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (93,'u_download',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (94,'u_hideonline',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (95,'u_ignoreflood',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (96,'u_masspm',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (97,'u_pm_attach',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (98,'u_pm_bbcode',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (99,'u_pm_delete',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (100,'u_pm_download',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (101,'u_pm_edit',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (102,'u_pm_emailpm',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (103,'u_pm_flash',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (104,'u_pm_forward',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (105,'u_pm_img',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (106,'u_pm_printpm',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (107,'u_pm_smilies',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (108,'u_readpm',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (109,'u_savedrafts',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (110,'u_search',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (111,'u_sendemail',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (112,'u_sendim',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (113,'u_sendpm',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (114,'u_sig',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (115,'u_viewonline',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (116,'u_viewprofile',1,0,0);
+INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (117,'u_masspm_group',1,0,0);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (1,'ROLE_ADMIN_STANDARD','ROLE_DESCRIPTION_ADMIN_STANDARD','a_',1);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (2,'ROLE_ADMIN_FORUM','ROLE_DESCRIPTION_ADMIN_FORUM','a_',3);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (3,'ROLE_ADMIN_USERGROUP','ROLE_DESCRIPTION_ADMIN_USERGROUP','a_',4);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (4,'ROLE_ADMIN_FULL','ROLE_DESCRIPTION_ADMIN_FULL','a_',2);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (5,'ROLE_USER_FULL','ROLE_DESCRIPTION_USER_FULL','u_',3);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (6,'ROLE_USER_STANDARD','ROLE_DESCRIPTION_USER_STANDARD','u_',1);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (7,'ROLE_USER_LIMITED','ROLE_DESCRIPTION_USER_LIMITED','u_',2);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (8,'ROLE_USER_NOPM','ROLE_DESCRIPTION_USER_NOPM','u_',4);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (9,'ROLE_USER_NOAVATAR','ROLE_DESCRIPTION_USER_NOAVATAR','u_',5);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (10,'ROLE_MOD_FULL','ROLE_DESCRIPTION_MOD_FULL','m_',3);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (11,'ROLE_MOD_STANDARD','ROLE_DESCRIPTION_MOD_STANDARD','m_',1);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (12,'ROLE_MOD_SIMPLE','ROLE_DESCRIPTION_MOD_SIMPLE','m_',2);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (13,'ROLE_MOD_QUEUE','ROLE_DESCRIPTION_MOD_QUEUE','m_',4);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (14,'ROLE_FORUM_FULL','ROLE_DESCRIPTION_FORUM_FULL','f_',7);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (15,'ROLE_FORUM_STANDARD','ROLE_DESCRIPTION_FORUM_STANDARD','f_',5);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (16,'ROLE_FORUM_NOACCESS','ROLE_DESCRIPTION_FORUM_NOACCESS','f_',1);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (17,'ROLE_FORUM_READONLY','ROLE_DESCRIPTION_FORUM_READONLY','f_',2);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (18,'ROLE_FORUM_LIMITED','ROLE_DESCRIPTION_FORUM_LIMITED','f_',3);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (19,'ROLE_FORUM_BOT','ROLE_DESCRIPTION_FORUM_BOT','f_',9);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (20,'ROLE_FORUM_ONQUEUE','ROLE_DESCRIPTION_FORUM_ONQUEUE','f_',8);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (21,'ROLE_FORUM_POLLS','ROLE_DESCRIPTION_FORUM_POLLS','f_',6);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (22,'ROLE_FORUM_LIMITED_POLLS','ROLE_DESCRIPTION_FORUM_LIMITED_POLLS','f_',4);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (23,'ROLE_USER_NEW_MEMBER','ROLE_DESCRIPTION_USER_NEW_MEMBER','u_',6);
+INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (24,'ROLE_FORUM_NEW_MEMBER','ROLE_DESCRIPTION_FORUM_NEW_MEMBER','f_',10);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,44,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,46,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,47,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,48,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,50,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,51,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,52,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,56,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,57,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,58,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,59,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,60,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,61,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,62,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,63,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,66,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,68,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,70,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,71,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,72,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,73,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,79,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,80,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,81,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,82,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,83,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,84,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,44,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,47,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,48,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,56,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,57,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,58,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,59,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,66,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,71,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,79,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,82,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,83,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,44,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,47,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,48,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,50,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,60,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,61,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,62,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,72,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,79,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,80,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,82,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,83,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,44,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,45,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,46,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,47,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,48,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,49,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,50,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,51,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,52,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,53,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,54,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,55,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,56,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,57,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,58,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,59,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,60,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,61,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,62,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,63,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,64,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,65,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,66,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,67,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,68,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,69,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,70,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,71,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,72,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,73,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,74,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,75,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,76,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,77,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,78,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,79,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,80,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,81,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,82,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,83,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,84,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,85,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,86,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,87,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,88,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,89,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,90,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,91,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,92,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,93,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,94,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,95,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,96,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,97,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,98,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,99,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,100,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,101,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,102,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,103,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,104,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,105,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,106,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,107,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,108,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,109,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,110,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,111,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,112,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,113,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,114,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,115,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,116,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,117,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,85,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,86,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,87,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,88,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,89,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,92,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,93,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,94,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,96,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,97,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,98,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,99,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,100,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,101,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,102,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,105,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,106,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,107,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,108,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,109,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,110,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,111,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,112,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,113,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,114,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,116,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,117,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,85,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,87,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,88,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,89,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,92,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,93,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,94,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,96,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,98,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,99,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,100,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,101,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,104,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,105,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,106,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,107,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,108,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,113,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,114,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,116,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,117,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,85,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,87,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,88,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,89,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,92,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,93,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,94,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,96,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,108,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,113,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,114,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,116,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,117,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,85,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,87,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,88,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,89,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,92,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,93,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,94,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,96,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,98,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,99,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,100,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,101,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,104,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,105,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,106,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,107,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,108,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,113,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,114,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,116,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,117,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,31,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,32,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,33,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,34,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,35,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,36,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,37,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,38,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,39,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,40,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,41,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,42,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,43,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,31,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,32,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,34,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,35,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,36,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,37,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,38,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,39,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,40,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,41,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,43,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,31,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,34,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,35,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,36,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,40,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,31,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,32,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,35,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,2,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,3,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,4,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,5,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,6,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,8,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,9,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,10,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,11,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,12,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,13,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,15,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,16,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,17,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,18,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,21,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,22,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,24,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,25,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,26,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,28,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,29,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,30,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,3,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,4,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,5,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,6,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,8,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,9,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,11,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,13,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,15,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,17,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,18,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,21,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,22,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,24,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,25,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,29,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,30,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (16,1,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,4,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,8,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,9,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,13,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,15,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,17,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,18,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,21,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,22,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,24,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,25,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,29,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,3,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,4,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,8,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,9,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,13,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,15,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,17,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,18,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,21,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,22,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,24,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,25,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,29,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,3,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,4,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,5,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,6,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,8,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,9,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,11,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,13,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,15,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,16,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,17,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,18,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,21,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,22,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,24,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,25,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,29,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,30,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,1,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,4,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,7,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,8,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,9,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,13,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,14,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,15,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,16,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,17,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,18,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,19,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,20,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,21,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,22,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,23,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,24,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,25,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,27,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,29,1);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,96,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,113,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,117,0);
+INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (24,15,0);
+INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,5,0);
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (1,1,'AdsBot [Google]',3,'AdsBot-Google','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (2,1,'Alexa [Bot]',4,'ia_archiver','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (3,1,'Alta Vista [Bot]',5,'Scooter/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (4,1,'Ask Jeeves [Bot]',6,'Ask Jeeves','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (5,1,'Baidu [Spider]',7,'Baiduspider','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (6,1,'Exabot [Bot]',8,'Exabot','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (7,1,'FAST Enterprise [Crawler]',9,'FAST Enterprise Crawler','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (8,1,'FAST WebCrawler [Crawler]',10,'FAST-WebCrawler/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (9,1,'Francis [Bot]',11,'http://www.neomo.de/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (10,1,'Gigabot [Bot]',12,'Gigabot/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (11,1,'Google Adsense [Bot]',13,'Mediapartners-Google/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (12,1,'Google Desktop',14,'Google Desktop','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (13,1,'Google Feedfetcher',15,'Feedfetcher-Google','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (14,1,'Google [Bot]',16,'Googlebot','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (15,1,'Heise IT-Markt [Crawler]',17,'heise-IT-Markt-Crawler','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (16,1,'Heritrix [Crawler]',18,'heritrix/1.','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (17,1,'IBM Research [Bot]',19,'ibm.com/cs/crawler','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (18,1,'ICCrawler - ICjobs',20,'ICCrawler - ICjobs','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (19,1,'ichiro [Crawler]',21,'ichiro/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (20,1,'Majestic-12 [Bot]',22,'MJ12bot/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (21,1,'Metager [Bot]',23,'MetagerBot/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (22,1,'MSN NewsBlogs',24,'msnbot-NewsBlogs/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (23,1,'MSN [Bot]',25,'msnbot/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (24,1,'MSNbot Media',26,'msnbot-media/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (26,1,'Nutch [Bot]',28,'http://lucene.apache.org/nutch/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (29,1,'Online link [Validator]',31,'online link validator','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (30,1,'psbot [Picsearch]',32,'psbot/0','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (32,1,'Sensis [Crawler]',34,'Sensis Web Crawler','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (33,1,'SEO Crawler',35,'SEO search Crawler/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (34,1,'Seoma [Crawler]',36,'Seoma [SEO Crawler]','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (35,1,'SEOSearch [Crawler]',37,'SEOsearch/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (36,1,'Snappy [Bot]',38,'Snappy/1.1 ( http://www.urltrends.com/ )','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (37,1,'Steeler [Crawler]',39,'http://www.tkl.iis.u-tokyo.ac.jp/~crawler/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (39,1,'Telekom [Bot]',41,'crawleradmin.t-info@telekom.de','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (40,1,'TurnitinBot [Bot]',42,'TurnitinBot/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (41,1,'Voyager [Bot]',43,'voyager/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (42,1,'W3 [Sitesearch]',44,'W3 SiteSearch Crawler','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (43,1,'W3C [Linkcheck]',45,'W3C-checklink/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (44,1,'W3C [Validator]',46,'W3C_Validator','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (46,1,'Yacy [Bot]',48,'yacybot','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (47,1,'Yahoo MMCrawler [Bot]',49,'Yahoo-MMCrawler/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (48,1,'Yahoo Slurp [Bot]',50,'Yahoo! DE Slurp','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (49,1,'Yahoo [Bot]',51,'Yahoo! Slurp','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (50,1,'YahooSeeker [Bot]',52,'YahooSeeker/','');
+INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (51,1,'Bing [Bot]',53,'bingbot/','');
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('active_sessions','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_attachments','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_autologin','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_local','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote_upload','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_upload','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bbcode','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_birthdays','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bookmarks','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_emailreuse','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_forum_notify','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_mass_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_name_chars','USERNAME_CHARS_ANY',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_namechange','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_nocensors','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_attach','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_report','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_flash','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_links','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_privmsg','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_quick_reply','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_bbcode','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_flash','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_img','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_links','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_smilies','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_smilies','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_topic_notify','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('attachment_quota','52428800',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_bbcode_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_flash_pm','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_img_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_method','db',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_smilies_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_filesize','6144',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_gallery_path','images/avatars/gallery',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_height','90',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_width','90',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_height','20',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_width','20',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_path','images/avatars/upload',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_salt','phpbb_avatar',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_contact','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable_msg','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_dst','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_form','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_sig','Thanks, The Management',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_hide_emails','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_startdate','1268943869',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_timezone','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('browser_check','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_interval','10',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_type','d',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_gc','7200',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_3d_noise','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_fonts','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_foreground_noise','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_wave','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_x_grid','@DEB_CAPTCHA_X_RAND@',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_y_grid','@DEB_CAPTCHA_Y_RAND@',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_plugin','phpbb_captcha_gd',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_attachment_content','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_dnsbl','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('chg_passforce','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('confirm_refresh','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_domain','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_name','phpbb3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_path','/',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_secure','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_enable','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_fax','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_mail','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_gc','604800',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('dbms_version','5.5.33-1-log',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_dateformat','D M d, Y g:i a',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_lang','en',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_style','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('delete_time','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_last_edited','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_order','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('edit_time','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_check_mx','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_enable','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_function_name','mail',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_package_size','20',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_confirm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_pm_icons','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_post_confirm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_queue_trigger','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_enable','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_forum','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_http_auth','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_item_statistics','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit','10',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_post','10',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_topic','15',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums_limit','15',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics_limit','15',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topic','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_active','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_new','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('flood_interval','15',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('force_server_vars','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_lifetime','7200',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_mintime','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_sid_guests','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forward_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forwarded_for_check','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('full_folder_action','2',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_max_word_len','254',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_min_word_len','4',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_common_thres','5',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_load_upd','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_max_chars','14',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_min_chars','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('gzip_compress','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('hot_threshold','25',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('icons_path','images/icons',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_create_thumbnail','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_display_inlined','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_imagick','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_height','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_width','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_height','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_thumb_width','400',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_width','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_min_thumb_filesize','12000',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_check','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_max','50',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_time','21600',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_use_forwarded','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_enable','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_host','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_package_size','20',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_password','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_port','5222',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_use_ssl','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_username','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_base_dn','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_email','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_password','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_port','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_server','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_uid','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user_filter','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_load','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_search_load','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_anon_lastread','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_birthdays','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_memberlist','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewprofile','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewtopic','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_lastread','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_track','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_jumpbox','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_moderators','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_guests','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_time','5',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_onlinetrack','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_search','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_tplcompile','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_unreads_search','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_user_activity','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_autologin_time','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize','262144',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize_pm','262144',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_login_attempts','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_name_chars','20',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_num_search_keywords','10',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_pass_chars','30',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_poll_options','10',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_chars','60000',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_font_size','200',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_height','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_width','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_smilies','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_urls','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_quote_depth','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_reg_attempts','5',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_chars','255',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_font_size','200',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_height','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_width','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_smilies','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_urls','5',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('mime_triggers','body|head|html|img|plaintext|a href|pre|script|table|title',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_name_chars','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_pass_chars','6',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_post_chars','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_search_author_chars','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_group_default','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_post_limit','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour','AA0000',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id','2',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username','',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts','1',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics','1',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users','1',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('override_user_style','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pass_complex','PASS_TYPE_ANY',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_edit_time','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_boxes','4',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_msgs','50',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_recipients','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('posts_per_page','10',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('print_pm','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_interval','60',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_trigger_posts','3',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ranks_path','images/ranks',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('referer_validation','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('require_activation','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('script_path','/phpbb',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_anonymous_interval','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_block_size','250',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_gc','7200',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state','',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_interval','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_store_results','1800',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_type','fulltext_native',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_deny','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_empty_referer','1',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_downloads','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_name','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_port','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_protocol','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_gc','3600',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_length','3600',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('site_desc','Powered by Debian',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('sitename','Your new phpBB board',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_path','images/smilies',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_per_page','50',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_auth_method','PLAIN',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_delivery','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_host','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_password','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_port','25',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_username','',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('topics_per_page','25',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('tpl_allow_php','0',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size','0',1);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_icons_path','images/upload_icons',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_path','files',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('version','3.0.12',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_expire_days','90',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_gc','14400',0);
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc','0',1);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (1,'IMAGES',1,1,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (2,'ARCHIVES',0,1,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (3,'PLAIN_TEXT',0,0,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (4,'DOCUMENTS',0,0,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (5,'REAL_MEDIA',3,0,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (6,'WINDOWS_MEDIA',2,0,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (7,'FLASH_FILES',5,0,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (8,'QUICKTIME_MEDIA',6,0,1,'',0,'',0);
+INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (9,'DOWNLOADABLE_FILES',0,0,1,'',0,'',0);
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (1,1,'gif');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (2,1,'png');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (3,1,'jpeg');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (4,1,'jpg');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (5,1,'tif');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (6,1,'tiff');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (7,1,'tga');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (8,2,'gtar');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (9,2,'gz');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (10,2,'tar');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (11,2,'zip');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (12,2,'rar');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (13,2,'ace');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (14,2,'torrent');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (15,2,'tgz');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (16,2,'bz2');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (17,2,'7z');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (18,3,'txt');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (19,3,'c');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (20,3,'h');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (21,3,'cpp');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (22,3,'hpp');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (23,3,'diz');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (24,3,'csv');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (25,3,'ini');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (26,3,'log');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (27,3,'js');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (28,3,'xml');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (29,4,'xls');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (30,4,'xlsx');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (31,4,'xlsm');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (32,4,'xlsb');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (33,4,'doc');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (34,4,'docx');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (35,4,'docm');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (36,4,'dot');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (37,4,'dotx');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (38,4,'dotm');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (39,4,'pdf');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (40,4,'ai');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (41,4,'ps');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (42,4,'ppt');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (43,4,'pptx');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (44,4,'pptm');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (45,4,'odg');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (46,4,'odp');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (47,4,'ods');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (48,4,'odt');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (49,4,'rtf');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (50,5,'rm');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (51,5,'ram');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (52,6,'wma');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (53,6,'wmv');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (54,7,'swf');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (55,8,'mov');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (56,8,'m4v');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (57,8,'m4a');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (58,8,'mp4');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (59,8,'3gp');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (60,8,'3g2');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (61,8,'qt');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (62,9,'mpeg');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (63,9,'mpg');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (64,9,'mp3');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (65,9,'ogg');
+INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (66,9,'ogm');
+INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (1,0,1,4,'','Example Category','','',7,'','','',0,'','','','',7,'',0,0,0,1,1,1,1,2,'',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0);
+INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (2,1,2,3,'','Example Forum','This forum serves as an example','',7,'','','',0,'','','','',7,'',0,1,0,1,1,1,1,2,'Test Topic',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (1,3,0,0,'GUESTS','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (2,3,0,0,'REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (3,3,0,0,'REGISTERED_COPPA','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (4,3,0,0,'GLOBAL_MODERATORS','','',7,'',0,'',0,0,0,0,'00AA00',0,0,0,0,1);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (5,3,1,0,'ADMINISTRATORS','','',7,'',0,'',0,0,0,0,'AA0000',0,0,0,0,1);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (6,3,0,0,'BOTS','','',7,'',0,'',0,0,0,0,'9E8DA7',0,0,0,5,0);
+INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (7,3,0,0,'NEWLY_REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (1,'misc/fire.gif',16,16,1,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (2,'smile/redface.gif',16,16,9,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (3,'smile/mrgreen.gif',16,16,10,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (4,'misc/heart.gif',16,16,4,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (5,'misc/star.gif',16,16,2,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (6,'misc/radioactive.gif',16,16,3,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (7,'misc/thinking.gif',16,16,5,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (8,'smile/info.gif',16,16,8,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (9,'smile/question.gif',16,16,6,1);
+INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (10,'smile/alert.gif',16,16,7,1);
+INSERT INTO phpbb_lang (lang_id, lang_iso, lang_dir, lang_english_name, lang_local_name, lang_author) VALUES (1,'en','en','English [GB]','English [GB]','phpBB Group');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (1,1,1,'','acp',0,1,64,'ACP_CAT_GENERAL','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (2,1,1,'','acp',1,4,17,'ACP_QUICK_ACCESS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (3,1,1,'','acp',1,18,41,'ACP_BOARD_CONFIGURATION','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (4,1,1,'','acp',1,42,49,'ACP_CLIENT_COMMUNICATION','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (5,1,1,'','acp',1,50,63,'ACP_SERVER_CONFIGURATION','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (6,1,1,'','acp',0,65,84,'ACP_CAT_FORUMS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (7,1,1,'','acp',6,66,71,'ACP_MANAGE_FORUMS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (8,1,1,'','acp',6,72,83,'ACP_FORUM_BASED_PERMISSIONS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (9,1,1,'','acp',0,85,110,'ACP_CAT_POSTING','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (10,1,1,'','acp',9,86,99,'ACP_MESSAGES','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (11,1,1,'','acp',9,100,109,'ACP_ATTACHMENTS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (12,1,1,'','acp',0,111,166,'ACP_CAT_USERGROUP','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (13,1,1,'','acp',12,112,145,'ACP_CAT_USERS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (14,1,1,'','acp',12,146,153,'ACP_GROUPS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (15,1,1,'','acp',12,154,165,'ACP_USER_SECURITY','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (16,1,1,'','acp',0,167,216,'ACP_CAT_PERMISSIONS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (17,1,1,'','acp',16,170,179,'ACP_GLOBAL_PERMISSIONS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (18,1,1,'','acp',16,180,191,'ACP_FORUM_BASED_PERMISSIONS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (19,1,1,'','acp',16,192,201,'ACP_PERMISSION_ROLES','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (20,1,1,'','acp',16,202,215,'ACP_PERMISSION_MASKS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (21,1,1,'','acp',0,217,230,'ACP_CAT_STYLES','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (22,1,1,'','acp',21,218,221,'ACP_STYLE_MANAGEMENT','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (23,1,1,'','acp',21,222,229,'ACP_STYLE_COMPONENTS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (24,1,1,'','acp',0,231,250,'ACP_CAT_MAINTENANCE','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (25,1,1,'','acp',24,232,241,'ACP_FORUM_LOGS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (26,1,1,'','acp',24,242,249,'ACP_CAT_DATABASE','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (27,1,1,'','acp',0,251,276,'ACP_CAT_SYSTEM','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (28,1,1,'','acp',27,252,255,'ACP_AUTOMATION','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (29,1,1,'','acp',27,256,267,'ACP_GENERAL_TASKS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (30,1,1,'','acp',27,268,275,'ACP_MODULE_MANAGEMENT','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (31,1,1,'','acp',0,277,278,'ACP_CAT_DOT_MODS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (32,1,1,'attachments','acp',3,19,20,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (33,1,1,'attachments','acp',11,101,102,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (34,1,1,'attachments','acp',11,103,104,'ACP_MANAGE_EXTENSIONS','extensions','acl_a_attach');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (35,1,1,'attachments','acp',11,105,106,'ACP_EXTENSION_GROUPS','ext_groups','acl_a_attach');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (36,1,1,'attachments','acp',11,107,108,'ACP_ORPHAN_ATTACHMENTS','orphan','acl_a_attach');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (37,1,1,'ban','acp',15,155,156,'ACP_BAN_EMAILS','email','acl_a_ban');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (38,1,1,'ban','acp',15,157,158,'ACP_BAN_IPS','ip','acl_a_ban');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (39,1,1,'ban','acp',15,159,160,'ACP_BAN_USERNAMES','user','acl_a_ban');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (40,1,1,'bbcodes','acp',10,87,88,'ACP_BBCODES','bbcodes','acl_a_bbcode');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (41,1,1,'board','acp',3,21,22,'ACP_BOARD_SETTINGS','settings','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (42,1,1,'board','acp',3,23,24,'ACP_BOARD_FEATURES','features','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (43,1,1,'board','acp',3,25,26,'ACP_AVATAR_SETTINGS','avatar','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (44,1,1,'board','acp',3,27,28,'ACP_MESSAGE_SETTINGS','message','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (45,1,1,'board','acp',10,89,90,'ACP_MESSAGE_SETTINGS','message','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (46,1,1,'board','acp',3,29,30,'ACP_POST_SETTINGS','post','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (47,1,1,'board','acp',3,31,32,'ACP_SIGNATURE_SETTINGS','signature','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (48,1,1,'board','acp',3,33,34,'ACP_REGISTER_SETTINGS','registration','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (49,1,1,'board','acp',4,43,44,'ACP_AUTH_SETTINGS','auth','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (50,1,1,'board','acp',4,45,46,'ACP_EMAIL_SETTINGS','email','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (51,1,1,'board','acp',5,51,52,'ACP_COOKIE_SETTINGS','cookie','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (52,1,1,'board','acp',5,53,54,'ACP_SERVER_SETTINGS','server','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (53,1,1,'board','acp',5,55,56,'ACP_SECURITY_SETTINGS','security','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (54,1,1,'board','acp',5,57,58,'ACP_LOAD_SETTINGS','load','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (55,1,1,'bots','acp',29,257,258,'ACP_BOTS','bots','acl_a_bots');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (56,1,1,'captcha','acp',3,35,36,'ACP_VC_SETTINGS','visual','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (57,1,0,'captcha','acp',3,37,38,'ACP_VC_CAPTCHA_DISPLAY','img','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (58,1,1,'database','acp',26,243,244,'ACP_BACKUP','backup','acl_a_backup');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (59,1,1,'database','acp',26,245,246,'ACP_RESTORE','restore','acl_a_backup');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (60,1,1,'disallow','acp',15,161,162,'ACP_DISALLOW_USERNAMES','usernames','acl_a_names');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (61,1,1,'email','acp',29,259,260,'ACP_MASS_EMAIL','email','acl_a_email && cfg_email_enable');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (62,1,1,'forums','acp',7,67,68,'ACP_MANAGE_FORUMS','manage','acl_a_forum');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (63,1,1,'groups','acp',14,147,148,'ACP_GROUPS_MANAGE','manage','acl_a_group');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (64,1,1,'icons','acp',10,93,94,'ACP_ICONS','icons','acl_a_icons');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (65,1,1,'icons','acp',10,95,96,'ACP_SMILIES','smilies','acl_a_icons');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (66,1,1,'inactive','acp',13,115,116,'ACP_INACTIVE_USERS','list','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (67,1,1,'jabber','acp',4,47,48,'ACP_JABBER_SETTINGS','settings','acl_a_jabber');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (68,1,1,'language','acp',29,261,262,'ACP_LANGUAGE_PACKS','lang_packs','acl_a_language');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (69,1,1,'logs','acp',25,233,234,'ACP_ADMIN_LOGS','admin','acl_a_viewlogs');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (70,1,1,'logs','acp',25,235,236,'ACP_MOD_LOGS','mod','acl_a_viewlogs');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (71,1,1,'logs','acp',25,237,238,'ACP_USERS_LOGS','users','acl_a_viewlogs');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (72,1,1,'logs','acp',25,239,240,'ACP_CRITICAL_LOGS','critical','acl_a_viewlogs');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (73,1,1,'main','acp',1,2,3,'ACP_INDEX','main','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (74,1,1,'modules','acp',30,269,270,'ACP','acp','acl_a_modules');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (75,1,1,'modules','acp',30,271,272,'UCP','ucp','acl_a_modules');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (76,1,1,'modules','acp',30,273,274,'MCP','mcp','acl_a_modules');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (77,1,1,'permission_roles','acp',19,193,194,'ACP_ADMIN_ROLES','admin_roles','acl_a_roles && acl_a_aauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (78,1,1,'permission_roles','acp',19,195,196,'ACP_USER_ROLES','user_roles','acl_a_roles && acl_a_uauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (79,1,1,'permission_roles','acp',19,197,198,'ACP_MOD_ROLES','mod_roles','acl_a_roles && acl_a_mauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (80,1,1,'permission_roles','acp',19,199,200,'ACP_FORUM_ROLES','forum_roles','acl_a_roles && acl_a_fauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (81,1,1,'permissions','acp',16,168,169,'ACP_PERMISSIONS','intro','acl_a_authusers || acl_a_authgroups || acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (82,1,0,'permissions','acp',20,203,204,'ACP_PERMISSION_TRACE','trace','acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (83,1,1,'permissions','acp',18,181,182,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (84,1,1,'permissions','acp',18,183,184,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (85,1,1,'permissions','acp',17,171,172,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (86,1,1,'permissions','acp',13,117,118,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (87,1,1,'permissions','acp',18,185,186,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (88,1,1,'permissions','acp',13,119,120,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (89,1,1,'permissions','acp',17,173,174,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (90,1,1,'permissions','acp',14,149,150,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (91,1,1,'permissions','acp',18,187,188,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (92,1,1,'permissions','acp',14,151,152,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (93,1,1,'permissions','acp',17,175,176,'ACP_ADMINISTRATORS','setting_admin_global','acl_a_aauth && (acl_a_authusers || acl_a_authgroups)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (94,1,1,'permissions','acp',17,177,178,'ACP_GLOBAL_MODERATORS','setting_mod_global','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (95,1,1,'permissions','acp',20,205,206,'ACP_VIEW_ADMIN_PERMISSIONS','view_admin_global','acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (96,1,1,'permissions','acp',20,207,208,'ACP_VIEW_USER_PERMISSIONS','view_user_global','acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (97,1,1,'permissions','acp',20,209,210,'ACP_VIEW_GLOBAL_MOD_PERMISSIONS','view_mod_global','acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (98,1,1,'permissions','acp',20,211,212,'ACP_VIEW_FORUM_MOD_PERMISSIONS','view_mod_local','acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (99,1,1,'permissions','acp',20,213,214,'ACP_VIEW_FORUM_PERMISSIONS','view_forum_local','acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (100,1,1,'php_info','acp',29,263,264,'ACP_PHP_INFO','info','acl_a_phpinfo');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (101,1,1,'profile','acp',13,121,122,'ACP_CUSTOM_PROFILE_FIELDS','profile','acl_a_profile');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (102,1,1,'prune','acp',7,69,70,'ACP_PRUNE_FORUMS','forums','acl_a_prune');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (103,1,1,'prune','acp',15,163,164,'ACP_PRUNE_USERS','users','acl_a_userdel');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (104,1,1,'ranks','acp',13,123,124,'ACP_MANAGE_RANKS','ranks','acl_a_ranks');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (105,1,1,'reasons','acp',29,265,266,'ACP_MANAGE_REASONS','main','acl_a_reasons');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (106,1,1,'search','acp',5,59,60,'ACP_SEARCH_SETTINGS','settings','acl_a_search');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (107,1,1,'search','acp',26,247,248,'ACP_SEARCH_INDEX','index','acl_a_search');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (108,1,1,'styles','acp',22,219,220,'ACP_STYLES','style','acl_a_styles');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (109,1,1,'styles','acp',23,223,224,'ACP_TEMPLATES','template','acl_a_styles');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (110,1,1,'styles','acp',23,225,226,'ACP_THEMES','theme','acl_a_styles');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (111,1,1,'styles','acp',23,227,228,'ACP_IMAGESETS','imageset','acl_a_styles');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (112,1,1,'update','acp',28,253,254,'ACP_VERSION_CHECK','version_check','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (113,1,1,'users','acp',13,113,114,'ACP_MANAGE_USERS','overview','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (114,1,0,'users','acp',13,125,126,'ACP_USER_FEEDBACK','feedback','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (115,1,0,'users','acp',13,127,128,'ACP_USER_PROFILE','profile','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (116,1,0,'users','acp',13,129,130,'ACP_USER_PREFS','prefs','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (117,1,0,'users','acp',13,131,132,'ACP_USER_AVATAR','avatar','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (118,1,0,'users','acp',13,133,134,'ACP_USER_RANK','rank','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (119,1,0,'users','acp',13,135,136,'ACP_USER_SIG','sig','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (120,1,0,'users','acp',13,137,138,'ACP_USER_GROUPS','groups','acl_a_user && acl_a_group');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (121,1,0,'users','acp',13,139,140,'ACP_USER_PERM','perm','acl_a_user && acl_a_viewauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (122,1,0,'users','acp',13,141,142,'ACP_USER_ATTACH','attach','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (123,1,1,'words','acp',10,97,98,'ACP_WORDS','words','acl_a_words');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (124,1,1,'users','acp',2,5,6,'ACP_MANAGE_USERS','overview','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (125,1,1,'groups','acp',2,7,8,'ACP_GROUPS_MANAGE','manage','acl_a_group');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (126,1,1,'forums','acp',2,9,10,'ACP_MANAGE_FORUMS','manage','acl_a_forum');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (127,1,1,'logs','acp',2,11,12,'ACP_MOD_LOGS','mod','acl_a_viewlogs');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (128,1,1,'bots','acp',2,13,14,'ACP_BOTS','bots','acl_a_bots');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (129,1,1,'php_info','acp',2,15,16,'ACP_PHP_INFO','info','acl_a_phpinfo');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (130,1,1,'permissions','acp',8,73,74,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (131,1,1,'permissions','acp',8,75,76,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (132,1,1,'permissions','acp',8,77,78,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (133,1,1,'permissions','acp',8,79,80,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (134,1,1,'','mcp',0,1,10,'MCP_MAIN','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (135,1,1,'','mcp',0,11,18,'MCP_QUEUE','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (136,1,1,'','mcp',0,19,32,'MCP_REPORTS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (137,1,1,'','mcp',0,33,38,'MCP_NOTES','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (138,1,1,'','mcp',0,39,48,'MCP_WARN','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (139,1,1,'','mcp',0,49,56,'MCP_LOGS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (140,1,1,'','mcp',0,57,64,'MCP_BAN','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (141,1,1,'ban','mcp',140,58,59,'MCP_BAN_USERNAMES','user','acl_m_ban');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (142,1,1,'ban','mcp',140,60,61,'MCP_BAN_IPS','ip','acl_m_ban');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (143,1,1,'ban','mcp',140,62,63,'MCP_BAN_EMAILS','email','acl_m_ban');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (144,1,1,'logs','mcp',139,50,51,'MCP_LOGS_FRONT','front','acl_m_ || aclf_m_');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (145,1,1,'logs','mcp',139,52,53,'MCP_LOGS_FORUM_VIEW','forum_logs','acl_m_,$id');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (146,1,1,'logs','mcp',139,54,55,'MCP_LOGS_TOPIC_VIEW','topic_logs','acl_m_,$id');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (147,1,1,'main','mcp',134,2,3,'MCP_MAIN_FRONT','front','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (148,1,1,'main','mcp',134,4,5,'MCP_MAIN_FORUM_VIEW','forum_view','acl_m_,$id');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (149,1,1,'main','mcp',134,6,7,'MCP_MAIN_TOPIC_VIEW','topic_view','acl_m_,$id');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (150,1,1,'main','mcp',134,8,9,'MCP_MAIN_POST_DETAILS','post_details','acl_m_,$id || (!$id && aclf_m_)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (151,1,1,'notes','mcp',137,34,35,'MCP_NOTES_FRONT','front','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (152,1,1,'notes','mcp',137,36,37,'MCP_NOTES_USER','user_notes','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (153,1,1,'queue','mcp',135,12,13,'MCP_QUEUE_UNAPPROVED_TOPICS','unapproved_topics','aclf_m_approve');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (154,1,1,'queue','mcp',135,14,15,'MCP_QUEUE_UNAPPROVED_POSTS','unapproved_posts','aclf_m_approve');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (155,1,1,'queue','mcp',135,16,17,'MCP_QUEUE_APPROVE_DETAILS','approve_details','acl_m_approve,$id || (!$id && aclf_m_approve)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (156,1,1,'reports','mcp',136,20,21,'MCP_REPORTS_OPEN','reports','aclf_m_report');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (157,1,1,'reports','mcp',136,22,23,'MCP_REPORTS_CLOSED','reports_closed','aclf_m_report');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (158,1,1,'reports','mcp',136,24,25,'MCP_REPORT_DETAILS','report_details','acl_m_report,$id || (!$id && aclf_m_report)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (159,1,1,'warn','mcp',138,40,41,'MCP_WARN_FRONT','front','aclf_m_warn');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (160,1,1,'warn','mcp',138,42,43,'MCP_WARN_LIST','list','aclf_m_warn');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (161,1,1,'warn','mcp',138,44,45,'MCP_WARN_USER','warn_user','aclf_m_warn');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (162,1,1,'warn','mcp',138,46,47,'MCP_WARN_POST','warn_post','acl_m_warn,$id || (!$id && aclf_m_warn)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (163,1,1,'','ucp',0,1,12,'UCP_MAIN','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (164,1,1,'','ucp',0,13,22,'UCP_PROFILE','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (165,1,1,'','ucp',0,23,30,'UCP_PREFS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (166,1,1,'','ucp',0,31,42,'UCP_PM','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (167,1,1,'','ucp',0,43,48,'UCP_USERGROUPS','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (168,1,1,'','ucp',0,49,54,'UCP_ZEBRA','','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (169,1,1,'attachments','ucp',163,10,11,'UCP_MAIN_ATTACHMENTS','attachments','acl_u_attach');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (170,1,1,'groups','ucp',167,44,45,'UCP_USERGROUPS_MEMBER','membership','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (171,1,1,'groups','ucp',167,46,47,'UCP_USERGROUPS_MANAGE','manage','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (172,1,1,'main','ucp',163,2,3,'UCP_MAIN_FRONT','front','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (173,1,1,'main','ucp',163,4,5,'UCP_MAIN_SUBSCRIBED','subscribed','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (174,1,1,'main','ucp',163,6,7,'UCP_MAIN_BOOKMARKS','bookmarks','cfg_allow_bookmarks');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (175,1,1,'main','ucp',163,8,9,'UCP_MAIN_DRAFTS','drafts','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (176,1,0,'pm','ucp',166,32,33,'UCP_PM_VIEW','view','cfg_allow_privmsg');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (177,1,1,'pm','ucp',166,34,35,'UCP_PM_COMPOSE','compose','cfg_allow_privmsg');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (178,1,1,'pm','ucp',166,36,37,'UCP_PM_DRAFTS','drafts','cfg_allow_privmsg');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (179,1,1,'pm','ucp',166,38,39,'UCP_PM_OPTIONS','options','cfg_allow_privmsg');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (180,1,0,'pm','ucp',166,40,41,'UCP_PM_POPUP_TITLE','popup','cfg_allow_privmsg');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (181,1,1,'prefs','ucp',165,24,25,'UCP_PREFS_PERSONAL','personal','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (182,1,1,'prefs','ucp',165,26,27,'UCP_PREFS_POST','post','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (183,1,1,'prefs','ucp',165,28,29,'UCP_PREFS_VIEW','view','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (184,1,1,'profile','ucp',164,14,15,'UCP_PROFILE_PROFILE_INFO','profile_info','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (185,1,1,'profile','ucp',164,16,17,'UCP_PROFILE_SIGNATURE','signature','acl_u_sig');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (186,1,1,'profile','ucp',164,18,19,'UCP_PROFILE_AVATAR','avatar','cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (187,1,1,'profile','ucp',164,20,21,'UCP_PROFILE_REG_DETAILS','reg_details','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (188,1,1,'zebra','ucp',168,50,51,'UCP_ZEBRA_FRIENDS','friends','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (189,1,1,'zebra','ucp',168,52,53,'UCP_ZEBRA_FOES','foes','');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (190,1,1,'board','acp',3,39,40,'ACP_FEED_SETTINGS','feed','acl_a_board');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (191,1,0,'users','acp',13,143,144,'ACP_USER_WARNINGS','warnings','acl_a_user');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (192,1,1,'send_statistics','acp',5,61,62,'ACP_SEND_STATISTICS','send_statistics','acl_a_server');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (193,1,1,'permissions','acp',8,81,82,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (194,1,1,'permissions','acp',18,189,190,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (195,1,1,'pm_reports','mcp',136,26,27,'MCP_PM_REPORTS_OPEN','pm_reports','aclf_m_report');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (196,1,1,'pm_reports','mcp',136,28,29,'MCP_PM_REPORTS_CLOSED','pm_reports_closed','aclf_m_report');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (197,1,1,'pm_reports','mcp',136,30,31,'MCP_PM_REPORT_DETAILS','pm_report_details','aclf_m_report');
+INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (198,1,1,'board','acp',10,91,92,'ACP_POST_SETTINGS','post','acl_a_board');
+INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, icon_id, poster_ip, post_time, post_approved, post_reported, enable_bbcode, enable_smilies, enable_magic_url, enable_sig, post_username, post_subject, post_text, post_checksum, post_attachment, bbcode_bitfield, bbcode_uid, post_postcount, post_edit_time, post_edit_reason, post_edit_user, post_edit_count, post_edit_locked) VALUES (1,1,2,2,0,'127.0.0.1',972086460,1,0,1,1,1,1,'','Test Toptic','First Post!','5dd683b17f641daf84c040bfefc58ce9',0,'','',1,0,'',0,0,0);
+INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES (1,'Site Admin',0,1,'');
+INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (1,'warez','{L_REPORT_WAREZ}',1);
+INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (2,'spam','{L_REPORT_SPAM}',2);
+INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (3,'off_topic','{L_REPORT_OFF_TOPIC}',3);
+INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (4,'other','{L_REPORT_OTHER}',4);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (1,':D',':-D','icon_e_biggrin.gif',15,17,1,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (2,':-D',':-D','icon_e_biggrin.gif',15,17,2,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (3,':grin:',':-D','icon_e_biggrin.gif',15,17,3,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (4,':)',':-)','icon_e_smile.gif',15,17,4,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (5,':-)',':-)','icon_e_smile.gif',15,17,5,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (6,':smile:',':-)','icon_e_smile.gif',15,17,6,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (7,';)',';-)','icon_e_wink.gif',15,17,7,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (8,';-)',';-)','icon_e_wink.gif',15,17,8,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (9,':wink:',';-)','icon_e_wink.gif',15,17,9,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (10,':(',':-(','icon_e_sad.gif',15,17,10,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (11,':-(',':-(','icon_e_sad.gif',15,17,11,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (12,':sad:',':-(','icon_e_sad.gif',15,17,12,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (13,':o',':-O','icon_e_surprised.gif',15,19,13,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (14,':-o',':-O','icon_e_surprised.gif',15,19,14,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (15,':eek:',':-O','icon_e_surprised.gif',15,19,15,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (16,':shock:',':-O','icon_eek.gif',15,15,16,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (17,':?',':-/','icon_e_confused.gif',15,17,17,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (18,':-?',':-/','icon_e_confused.gif',15,17,18,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (19,':???:',':-/','icon_e_confused.gif',15,17,19,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (20,'8-)','8-)','icon_cool.gif',15,15,20,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (21,':cool:','8-)','icon_cool.gif',15,15,21,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (22,':lol:',':-D','icon_lol.gif',15,15,22,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (23,':x','>:-(','icon_mad.gif',15,15,23,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (24,':-x','>:-(','icon_mad.gif',15,15,24,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (25,':mad:','>:-(','icon_mad.gif',15,15,25,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (26,':P',':-P','icon_razz.gif',15,15,26,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (27,':-P',':-P','icon_razz.gif',15,15,27,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (28,':razz:',':-P','icon_razz.gif',15,15,28,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (29,':oops:',':-|','icon_redface.gif',15,15,29,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (30,':cry:',':~(','icon_cry.gif',15,15,30,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (31,':evil:','>:-)','icon_evil.gif',15,15,31,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (32,':twisted:','>:->','icon_twisted.gif',15,15,32,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (33,':roll:',':-/','icon_rolleyes.gif',15,15,33,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (34,':!:','!','icon_exclaim.gif',15,15,34,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (35,':?:','?','icon_question.gif',15,15,35,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (36,':idea:','(!)','icon_idea.gif',15,15,36,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (37,':arrow:','->','icon_arrow.gif',15,15,37,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (38,':|',':-|','icon_neutral.gif',15,15,38,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (39,':-|',':-|','icon_neutral.gif',15,15,39,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (40,':mrgreen:','8-D','icon_mrgreen.gif',15,15,40,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (41,':geek:','8-{','icon_e_geek.gif',17,17,41,1);
+INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (42,':ugeek:','88-{','icon_e_ugeek.gif',19,18,42,1);
+INSERT INTO phpbb_styles (style_id, style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES (1,'prosilver','© phpBB Group',1,1,1,1);
+INSERT INTO phpbb_styles_imageset (imageset_id, imageset_name, imageset_copyright, imageset_path) VALUES (1,'prosilver','© phpBB Group','prosilver');
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (1,'site_logo','site_logo.gif','',52,139,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (2,'forum_link','forum_link.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (3,'forum_read','forum_read.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (4,'forum_read_locked','forum_read_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (5,'forum_read_subforum','forum_read_subforum.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (6,'forum_unread','forum_unread.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (7,'forum_unread_locked','forum_unread_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (8,'forum_unread_subforum','forum_unread_subforum.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (9,'topic_moved','topic_moved.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (10,'topic_read','topic_read.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (11,'topic_read_mine','topic_read_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (12,'topic_read_hot','topic_read_hot.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (13,'topic_read_hot_mine','topic_read_hot_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (14,'topic_read_locked','topic_read_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (15,'topic_read_locked_mine','topic_read_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (16,'topic_unread','topic_unread.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (17,'topic_unread_mine','topic_unread_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (18,'topic_unread_hot','topic_unread_hot.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (19,'topic_unread_hot_mine','topic_unread_hot_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (20,'topic_unread_locked','topic_unread_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (21,'topic_unread_locked_mine','topic_unread_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (22,'sticky_read','sticky_read.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (23,'sticky_read_mine','sticky_read_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (24,'sticky_read_locked','sticky_read_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (25,'sticky_read_locked_mine','sticky_read_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (26,'sticky_unread','sticky_unread.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (27,'sticky_unread_mine','sticky_unread_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (28,'sticky_unread_locked','sticky_unread_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (29,'sticky_unread_locked_mine','sticky_unread_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (30,'announce_read','announce_read.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (31,'announce_read_mine','announce_read_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (32,'announce_read_locked','announce_read_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (33,'announce_read_locked_mine','announce_read_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (34,'announce_unread','announce_unread.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (35,'announce_unread_mine','announce_unread_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (36,'announce_unread_locked','announce_unread_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (37,'announce_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (38,'global_read','announce_read.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (39,'global_read_mine','announce_read_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (40,'global_read_locked','announce_read_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (41,'global_read_locked_mine','announce_read_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (42,'global_unread','announce_unread.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (43,'global_unread_mine','announce_unread_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (44,'global_unread_locked','announce_unread_locked.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (45,'global_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (46,'pm_read','topic_read.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (47,'pm_unread','topic_unread.gif','',27,27,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (48,'icon_back_top','icon_back_top.gif','',11,11,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (49,'icon_contact_aim','icon_contact_aim.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (50,'icon_contact_email','icon_contact_email.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (51,'icon_contact_icq','icon_contact_icq.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (52,'icon_contact_jabber','icon_contact_jabber.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (53,'icon_contact_msnm','icon_contact_msnm.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (54,'icon_contact_www','icon_contact_www.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (55,'icon_contact_yahoo','icon_contact_yahoo.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (56,'icon_post_delete','icon_post_delete.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (57,'icon_post_info','icon_post_info.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (58,'icon_post_report','icon_post_report.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (59,'icon_post_target','icon_post_target.gif','',9,11,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (60,'icon_post_target_unread','icon_post_target_unread.gif','',9,11,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (61,'icon_topic_attach','icon_topic_attach.gif','',10,7,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (62,'icon_topic_latest','icon_topic_latest.gif','',9,11,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (63,'icon_topic_newest','icon_topic_newest.gif','',9,11,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (64,'icon_topic_reported','icon_topic_reported.gif','',14,16,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (65,'icon_topic_unapproved','icon_topic_unapproved.gif','',14,16,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (66,'icon_user_warn','icon_user_warn.gif','',20,20,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (67,'subforum_read','subforum_read.gif','',9,11,1);
+INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (68,'subforum_unread','subforum_unread.gif','',9,11,1);
+INSERT INTO phpbb_styles_template (template_id, template_name, template_copyright, template_path, bbcode_bitfield, template_storedb, template_inherits_id, template_inherit_path) VALUES (1,'prosilver','© phpBB Group','prosilver','lNg=',0,0,'');
+INSERT INTO phpbb_styles_theme (theme_id, theme_name, theme_copyright, theme_path, theme_storedb, theme_mtime, theme_data) VALUES (1,'prosilver','© phpBB Group','prosilver',1,0,'');
+INSERT INTO phpbb_topics (topic_id, forum_id, icon_id, topic_attachment, topic_approved, topic_reported, topic_title, topic_poster, topic_time, topic_time_limit, topic_views, topic_replies, topic_replies_real, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, topic_moved_id, topic_bumped, topic_bumper, poll_title, poll_start, poll_length, poll_max_options, poll_last_vote, poll_vote_change) VALUES (1,2,0,0,1,0,'Test Topic',2,972086460,0,0,0,0,0,0,1,'Admin','AA0000',1,2,'Admin','AA0000','Test Topic',972086460,972086460,0,0,0,'',0,0,1,0,0);
+INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2,1,1);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (1,1,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (2,2,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (4,2,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (5,2,1,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,3,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,4,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,5,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,6,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,7,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,8,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,9,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,10,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,11,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,12,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,13,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,14,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,15,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,16,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,17,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,18,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,19,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,20,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,21,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,22,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,23,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,24,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,25,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,26,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,28,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,31,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,32,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,34,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,35,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,36,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,37,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,38,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,39,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,41,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,42,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,43,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,44,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,45,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,46,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,48,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,49,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,50,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,51,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,52,0,0);
+INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,53,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (1,2,1,'',0,'',1170765411,'Anonymous','anonymous','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'d M Y H:i a',1,0,'',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (2,3,5,'',0,'',1170765411,'admin','admin','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,1,'en',0.00,0,'d M Y H:i a',1,1,'AA0000',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,1,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (3,2,6,'',0,'',1170765411,'AdsBot [Google]','adsbot [google]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (4,2,6,'',0,'',1170765411,'Alexa [Bot]','alexa [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (5,2,6,'',0,'',1170765411,'Alta Vista [Bot]','alta vista [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (6,2,6,'',0,'',1170765411,'Ask Jeeves [Bot]','ask jeeves [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (7,2,6,'',0,'',1170765411,'Baidu [Spider]','baidu [spider]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (8,2,6,'',0,'',1170765411,'Exabot [Bot]','exabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (9,2,6,'',0,'',1170765411,'FAST Enterprise [Crawler]','fast enterprise [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (10,2,6,'',0,'',1170765411,'FAST WebCrawler [Crawler]','fast webcrawler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (11,2,6,'',0,'',1170765411,'Francis [Bot]','francis [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (12,2,6,'',0,'',1170765411,'Gigabot [Bot]','gigabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (13,2,6,'',0,'',1170765411,'Google Adsense [Bot]','google adsense [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (14,2,6,'',0,'',1170765411,'Google Desktop','google desktop','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (15,2,6,'',0,'',1170765411,'Google Feedfetcher','google feedfetcher','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (16,2,6,'',0,'',1170765411,'Google [Bot]','google [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (17,2,6,'',0,'',1170765411,'Heise IT-Markt [Crawler]','heise it-markt [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (18,2,6,'',0,'',1170765411,'Heritrix [Crawler]','heritrix [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (19,2,6,'',0,'',1170765411,'IBM Research [Bot]','ibm research [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (20,2,6,'',0,'',1170765411,'ICCrawler - ICjobs','iccrawler - icjobs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (21,2,6,'',0,'',1170765411,'ichiro [Crawler]','ichiro [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (22,2,6,'',0,'',1170765411,'Majestic-12 [Bot]','majestic-12 [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (23,2,6,'',0,'',1170765411,'Metager [Bot]','metager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (24,2,6,'',0,'',1170765411,'MSN NewsBlogs','msn newsblogs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (25,2,6,'',0,'',1170765411,'MSN [Bot]','msn [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (26,2,6,'',0,'',1170765411,'MSNbot Media','msnbot media','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (28,2,6,'',0,'',1170765411,'Nutch [Bot]','nutch [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (31,2,6,'',0,'',1170765411,'Online link [Validator]','online link [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (32,2,6,'',0,'',1170765411,'psbot [Picsearch]','psbot [picsearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (34,2,6,'',0,'',1170765411,'Sensis [Crawler]','sensis [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (35,2,6,'',0,'',1170765411,'SEO Crawler','seo crawler','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (36,2,6,'',0,'',1170765411,'Seoma [Crawler]','seoma [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (37,2,6,'',0,'',1170765411,'SEOSearch [Crawler]','seosearch [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (38,2,6,'',0,'',1170765411,'Snappy [Bot]','snappy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (39,2,6,'',0,'',1170765411,'Steeler [Crawler]','steeler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (41,2,6,'',0,'',1170765411,'Telekom [Bot]','telekom [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (42,2,6,'',0,'',1170765411,'TurnitinBot [Bot]','turnitinbot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (43,2,6,'',0,'',1170765411,'Voyager [Bot]','voyager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (44,2,6,'',0,'',1170765411,'W3 [Sitesearch]','w3 [sitesearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (45,2,6,'',0,'',1170765411,'W3C [Linkcheck]','w3c [linkcheck]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (46,2,6,'',0,'',1170765411,'W3C [Validator]','w3c [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (48,2,6,'',0,'',1170765411,'Yacy [Bot]','yacy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (49,2,6,'',0,'',1170765411,'Yahoo MMCrawler [Bot]','yahoo mmcrawler [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (50,2,6,'',0,'',1170765411,'Yahoo Slurp [Bot]','yahoo slurp [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (51,2,6,'',0,'',1170765411,'Yahoo [Bot]','yahoo [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (52,2,6,'',0,'',1170765411,'YahooSeeker [Bot]','yahooseeker [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0);
+INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (53,2,6,'',0,'',1321022106,'Bing [Bot]','bing [bot]','',1321022106,0,'',0,'',0,1321022106,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','e528469e2ef47bee',0,0,0);
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/sqliteconv1.sh b/debian/sqliteconv1.sh
new file mode 100755
index 0000000..f954f92
--- /dev/null
+++ b/debian/sqliteconv1.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+cat $1 | \
+ grep -v ^# | \
+ grep -v ' KEY "' | \
+ grep -v ' UNIQUE KEY "' | \
+ sed -e "s/\`/\'/g" -e "s/UNIX_TIMESTAMP()/strftime('%s','now')/" | \
+ sed 's/ unsigned / /g' | \
+ sed 's/ auto_increment/ /gi' | \
+ sed 's/ smallint([0-9]*) / integer /gi' | \
+ sed 's/ mediumint([0-9]*) / integer /gi' | \
+ sed 's/ tinyint([0-9]*) / integer /gi' | \
+ sed 's/ int([0-9]*) / integer /gi' | \
+ sed 's/ character set [^ ]* / /gi' | \
+ sed 's/ collate [^ ]* / /gi' | \
+ sed 's/ enum([^)]*) / varchar(255) /gi' | \
+ sed 's/ on update [^,]*//gi'
diff --git a/debian/sqliteconv2.pl b/debian/sqliteconv2.pl
new file mode 100755
index 0000000..34b2fa2
--- /dev/null
+++ b/debian/sqliteconv2.pl
@@ -0,0 +1,8 @@
+#!/usr/bin/perl
+# converts extended SQL inserts to single statements
+if (/^(INSERT.+?VALUES.*?)\(/) {
+ $a=$1;
+ s/\\'\''/'\'\''/g;
+ s/\\n/\n/g;
+ s/\),\(/\);\n$a\(/g;
+}
diff --git a/debian/update_languages b/debian/update_languages
new file mode 100755
index 0000000..d9fa579
--- /dev/null
+++ b/debian/update_languages
@@ -0,0 +1,52 @@
+#!/usr/bin/perl -w
+use strict;
+
+die "Must be executed in the 'debian' subdir" unless -d 'upstream';
+
+`rm -f upstream/phpbb3_l10n-*.info`;
+
+my @lists;
+my @langs;
+
+my $index='https://www.phpbb.com/languages/index.php';
+my $trans='/customise/db/translation/';
+my $downl='https://www.phpbb.com/customise/db/download/';
+
+# Get language pages and other list pages
+open DOWNLOADS, "wget -q -O- $index|";
+while () {
+ push @langs, $1 if m,,;
+ push @lists, $1 if m, ,;
+}
+close DOWNLOADS;
+
+# Get other language pages
+for (@lists) {
+ open DOWNLOADS, "wget -q -O- $index\?$_|";
+ while () {
+ push @langs, $1 if m,,
+ }
+ close DOWNLOADS;
+}
+
+# Get information about language pack
+for (@langs) {
+ open DOWNLOADS, "wget -q -O- https://www.phpbb.com/customise/db/translation/$_|";
+ my ($url,$code,$md5);
+ $md5 ='';
+ while () {
+ $url = $1 if m,MD5 checksum:,;
+ if ($md5 eq 0) {
+ $md5 = $1 if m,(\w+) ,;
+ }
+ $code = $1 if m,ISO Code (.+)\n,;
+ }
+ close DOWNLOADS;
+ open INFO, "> upstream/phpbb3_l10n-$code.info";
+ print INFO "Url=$url\n";
+ print INFO "Md5=$md5\n";
+ print INFO "Copyright=GPL-2\n";
+ print INFO "Include=yes\n";
+ close INFO;
+}
diff --git a/debian/upstream/README b/debian/upstream/README
new file mode 100644
index 0000000..714fe62
--- /dev/null
+++ b/debian/upstream/README
@@ -0,0 +1,4 @@
+This directory is ONLY used for debian/rules get-orig-source, and NOT in any
+other rule.
+
+--Jeroen
diff --git a/debian/upstream/phpbb3.info b/debian/upstream/phpbb3.info
new file mode 100644
index 0000000..fc2dc2c
--- /dev/null
+++ b/debian/upstream/phpbb3.info
@@ -0,0 +1,6 @@
+Version=3.0.12
+Md5=b841460cd4247e240e1b80d989e5fe4f
+Copyright=GPL-2
+Include=yes
+
+Url=http://www.phpbb.com/files/release/phpBB-$Version.tar.bz2
diff --git a/debian/upstream/phpbb3_l10n-ar.info b/debian/upstream/phpbb3_l10n-ar.info
new file mode 100644
index 0000000..c260d0b
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ar.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/92651
+Md5=299f6f3f16eb98ae1193140198ae8212
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-be.info b/debian/upstream/phpbb3_l10n-be.info
new file mode 100644
index 0000000..1f33423
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-be.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/97931
+Md5=8fd0f3d1ef9e766a07d50cd3a5b86e1f
+Copyright=GPL-2
+Include=yes
+Update=1
diff --git a/debian/upstream/phpbb3_l10n-bg.info b/debian/upstream/phpbb3_l10n-bg.info
new file mode 100644
index 0000000..92c9e47
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-bg.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/85730
+Md5=5d406d182217b6ee13ff69e8aa2c7b56
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-ca.info b/debian/upstream/phpbb3_l10n-ca.info
new file mode 100644
index 0000000..18e12ea
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ca.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91531
+Md5=f031f043d351ced667c83f7b20f5384a
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-cs.info b/debian/upstream/phpbb3_l10n-cs.info
new file mode 100644
index 0000000..c29d274
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-cs.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/85593
+Md5=0ca9e75e123d47b60020062a03f814b6
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-da.info b/debian/upstream/phpbb3_l10n-da.info
new file mode 100644
index 0000000..a7d65ca
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-da.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91386
+Md5=25bec01312eef1127ee0403c6602527d
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-de-x-sie.info b/debian/upstream/phpbb3_l10n-de-x-sie.info
new file mode 100644
index 0000000..9ce42dd
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-de-x-sie.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91421
+Md5=d209f53d73e9843096e62115b40531eb
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-de.info b/debian/upstream/phpbb3_l10n-de.info
new file mode 100644
index 0000000..4e4d9e4
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-de.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91416
+Md5=9b06cdad852e61779775c0288e65fa7c
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-el.info b/debian/upstream/phpbb3_l10n-el.info
new file mode 100644
index 0000000..22037a8
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-el.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/82608
+Md5=719ebd991d5da61dead6066c1ca5473d
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-en-us.info b/debian/upstream/phpbb3_l10n-en-us.info
new file mode 100644
index 0000000..7e24a5d
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-en-us.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91116
+Md5=24f7ac6977b46051b1af782f42d2545c
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-en.info b/debian/upstream/phpbb3_l10n-en.info
new file mode 100644
index 0000000..ef110e6
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-en.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91156
+Md5=f58f74f391379ecaae2d8338d95c5f62
+Copyright=GPL-2
+Include=no
diff --git a/debian/upstream/phpbb3_l10n-es-ar.info b/debian/upstream/phpbb3_l10n-es-ar.info
new file mode 100644
index 0000000..62dbee8
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-es-ar.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91866
+Md5=57a47e583f0359eb4609b908ca7ac7be
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-es-mx.info b/debian/upstream/phpbb3_l10n-es-mx.info
new file mode 100644
index 0000000..c343bbf
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-es-mx.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/92146
+Md5=e89db8a2982e0a2e9730333d823ad76c
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-es-x-tu.info b/debian/upstream/phpbb3_l10n-es-x-tu.info
new file mode 100644
index 0000000..f385cc2
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-es-x-tu.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/92696
+Md5=2ae2238ebcd70af6f05beaeaa52e35d9
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-es.info b/debian/upstream/phpbb3_l10n-es.info
new file mode 100644
index 0000000..a29f8a5
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-es.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/92601
+Md5=a4181c508c0631441a5105fd632b94e3
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-et.info b/debian/upstream/phpbb3_l10n-et.info
new file mode 100644
index 0000000..aa138b3
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-et.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/82848
+Md5=83e5c48ca29c06ea0be981b7ae721670
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-eu.info b/debian/upstream/phpbb3_l10n-eu.info
new file mode 100644
index 0000000..38261ad
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-eu.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84782
+Md5=e3630aefa9a81caa343dc4c829bd2fa2
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-fa.info b/debian/upstream/phpbb3_l10n-fa.info
new file mode 100644
index 0000000..8783e49
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-fa.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84784
+Md5=521f44316085b7957c4f3d214a57e46e
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-fi.info b/debian/upstream/phpbb3_l10n-fi.info
new file mode 100644
index 0000000..7887313
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-fi.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/97896
+Md5=8f2b3b6143e7153eac422deb3f93e731
+Copyright=GPL-2
+Include=yes
+Update=1
diff --git a/debian/upstream/phpbb3_l10n-fr.info b/debian/upstream/phpbb3_l10n-fr.info
new file mode 100644
index 0000000..cabb6c0
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-fr.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91611
+Md5=27d2cf5daef6ffed0ef6bfc3871fb150
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-gd.info b/debian/upstream/phpbb3_l10n-gd.info
new file mode 100644
index 0000000..3f9f1bd
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-gd.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/97476
+Md5=28776470315b0d276e69f06622563abd
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-gl.info b/debian/upstream/phpbb3_l10n-gl.info
new file mode 100644
index 0000000..6aa40c2
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-gl.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84646
+Md5=6af4228ba94f35539ab4da1aab06dd4d
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-he.info b/debian/upstream/phpbb3_l10n-he.info
new file mode 100644
index 0000000..0026246
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-he.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/93006
+Md5=359b030ff73f3fc69820026fa1378a21
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-hr.info b/debian/upstream/phpbb3_l10n-hr.info
new file mode 100644
index 0000000..fc37ff4
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-hr.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/85022
+Md5=41b34f7dfe99657503e54ed3eb1e0c51
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-hu.info b/debian/upstream/phpbb3_l10n-hu.info
new file mode 100644
index 0000000..ffda4eb
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-hu.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/82916
+Md5=27f523fe7cde58108c135dbff8c0f00e
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-id.info b/debian/upstream/phpbb3_l10n-id.info
new file mode 100644
index 0000000..126829f
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-id.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/81607
+Md5=3a57cfe19d07c25953a91fa84bf44cab
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-it.info b/debian/upstream/phpbb3_l10n-it.info
new file mode 100644
index 0000000..519412b
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-it.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91861
+Md5=156de7eba20d9496790d2df228d40bd4
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-ja.info b/debian/upstream/phpbb3_l10n-ja.info
new file mode 100644
index 0000000..fc1277b
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ja.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/92251
+Md5=72298944125f1bffc3ab89cd783f9e21
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-ku.info b/debian/upstream/phpbb3_l10n-ku.info
new file mode 100644
index 0000000..003f7b1
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ku.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84789
+Md5=cf764f5fe4da460d6c618767368e69bc
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-lt.info b/debian/upstream/phpbb3_l10n-lt.info
new file mode 100644
index 0000000..3dcdb16
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-lt.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/94446
+Md5=24c7fa38b541ba76dbaf257affa4ef50
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-mk.info b/debian/upstream/phpbb3_l10n-mk.info
new file mode 100644
index 0000000..bb16964
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-mk.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/83006
+Md5=a379dde609588adff0c44ac0170c307d
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-nl-x-formal.info b/debian/upstream/phpbb3_l10n-nl-x-formal.info
new file mode 100644
index 0000000..4690070
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-nl-x-formal.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91666
+Md5=186577da55926e6061d06310cebfa11c
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-nl.info b/debian/upstream/phpbb3_l10n-nl.info
new file mode 100644
index 0000000..debdba4
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-nl.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91751
+Md5=af2c50989e1fe6b46f3dc3f105553eb0
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-pl.info b/debian/upstream/phpbb3_l10n-pl.info
new file mode 100644
index 0000000..5ecdb72
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-pl.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84758
+Md5=6c702dc70fdceaebd2c2c1b73e518629
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-pt-br.info b/debian/upstream/phpbb3_l10n-pt-br.info
new file mode 100644
index 0000000..d63dfd2
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-pt-br.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91801
+Md5=0e9cf55cf2d3428fab4fcd535c4b7d05
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-pt.info b/debian/upstream/phpbb3_l10n-pt.info
new file mode 100644
index 0000000..ef66fdc
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-pt.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91501
+Md5=e4af74ad5cbfb07de71f1086f71154e2
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-ro.info b/debian/upstream/phpbb3_l10n-ro.info
new file mode 100644
index 0000000..7b4100d
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ro.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84641
+Md5=9d34b11b60a3743af5bf1629fc14f6e3
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-ru.info b/debian/upstream/phpbb3_l10n-ru.info
new file mode 100644
index 0000000..35acf87
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ru.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91291
+Md5=45aa4adc3f7bdd1b79cd67d8e6a52c2e
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-sk.info b/debian/upstream/phpbb3_l10n-sk.info
new file mode 100644
index 0000000..15bb92d
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-sk.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/93561
+Md5=a6246724c3c68271cfb3e3b28db5d679
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-sl.info b/debian/upstream/phpbb3_l10n-sl.info
new file mode 100644
index 0000000..8e591f9
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-sl.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91736
+Md5=160ade5914ae83d2bd1b5abd0d7efe0e
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-sr-latn.info b/debian/upstream/phpbb3_l10n-sr-latn.info
new file mode 100644
index 0000000..a2ebc88
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-sr-latn.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84606
+Md5=faa0aacbb84942d63a32e791677d5416
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-sr.info b/debian/upstream/phpbb3_l10n-sr.info
new file mode 100644
index 0000000..4de7bff
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-sr.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/92921
+Md5=fb71189616786ccdce2a0be9404eb933
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-sv.info b/debian/upstream/phpbb3_l10n-sv.info
new file mode 100644
index 0000000..79065aa
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-sv.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/94846
+Md5=e0044422e5fc5436169eff2a9e726eb0
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-th.info b/debian/upstream/phpbb3_l10n-th.info
new file mode 100644
index 0000000..7eb58ce
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-th.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/92706
+Md5=dda8732b184c219d7a8f3fa5cce8306f
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-tr.info b/debian/upstream/phpbb3_l10n-tr.info
new file mode 100644
index 0000000..836727a
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-tr.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/91371
+Md5=08f28eebd5e0c15363dd48650fdf0ca5
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-tt.info b/debian/upstream/phpbb3_l10n-tt.info
new file mode 100644
index 0000000..df36945
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-tt.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/97816
+Md5=bf59f324431fc84bc2d231d9b365ca31
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-uk.info b/debian/upstream/phpbb3_l10n-uk.info
new file mode 100644
index 0000000..3f7a6d3
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-uk.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/92276
+Md5=ede3238ac332e28a9651aead37437da2
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-ur.info b/debian/upstream/phpbb3_l10n-ur.info
new file mode 100644
index 0000000..da422b8
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-ur.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/81743
+Md5=ed2a625f2f32cb9be969b9e38c043b99
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-vi.info b/debian/upstream/phpbb3_l10n-vi.info
new file mode 100644
index 0000000..0811434
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-vi.info
@@ -0,0 +1,4 @@
+Url=https://www.phpbb.com/customise/db/download/84900
+Md5=a5b7ac3cf050d36993efc3e3b72f72c7
+Copyright=GPL-2
+Include=yes
diff --git a/debian/upstream/phpbb3_l10n-zh-cmn-hans.info b/debian/upstream/phpbb3_l10n-zh-cmn-hans.info
new file mode 100644
index 0000000..cc9f25e
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-zh-cmn-hans.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91456
+Md5=5076b8da3eb05291603bbf447e3e8404
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/upstream/phpbb3_l10n-zh_cmn_hant.info b/debian/upstream/phpbb3_l10n-zh_cmn_hant.info
new file mode 100644
index 0000000..9fc3a98
--- /dev/null
+++ b/debian/upstream/phpbb3_l10n-zh_cmn_hant.info
@@ -0,0 +1,5 @@
+Url=https://www.phpbb.com/customise/db/download/91411
+Md5=88807f76df162315bad3c1f83ad6dfb7
+Copyright=GPL-2
+Include=yes
+RepackDirectoryStructure=-2
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..0daaccb
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+# Site Directory Pattern Version Script
+version=3
+http://www.phpbb.com/downloads/olympus.php .*phpBB-(3(?:\.[0-9]+)+(?:-[A-Z]+[0-9]+)?)\.tar\.bz2.*
diff --git a/debian/webapps-config b/debian/webapps-config
new file mode 100644
index 0000000..d9b0266
--- /dev/null
+++ b/debian/webapps-config
@@ -0,0 +1,132 @@
+# some library functions for phpbb3 maintainer scripts
+# copyright 2010 J.M. Roth
+
+get_webserver_configdata () {
+ local package=$1
+ local webserver=$2
+ local prio=$3
+
+ case "$webserver" in
+ "lighttpd" )
+ confdir=conf-available
+ wfile=${prio}-$package.conf
+ ;;
+ "apache2" )
+ confdir=conf-available
+ wfile=$package.conf
+ ;;
+ * )
+ echo "$0 $@: webserver $webserver is not supported." 1>&2
+ return 1
+ ;;
+ esac
+}
+
+# picked up from https://wiki.debian.org/Apache/PackagingFor24#Making_web_applications_compatible_to_both.2C_Apache_2.2_and_2.4
+COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true)
+APACHE2_MAINTSCRIPT_METHOD=$1
+APACHE2_MAINTSCRIPT_ARGUMENT=$2
+
+install_webserver_config () {
+ local package=$1
+ local webserver=$2
+ local prio=$3
+
+ get_webserver_configdata $@ || return 1
+ # yields: $confdir, $wfile
+
+ if [ -d /etc/$webserver/$confdir ] && [ ! -L /etc/$webserver/$confdir/$wfile ] ; then
+ if [ ! -x /usr/sbin/$webserver ] ; then
+ echo "$0 $@: webserver $webserver not found, skipping" 1>&2
+ else
+ ln -s ../../$package/$webserver.conf /etc/$webserver/$confdir/$wfile
+ if [ "$webserver" = "lighttpd" ] ; then
+ lighty-enable-mod $package >/dev/null
+ elif [ "$webserver" = "apache2" ] ; then
+ if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
+ . /usr/share/apache2/apache2-maintscript-helper
+ apache2_invoke enconf $package
+ elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then
+ [ -d /etc/apache2/conf.d/ ] && [ ! -L /etc/apache2/conf.d/$package.conf ] && ln -s ../conf-available/$package.conf /etc/apache2/conf.d/$package.conf
+ fi
+ fi
+ fi
+ fi
+}
+
+_purge_webserver_config () {
+ local package=$1
+ local webserver=$2
+ local prio=$3
+
+ get_webserver_configdata $@ || return 0
+ # yields: $confdir, $wfile
+
+ if [ -d /etc/$webserver/$confdir ] && [ -L /etc/$webserver/$confdir/$wfile ] ; then
+ if [ ! -x /usr/sbin/$webserver ] ; then
+ echo "$0 $@: webserver $webserver not installed, skipping" 1>&2
+ else
+ if [ "$webserver" = "lighttpd" ] ; then
+ lighty-disable-mod $package >/dev/null
+ elif [ "$webserver" = "apache2" ] ; then
+ if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
+ . /usr/share/apache2/apache2-maintscript-helper
+ apache2_invoke disconf $package
+ elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then
+ [ -L /etc/apache2/conf.d/$package.conf ] && rm /etc/apache2/conf.d/$package.conf
+ fi
+ fi
+ rm /etc/$webserver/$confdir/$wfile
+ fi
+ fi
+}
+
+purge_webserver_config () {
+ local package=$1
+ local webserver=$2
+ local prio=$3
+
+ case "$webserver" in
+ "all" )
+ db_metaget $package/httpd Choices
+ for w in $RET ; do
+ _purge_webserver_config $package ${w%,} $prio
+ done
+ ;;
+ * )
+ _purge_webserver_config $@
+ ;;
+ esac
+}
+
+_reload_webserver () {
+ local webserver=$1
+
+ if [ -x /usr/sbin/$webserver ]; then
+ # Redirection of fd 3 is needed because Debconf uses it and it might
+ # be inherited by webserver. See bug #446324.
+ if [ -x /usr/sbin/invoke-rc.d ]; then
+ invoke-rc.d $webserver reload 3>/dev/null || true
+ else
+ /etc/init.d/$webserver reload 3>/dev/null || true
+ fi
+ echo
+ fi
+}
+
+reload_webserver () {
+ local package=$1
+ local webserver=$2
+
+ case "$webserver" in
+ "all" )
+ db_metaget $package/httpd Choices
+ for w in $RET ; do
+ _reload_webserver ${w%,}
+ done
+ ;;
+ * )
+ _reload_webserver ${webserver%,}
+ ;;
+ esac
+}
--
cgit v1.2.3