# # phpBB Backup Script # Dump of tables for 612156-2 # # DATE : 17-01-2010 12:46:16 GMT # # # TABLE: phpbb_auth_access # DROP TABLE IF EXISTS phpbb_auth_access; CREATE TABLE phpbb_auth_access( group_id mediumint(8) NOT NULL, forum_id smallint(5) unsigned NOT NULL, auth_view tinyint(1) NOT NULL, auth_read tinyint(1) NOT NULL, auth_post tinyint(1) NOT NULL, auth_reply tinyint(1) NOT NULL, auth_edit tinyint(1) NOT NULL, auth_delete tinyint(1) NOT NULL, auth_sticky tinyint(1) NOT NULL, auth_announce tinyint(1) NOT NULL, auth_vote tinyint(1) NOT NULL, auth_pollcreate tinyint(1) NOT NULL, auth_attachments tinyint(1) NOT NULL, auth_mod tinyint(1) NOT NULL, KEY group_id (group_id), KEY forum_id (forum_id) ); # # Table Data for phpbb_auth_access # INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('7', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('7', '13', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('3', '9', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('25', '10', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('23', '12', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('11', '11', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('70', '14', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('2851', '15', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1'); # # TABLE: phpbb_banlist # DROP TABLE IF EXISTS phpbb_banlist; CREATE TABLE phpbb_banlist( ban_id mediumint(8) unsigned NOT NULL auto_increment, ban_userid mediumint(8) NOT NULL, ban_ip varchar(8) NOT NULL, ban_email varchar(255), PRIMARY KEY (ban_id), KEY ban_ip_user_id (ban_ip, ban_userid) ); # # Table Data for phpbb_banlist # INSERT INTO phpbb_banlist (ban_id, ban_userid, ban_ip, ban_email) VALUES('5', '0', '', 'gcl@requirementfrench.cn'); # # TABLE: phpbb_categories # DROP TABLE IF EXISTS phpbb_categories; CREATE TABLE phpbb_categories( cat_id mediumint(8) unsigned NOT NULL auto_increment, cat_title varchar(100), cat_order mediumint(8) unsigned NOT NULL, PRIMARY KEY (cat_id), KEY cat_order (cat_order) ); # # Table Data for phpbb_categories # INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES('1', 'General', '20'); INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES('2', 'Miscelánea', '30'); INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES('3', 'Anuncios', '10'); INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES('4', 'Forum in English', '40'); # # TABLE: phpbb_config # DROP TABLE IF EXISTS phpbb_config; CREATE TABLE phpbb_config( config_name varchar(255) NOT NULL, config_value varchar(255) NOT NULL, PRIMARY KEY (config_name) ); # # Table Data for phpbb_config # INSERT INTO phpbb_config (config_name, config_value) VALUES('config_id', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('board_disable', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('sitename', 'Billy Joel foro en Español'); INSERT INTO phpbb_config (config_name, config_value) VALUES('site_desc', 'El único en Español de toda la red'); INSERT INTO phpbb_config (config_name, config_value) VALUES('cookie_name', 'phpbb2mysql'); INSERT INTO phpbb_config (config_name, config_value) VALUES('cookie_path', '/'); INSERT INTO phpbb_config (config_name, config_value) VALUES('cookie_domain', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('cookie_secure', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('session_length', '3600'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_html', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_html_tags', 'b,i,u,pre'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_bbcode', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_smilies', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_sig', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_namechange', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_theme_create', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_avatar_local', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_avatar_remote', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_avatar_upload', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('enable_confirm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('allow_autologin', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_autologin_time', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('override_user_style', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('posts_per_page', '15'); INSERT INTO phpbb_config (config_name, config_value) VALUES('topics_per_page', '50'); INSERT INTO phpbb_config (config_name, config_value) VALUES('hot_threshold', '25'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_poll_options', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_sig_chars', '255'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_inbox_privmsgs', '50'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_sentbox_privmsgs', '25'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_savebox_privmsgs', '50'); INSERT INTO phpbb_config (config_name, config_value) VALUES('board_email_sig', 'Gracias, El administrador de la web.'); 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_username', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('smtp_password', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('sendmail_fix', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('require_activation', '2'); INSERT INTO phpbb_config (config_name, config_value) VALUES('flood_interval', '15'); INSERT INTO phpbb_config (config_name, config_value) VALUES('search_flood_interval', '15'); INSERT INTO phpbb_config (config_name, config_value) VALUES('search_min_chars', '3'); INSERT INTO phpbb_config (config_name, config_value) VALUES('max_login_attempts', '5'); INSERT INTO phpbb_config (config_name, config_value) VALUES('login_reset_time', '30'); INSERT INTO phpbb_config (config_name, config_value) VALUES('board_email_form', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('avatar_filesize', '9660'); INSERT INTO phpbb_config (config_name, config_value) VALUES('avatar_max_width', '170'); INSERT INTO phpbb_config (config_name, config_value) VALUES('avatar_max_height', '125'); INSERT INTO phpbb_config (config_name, config_value) VALUES('avatar_path', 'images/avatars'); INSERT INTO phpbb_config (config_name, config_value) VALUES('avatar_gallery_path', 'images/avatars'); INSERT INTO phpbb_config (config_name, config_value) VALUES('smilies_path', 'images/smiles'); INSERT INTO phpbb_config (config_name, config_value) VALUES('default_style', '1'); 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('board_timezone', '-1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('prune_enable', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('privmsg_disable', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('gzip_compress', '1'); 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('record_online_users', '26'); INSERT INTO phpbb_config (config_name, config_value) VALUES('record_online_date', '1210050798'); INSERT INTO phpbb_config (config_name, config_value) VALUES('server_port', '80'); INSERT INTO phpbb_config (config_name, config_value) VALUES('version', '.0.23'); INSERT INTO phpbb_config (config_name, config_value) VALUES('default_lang', 'spanish'); INSERT INTO phpbb_config (config_name, config_value) VALUES('board_email', 'postmaster@billyjoel.es'); INSERT INTO phpbb_config (config_name, config_value) VALUES('server_name', 'billyjoel.es'); INSERT INTO phpbb_config (config_name, config_value) VALUES('script_path', 'phpBB'); INSERT INTO phpbb_config (config_name, config_value) VALUES('rand_seed', 'ed574d88b6d9626b9d90f5306c4911ee'); INSERT INTO phpbb_config (config_name, config_value) VALUES('board_startdate', '1195772305'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_version', '0.3.0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_password', '69ff0fc14c4583cfd0a4a1baba35a052'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_read', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_write', 'server'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_move', 'copy'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_dir', '/'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_user', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_pass', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_host', 'localhost'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_port', '21'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_type', 'fsock'); INSERT INTO phpbb_config (config_name, config_value) VALUES('EM_ftp_cache', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_icq', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_aim', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_msn', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_yim', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_web', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_loc', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_occ', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_int', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_sig', 'reg off'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_icq_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_aim_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_msn_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_yim_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_web_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_loc_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_occ_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_int_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_sig_post', '10'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_notify_on_spam', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_email_for_spam', ''); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_version', '2.0.9'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_check_version', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_posting_url', 'post count'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_posting_url_post', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_hide_inactive', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_log_captcha', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_log_profile', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_log_message_posting', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_spam_log_pagination', '12'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_captcha', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_captcha_noise', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_captcha_case_sensative', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES('as_acp_version_db', '2.0.9'); # # TABLE: phpbb_disallow # DROP TABLE IF EXISTS phpbb_disallow; CREATE TABLE phpbb_disallow( disallow_id mediumint(8) unsigned NOT NULL auto_increment, disallow_username varchar(25) NOT NULL, PRIMARY KEY (disallow_id) ); # # Table Data for phpbb_disallow # INSERT INTO phpbb_disallow (disallow_id, disallow_username) VALUES('3', 'EfFeveser'); INSERT INTO phpbb_disallow (disallow_id, disallow_username) VALUES('4', 'avanguant'); # # TABLE: phpbb_forums # DROP TABLE IF EXISTS phpbb_forums; CREATE TABLE phpbb_forums( forum_id smallint(5) unsigned NOT NULL, cat_id mediumint(8) unsigned NOT NULL, forum_name varchar(150), forum_desc text, forum_status tinyint(4) NOT NULL, forum_order mediumint(8) unsigned DEFAULT '1' NOT NULL, forum_posts mediumint(8) unsigned NOT NULL, forum_topics mediumint(8) unsigned NOT NULL, forum_last_post_id mediumint(8) unsigned NOT NULL, prune_next int(11), prune_enable tinyint(1) NOT NULL, auth_view tinyint(2) NOT NULL, auth_read tinyint(2) NOT NULL, auth_post tinyint(2) NOT NULL, auth_reply tinyint(2) NOT NULL, auth_edit tinyint(2) NOT NULL, auth_delete tinyint(2) NOT NULL, auth_sticky tinyint(2) NOT NULL, auth_announce tinyint(2) NOT NULL, auth_vote tinyint(2) NOT NULL, auth_pollcreate tinyint(2) NOT NULL, auth_attachments tinyint(2) NOT NULL, PRIMARY KEY (forum_id), KEY forums_order (forum_order), KEY cat_id (cat_id), KEY forum_last_post_id (forum_last_post_id) ); # # Table Data for phpbb_forums # INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('1', '1', 'Billy Joel', 'El hombre del piano', '0', '10', '434', '139', '1092', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '3'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('4', '1', 'Otros artistas', 'Habla aquí de esos otros músicos que también te gustan.', '0', '70', '86', '23', '1067', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('12', '1', 'Letras', '¿Que dice Joel en sus canciones? descúbrelo', '0', '20', '66', '30', '1091', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('7', '3', 'Bienvenidos al Río de los Sueños ', 'A veces necesitamos una fantasía para mantener la fe, por fin una habitación para nosotros solos.', '0', '20', '68', '10', '1042', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('8', '3', 'Avisos generales', 'Avisos generales por parte de la administración.', '0', '10', '10', '9', '763', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('9', '2', 'Otros temas', 'Lugar de reunión para los foreros habituales, conversaciones varias.', '0', '20', '48', '13', '1006', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('13', '1', 'Descargas Joeleras', 'Bootlegs, piratadas y cosas raras. En ningún caso nada oficial.', '0', '30', '16', '9', '1093', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('10', '1', 'Bruce Springsteen', 'El Boss, aquel chico de Nueva Jersey ...', '0', '40', '78', '19', '1076', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('11', '1', 'Sir Elton John', 'El otro hombre del piano y gran amigo de Billy. Giras conjuntas Face to Face.', '0', '50', '84', '20', '1055', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('14', '4', 'All about Billy Joel', 'Come and discuss with us about the piano man: his life and his music.', '0', '10', '10', '9', '1094', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) VALUES('15', '1', 'Brian Wilson & The Beach Boys', 'Todo sobre este mítico grupo', '0', '60', '23', '6', '1089', NULL, '0', '0', '0', '1', '1', '1', '1', '3', '3', '1', '1', '0'); # # TABLE: phpbb_forum_prune # DROP TABLE IF EXISTS phpbb_forum_prune; CREATE TABLE phpbb_forum_prune( prune_id mediumint(8) unsigned NOT NULL auto_increment, forum_id smallint(5) unsigned NOT NULL, prune_days smallint(5) unsigned NOT NULL, prune_freq smallint(5) unsigned NOT NULL, PRIMARY KEY (prune_id), KEY forum_id (forum_id) ); # # TABLE: phpbb_groups # DROP TABLE IF EXISTS phpbb_groups; CREATE TABLE phpbb_groups( group_id mediumint(8) NOT NULL auto_increment, group_type tinyint(4) DEFAULT '1' NOT NULL, group_name varchar(40) NOT NULL, group_description varchar(255) NOT NULL, group_moderator mediumint(8) NOT NULL, group_single_user tinyint(1) DEFAULT '1' NOT NULL, PRIMARY KEY (group_id), KEY group_single_user (group_single_user) ); # # Table Data for phpbb_groups # INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('1', '1', 'Anonymous', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('2', '1', 'Turnstiles', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('4', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('5', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('6', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('7', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('8', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('9', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('25', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('11', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('12', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('13', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('14', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('15', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('24', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('23', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('68', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('28', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('29', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('69', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('58', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('60', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('70', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('72', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('150', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('80', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('140', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('104', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('162', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('177', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('184', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('234', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('566', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('806', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('1069', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('848', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('2205', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3330', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3329', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('2851', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3328', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3326', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3325', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3342', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3343', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3344', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3345', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3341', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3350', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3355', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3338', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3356', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3340', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3331', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3332', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3333', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3334', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('3335', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('2176', '1', '', 'Personal User', '0', '1'); INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES('2000', '1', '', 'Personal User', '0', '1'); # # TABLE: phpbb_posts # DROP TABLE IF EXISTS phpbb_posts; CREATE TABLE phpbb_posts( post_id mediumint(8) unsigned NOT NULL auto_increment, topic_id mediumint(8) unsigned NOT NULL, forum_id smallint(5) unsigned NOT NULL, poster_id mediumint(8) NOT NULL, post_time int(11) NOT NULL, poster_ip varchar(8) NOT NULL, post_username varchar(25), enable_bbcode tinyint(1) DEFAULT '1' NOT NULL, enable_html tinyint(1) NOT NULL, enable_smilies tinyint(1) DEFAULT '1' NOT NULL, enable_sig tinyint(1) DEFAULT '1' NOT NULL, post_edit_time int(11), post_edit_count smallint(5) unsigned NOT NULL, PRIMARY KEY (post_id), KEY forum_id (forum_id), KEY topic_id (topic_id), KEY poster_id (poster_id), KEY post_time (post_time) ); # # Table Data for phpbb_posts # INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1', '1', '7', '2', '972086460', '7F000001', '', '1', '0', '1', '1', '1206821070', '4'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('2', '1', '7', '3', '1196017905', '512c635c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('3', '2', '1', '2', '1196024316', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('6', '1', '7', '4', '1196040367', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('7', '1', '7', '6', '1196261458', 'd5002ba6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('740', '49', '4', '31', '1207778387', '52907cea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('9', '1', '7', '4', '1196281360', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('11', '1', '7', '3', '1196329745', '3e0f9582', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('12', '1', '7', '2', '1196353007', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('13', '5', '1', '2', '1196370439', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('14', '6', '1', '4', '1196370567', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('15', '1', '7', '3', '1196417171', '3e0f9582', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('16', '1', '7', '4', '1196455661', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('584', '184', '1', '12', '1204660203', 'be163601', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('18', '7', '1', '2', '1196584641', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('20', '9', '1', '2', '1196698768', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('741', '49', '4', '7', '1207778541', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('22', '10', '1', '2', '1196756354', 'd5b0a1c8', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('23', '1', '7', '7', '1196858569', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('24', '1', '7', '3', '1196864786', '3e0f9582', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('732', '214', '1', '33', '1207342484', '57db97fe', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('27', '5', '1', '7', '1197055187', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('29', '12', '4', '4', '1197242779', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('30', '13', '1', '2', '1197353936', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('33', '16', '1', '12', '1197419346', 'be162eff', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('35', '18', '4', '12', '1197419796', 'be162eff', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('37', '18', '4', '4', '1197478929', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('40', '19', '1', '13', '1197568066', 'c99b5cd7', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('598', '119', '1', '11', '1204817866', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('47', '16', '1', '7', '1197667188', '5981aa5c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('48', '16', '1', '12', '1197671648', 'be1622f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('49', '18', '4', '12', '1197672479', 'be1622f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('51', '16', '1', '4', '1197694337', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('52', '26', '1', '7', '1197816904', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('53', '27', '4', '7', '1197818969', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('54', '28', '1', '12', '1197819614', 'be1630fb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('55', '29', '1', '12', '1197819715', 'be1630fb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('56', '30', '1', '7', '1197819755', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('57', '31', '1', '7', '1197819969', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('58', '32', '1', '7', '1197820565', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('59', '28', '1', '7', '1197821211', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('60', '33', '1', '7', '1197822343', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('61', '34', '8', '2', '1197825316', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('62', '35', '8', '2', '1197826100', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('747', '181', '1', '25', '1208109124', 'aca509d8', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('63', '37', '8', '2', '1197828104', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('64', '38', '8', '2', '1197828811', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('65', '39', '8', '2', '1197828990', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('66', '29', '1', '7', '1197830251', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('67', '29', '1', '12', '1197853931', 'be1630fb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('68', '28', '1', '12', '1197853983', 'be1630fb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('70', '29', '1', '7', '1197886929', 'd5b0a1c8', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('71', '40', '1', '7', '1197917786', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('73', '42', '1', '7', '1197919020', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('74', '43', '1', '7', '1197929226', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('75', '44', '1', '7', '1197932725', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('76', '29', '1', '12', '1197992641', 'be1636cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('77', '40', '1', '12', '1197992702', 'be1636cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('78', '43', '1', '12', '1197992897', 'be1636cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('79', '45', '1', '12', '1197995054', 'be1636cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('80', '27', '4', '4', '1197996370', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('81', '46', '1', '2', '1198066265', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('82', '47', '1', '7', '1198071575', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('83', '48', '1', '7', '1198073868', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('84', '49', '4', '7', '1198088055', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('85', '16', '1', '7', '1198152836', '5981a682', '', '1', '0', '1', '1', '1208449193', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('86', '50', '1', '7', '1198153420', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('87', '51', '4', '7', '1198155937', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('88', '16', '1', '4', '1198169496', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('89', '5', '1', '7', '1198238477', '5981a682', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('91', '5', '1', '4', '1198510370', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('92', '53', '1', '12', '1198534478', 'c9dec52d', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('93', '5', '1', '4', '1198605991', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('94', '5', '1', '7', '1198772715', '59818cd3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('95', '53', '1', '7', '1198793854', '59818cd3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('156', '75', '1', '16', '1199854432', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('157', '60', '9', '3', '1199879405', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('98', '56', '9', '7', '1198959641', '59818cd3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('99', '57', '12', '7', '1198972141', '59818cd3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('100', '50', '1', '4', '1199115652', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('101', '1', '7', '16', '1199381775', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('102', '1', '7', '4', '1199382801', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('103', '58', '1', '16', '1199397966', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('104', '16', '1', '16', '1199398394', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('105', '44', '1', '16', '1199398771', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('106', '44', '1', '12', '1199400393', 'be162b48', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('107', '27', '4', '12', '1199400872', 'be162b48', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('108', '58', '1', '12', '1199401380', 'be162b48', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('109', '58', '1', '2', '1199407347', '59818aa4', '', '1', '0', '1', '1', '1199407773', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('111', '1', '7', '16', '1199407902', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('112', '58', '1', '16', '1199416332', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('113', '58', '1', '4', '1199421884', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('114', '58', '1', '2', '1199456370', '59818aa4', '', '1', '0', '1', '1', '1207254840', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('115', '1', '7', '2', '1199457364', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('117', '58', '1', '16', '1199463512', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('118', '1', '7', '16', '1199465244', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('119', '53', '1', '16', '1199468851', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('120', '53', '1', '2', '1199481868', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('160', '78', '1', '4', '1199981655', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('122', '58', '1', '12', '1199497988', 'be163b04', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('123', '1', '7', '4', '1199513523', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('736', '160', '1', '33', '1207674691', '57db9692', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('125', '53', '1', '4', '1199514219', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('126', '60', '9', '4', '1199514514', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('127', '58', '1', '4', '1199514827', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('128', '61', '1', '2', '1199535967', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('745', '29', '1', '3', '1208085940', '57dbda45', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('597', '169', '7', '17', '1204748469', 'be31ef21', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('131', '62', '1', '16', '1199547698', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('132', '1', '7', '16', '1199547820', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('133', '62', '1', '2', '1199548140', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('134', '58', '1', '16', '1199633803', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('135', '62', '1', '16', '1199635853', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('137', '64', '1', '7', '1199652357', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('138', '65', '1', '7', '1199652814', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('139', '66', '1', '7', '1199653468', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('140', '60', '9', '12', '1199666154', 'be162344', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('151', '71', '1', '16', '1199769436', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('143', '60', '9', '3', '1199715177', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('737', '230', '11', '11', '1207735338', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('146', '68', '12', '7', '1199732890', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('147', '69', '1', '16', '1199746685', 'bd82c209', '', '1', '0', '1', '1', '1199751584', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('149', '70', '12', '7', '1199749419', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('150', '69', '1', '4', '1199749505', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('152', '71', '1', '2', '1199791433', '59818aa4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('155', '74', '1', '16', '1199854248', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('159', '77', '1', '16', '1199938433', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('161', '78', '1', '2', '1199981851', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('182', '1', '7', '4', '1200021158', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('163', '62', '1', '7', '1199997295', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('226', '102', '11', '11', '1200420008', '59821dd4', '', '1', '0', '1', '0', '1200746072', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('165', '61', '1', '18', '1200004684', '580bd733', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('166', '53', '1', '18', '1200004947', '580bd733', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('167', '62', '1', '16', '1200005235', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('168', '1', '7', '18', '1200006297', '580bd733', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('169', '10', '1', '18', '1200006440', '580bd733', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('170', '81', '1', '18', '1200007125', '580bd733', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('171', '81', '1', '2', '1200007348', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('172', '1', '7', '7', '1200008588', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('173', '1', '7', '18', '1200010736', '58125d5c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('174', '78', '1', '18', '1200011608', '58125d5c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('175', '31', '1', '18', '1200012646', '58125d5c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('177', '31', '1', '7', '1200013468', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('178', '78', '1', '12', '1200013916', 'be16341f', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('179', '31', '1', '18', '1200014232', '58125d5c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('180', '78', '1', '18', '1200014570', '58125d5c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('181', '31', '1', '7', '1200014559', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('184', '78', '1', '4', '1200021881', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('185', '1', '7', '18', '1200045042', '58125d5c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('186', '82', '1', '7', '1200053191', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('187', '83', '1', '7', '1200056169', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('188', '84', '1', '7', '1200056722', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('189', '85', '1', '7', '1200063519', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('190', '78', '1', '7', '1200065547', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('191', '86', '1', '7', '1200069257', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('192', '87', '1', '7', '1200069607', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('193', '88', '12', '7', '1200070014', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('194', '88', '12', '18', '1200073833', '581a6d01', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('195', '86', '1', '18', '1200075019', '581a6d01', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('196', '88', '12', '7', '1200091451', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('198', '78', '1', '3', '1200138932', '53227cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('199', '88', '12', '18', '1200164895', '533f917a', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('200', '90', '1', '7', '1200166264', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('652', '202', '1', '4', '1206042946', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('651', '202', '1', '2', '1206024948', '59818264', '', '1', '0', '1', '1', '1208459945', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('650', '201', '12', '29', '1206015827', '547ae76c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('203', '91', '1', '12', '1200199462', 'be163ad9', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('204', '92', '1', '12', '1200199813', 'be163ad9', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('205', '86', '1', '4', '1200202764', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('206', '92', '1', '4', '1200205067', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('207', '93', '1', '7', '1200224974', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('208', '92', '1', '7', '1200225044', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('209', '91', '1', '7', '1200225193', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('210', '48', '1', '7', '1200227776', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('211', '94', '1', '7', '1200228225', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('212', '61', '1', '7', '1200228513', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('214', '92', '1', '18', '1200247414', '58166a91', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('215', '96', '1', '18', '1200251179', '58166a91', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('216', '96', '1', '7', '1200251404', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('217', '96', '1', '18', '1200252818', '58166a91', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('218', '96', '1', '7', '1200252930', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('219', '96', '1', '4', '1200267439', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('220', '1', '7', '3', '1200319434', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('221', '97', '9', '3', '1200319951', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('222', '98', '1', '7', '1200353554', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('223', '99', '12', '7', '1200384176', 'd5b0a1cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('224', '100', '12', '7', '1200384903', 'd5b0a1cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('225', '101', '12', '7', '1200385143', 'd5b0a1cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('229', '1', '7', '18', '1200443996', '58125ce8', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('230', '105', '10', '18', '1200445080', '58125ce8', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('231', '102', '11', '4', '1200457109', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('232', '102', '11', '11', '1200482311', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('233', '106', '1', '2', '1200486367', '59818cd1', '', '1', '0', '1', '1', '1204535943', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('235', '106', '1', '4', '1200499391', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('570', '161', '1', '16', '1204553784', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('236', '97', '9', '2', '1200528157', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('237', '97', '9', '18', '1200540411', '581a6fcb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('238', '107', '1', '18', '1200545638', '581a6fcb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('239', '97', '9', '2', '1200553586', 'd5b0a1cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('240', '97', '9', '3', '1200558849', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('241', '97', '9', '2', '1200593311', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('242', '96', '1', '4', '1200676748', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('243', '91', '1', '4', '1200676878', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('244', '91', '1', '2', '1200686550', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('245', '102', '11', '2', '1200740936', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('246', '102', '11', '11', '1200744773', '544d6c77', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('247', '91', '1', '17', '1200746128', 'be31f557', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('248', '91', '1', '2', '1200756061', '59818cd1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('249', '91', '1', '4', '1200805746', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('250', '91', '1', '3', '1200911563', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('251', '108', '4', '4', '1200953169', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('252', '109', '1', '16', '1200977410', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('253', '110', '11', '11', '1201019559', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('254', '111', '1', '2', '1201021571', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('255', '109', '1', '4', '1201021635', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('256', '108', '4', '4', '1201032102', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('257', '108', '4', '18', '1201041708', '580bd1bb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('258', '112', '1', '16', '1201067061', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('259', '108', '4', '4', '1201067176', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('261', '106', '1', '3', '1201079235', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('262', '108', '4', '18', '1201091451', '4f9006c6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('263', '1', '7', '16', '1201098209', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('734', '105', '10', '31', '1207517557', '52907cea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('735', '161', '1', '33', '1207522110', '57db9692', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('730', '228', '10', '18', '1207333758', '580bd973', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('268', '115', '11', '2', '1201123323', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('269', '108', '4', '2', '1201124098', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('270', '106', '1', '2', '1201124600', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('271', '107', '1', '2', '1201125891', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('272', '105', '10', '2', '1201126643', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('273', '105', '10', '18', '1201130690', '580bd8e0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('274', '108', '4', '18', '1201130941', '580bd8e0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('275', '108', '4', '4', '1201131806', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('276', '116', '1', '12', '1201132074', 'be162d29', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('277', '108', '4', '12', '1201132136', 'be162d29', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('278', '108', '4', '2', '1201132301', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('279', '105', '10', '18', '1201132652', '580bd8e0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('280', '105', '10', '4', '1201132757', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('281', '105', '10', '2', '1201132799', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('282', '105', '10', '18', '1201133447', '580bd8e0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('283', '106', '1', '3', '1201164909', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('284', '117', '1', '16', '1201184834', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('285', '115', '11', '11', '1201188322', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('286', '107', '1', '11', '1201189660', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('287', '118', '11', '2', '1201192816', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('288', '105', '10', '2', '1201202809', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('289', '119', '1', '2', '1201209232', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('290', '120', '12', '2', '1201215776', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('291', '121', '12', '2', '1201215840', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('292', '122', '1', '12', '1201215867', 'be163b2c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('646', '197', '1', '7', '1205791698', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('294', '122', '1', '2', '1201216036', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('645', '197', '1', '7', '1205791589', '5981b735', '', '1', '0', '1', '1', '1205792402', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('297', '126', '4', '2', '1201217540', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('298', '121', '12', '18', '1201223833', '580bd8e0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('299', '127', '12', '18', '1201231510', '580bd8e0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('300', '122', '1', '16', '1201235430', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('301', '122', '1', '2', '1201239716', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('302', '118', '11', '11', '1201255218', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('637', '197', '1', '16', '1205705144', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('305', '129', '4', '2', '1201267961', '5981814a', '', '1', '0', '1', '1', '1206842549', '10'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('306', '129', '4', '18', '1201285402', '580bdc68', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('307', '129', '4', '2', '1201289174', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('308', '122', '1', '12', '1201306144', 'be162668', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('309', '129', '4', '18', '1201343634', '580bdc68', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('310', '106', '1', '2', '1201347184', '5981814a', '', '1', '0', '1', '1', '1204553560', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('610', '181', '1', '11', '1205168188', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('313', '129', '4', '11', '1201349300', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('315', '129', '4', '18', '1201349568', '580bdc68', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('316', '129', '4', '2', '1201349963', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('317', '131', '9', '2', '1201350742', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('318', '129', '4', '11', '1201351174', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('319', '129', '4', '2', '1201351560', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('320', '132', '1', '12', '1201369012', 'be162668', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('321', '129', '4', '11', '1201374012', '544d6c77', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('322', '132', '1', '2', '1201374720', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('323', '133', '1', '12', '1201390568', 'be1634c2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('324', '133', '1', '2', '1201397345', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('325', '132', '1', '4', '1201398804', 'be3169e3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('326', '106', '1', '4', '1201399006', 'be3169e3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('335', '133', '1', '12', '1201448303', 'be1634c2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('328', '133', '1', '12', '1201405308', 'be1634c2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('330', '106', '1', '12', '1201405538', 'be1634c2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('332', '129', '4', '2', '1201435721', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('333', '111', '1', '2', '1201437634', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('334', '133', '1', '2', '1201440803', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('336', '133', '1', '18', '1201451642', '580bdc68', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('337', '134', '1', '18', '1201489042', '580bdd9f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('338', '134', '1', '2', '1201516955', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('339', '134', '1', '18', '1201526650', '50279679', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('340', '134', '1', '2', '1201532372', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('341', '116', '1', '2', '1201546878', '5981814a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('342', '116', '1', '18', '1201570137', '580bdf03', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('343', '116', '1', '4', '1201574947', 'c9fe4ef3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('344', '135', '13', '2', '1201593538', 'd5b0a1cc', '', '1', '0', '1', '1', '1201657753', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('345', '136', '13', '2', '1201593999', 'd5b0a1cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('347', '116', '1', '18', '1201611378', '58125ddb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('348', '116', '1', '3', '1201616722', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('349', '97', '9', '3', '1201616976', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('350', '116', '1', '18', '1201630395', '580bd21b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('351', '135', '13', '18', '1201634656', '580bd21b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('353', '138', '13', '16', '1201647701', 'bd82c209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('354', '135', '13', '18', '1201650722', '58125e32', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('355', '139', '13', '2', '1201696059', '59818d29', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('356', '139', '13', '18', '1201712694', '580bd21b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('609', '161', '1', '24', '1205155093', '8a5cdf17', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('575', '161', '1', '12', '1204585696', 'be162083', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('360', '116', '1', '12', '1201821685', 'be1623b7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('361', '139', '13', '12', '1201822215', 'be1623b7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('362', '140', '1', '18', '1201831347', '533f9049', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('363', '141', '12', '18', '1201833120', '533f9049', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('364', '141', '12', '11', '1201950093', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('365', '142', '12', '2', '1201954741', '5981a4ad', '', '1', '0', '1', '1', '1204631236', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('368', '144', '1', '2', '1201962718', '5981a4ad', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('367', '134', '1', '2', '1201959835', '5981a4ad', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('369', '142', '12', '11', '1202036671', '544d6c77', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('370', '145', '12', '4', '1202170253', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('371', '146', '12', '2', '1202247379', '5981a4ad', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('372', '147', '12', '2', '1202247642', '5981a4ad', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('373', '148', '1', '2', '1202250463', '5981a4ad', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('374', '145', '12', '11', '1202312103', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('375', '149', '11', '11', '1202314246', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('376', '60', '9', '8', '1202318891', '5019a209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('377', '150', '12', '18', '1202341157', '50279705', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('379', '60', '9', '4', '1202419389', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('380', '150', '12', '11', '1202467212', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('381', '150', '12', '2', '1202471169', 'd5b0a1cc', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('382', '60', '9', '3', '1202489235', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('383', '61', '1', '17', '1202493885', 'be31e3bd', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('384', '61', '1', '2', '1202503215', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('385', '152', '12', '2', '1202550378', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('386', '152', '12', '2', '1202550631', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('744', '29', '1', '4', '1208036704', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('743', '29', '1', '7', '1207912786', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('742', '230', '11', '11', '1207811976', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('389', '149', '11', '2', '1202730583', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('390', '139', '13', '2', '1202730682', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('391', '149', '11', '11', '1202752644', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('392', '152', '12', '4', '1202754209', 'bebc4ca3', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('393', '150', '12', '2', '1202759525', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('394', '153', '11', '2', '1202763534', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('395', '153', '11', '11', '1202817131', '59821dd4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('396', '153', '11', '2', '1202818865', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('397', '150', '12', '11', '1202819354', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('398', '153', '11', '11', '1202820633', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('400', '153', '11', '2', '1202821310', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('401', '155', '11', '2', '1202822341', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('402', '92', '1', '24', '1202838769', '8a5c2b11', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('403', '1', '7', '24', '1202839189', '8a5c2b11', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('404', '1', '7', '2', '1202840351', '5981a060', '', '1', '0', '1', '1', '1205155380', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('405', '1', '7', '24', '1202840871', '8a5c2b11', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('406', '156', '1', '2', '1202858334', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('407', '150', '12', '18', '1202874481', '580bdbfb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('408', '157', '4', '18', '1202875649', '580bdbfb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('409', '155', '11', '11', '1202904469', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('410', '155', '11', '2', '1202906217', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('411', '92', '1', '11', '1202907880', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('412', '158', '1', '2', '1202908048', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('413', '158', '1', '4', '1202920754', 'bebc7675', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('738', '231', '4', '2', '1207773042', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('415', '158', '1', '18', '1202928353', '580bdbfb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('697', '92', '1', '25', '1207006082', 'ac85e1ee', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('417', '159', '11', '2', '1202944581', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('611', '165', '9', '2', '1205269228', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('739', '230', '11', '2', '1207773616', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('419', '158', '1', '12', '1202948774', 'be16308c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('420', '158', '1', '2', '1202987638', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('421', '134', '1', '2', '1203003417', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('422', '159', '11', '11', '1203010338', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('423', '159', '11', '2', '1203010597', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('424', '1', '7', '14', '1203016952', 'c87b66f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('733', '161', '1', '4', '1207430389', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('426', '159', '11', '4', '1203051751', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('427', '1', '7', '14', '1203077788', 'c87b66f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('428', '159', '11', '11', '1203078034', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('429', '158', '1', '24', '1203104924', '48584813', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('430', '160', '1', '11', '1203106804', '544d6c77', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('431', '1', '7', '4', '1203133472', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('432', '160', '1', '4', '1203133954', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('433', '159', '11', '4', '1203134258', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('434', '158', '1', '18', '1203137072', '53251ee3', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('435', '160', '1', '18', '1203137469', '53251ee3', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('436', '159', '11', '18', '1203138462', '53251ee3', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('437', '160', '1', '2', '1203154107', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('438', '160', '1', '11', '1203155407', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('439', '160', '1', '2', '1203192031', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('440', '161', '1', '2', '1203192494', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('441', '161', '1', '18', '1203197031', '580bd49d', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('442', '160', '1', '11', '1203197208', '544d6c77', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('698', '161', '1', '25', '1207006399', 'ac85e1ee', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('444', '159', '11', '2', '1203204830', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('445', '161', '1', '4', '1203226812', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('446', '159', '11', '4', '1203227075', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('448', '161', '1', '28', '1203301525', 'c9f0ff66', '', '0', '0', '0', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('594', '182', '11', '11', '1204731080', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('450', '105', '10', '11', '1203411592', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('451', '105', '10', '2', '1203422760', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('452', '105', '10', '11', '1203425340', '59821dd4', '', '1', '0', '1', '1', '1203426238', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('453', '105', '10', '18', '1203425977', '580bda0b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('454', '159', '11', '11', '1203426416', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('455', '105', '10', '2', '1203426609', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('456', '159', '11', '2', '1203430401', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('457', '145', '12', '2', '1203435591', 'd4aa1594', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('458', '159', '11', '18', '1203449186', '580bda0b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('459', '145', '12', '18', '1203449241', '580bda0b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('460', '105', '10', '18', '1203449304', '580bda0b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('461', '105', '10', '2', '1203451213', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('462', '105', '10', '18', '1203452330', '580bda0b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('463', '162', '9', '2', '1203454240', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('493', '159', '11', '2', '1203602437', '5981a060', '', '1', '0', '1', '1', '1203613438', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('556', '173', '9', '3', '1204303163', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('492', '159', '11', '2', '1203599588', '5981a060', '', '1', '0', '1', '1', '1203613119', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('491', '159', '11', '11', '1203599113', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('490', '159', '11', '18', '1203573729', '58125eb6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('469', '164', '1', '2', '1203456860', '5981a060', '', '1', '0', '1', '1', '1263681693', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('470', '165', '9', '2', '1203464107', '5981a060', '', '1', '0', '1', '1', '1205790776', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('489', '159', '11', '18', '1203572945', '58125eb6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('472', '159', '11', '4', '1203466787', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('473', '145', '12', '4', '1203466993', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('474', '164', '1', '4', '1203467274', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('475', '159', '11', '2', '1203468798', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('476', '145', '12', '2', '1203468874', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('488', '168', '4', '18', '1203572630', '58125eb6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('478', '159', '11', '11', '1203496743', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('479', '159', '11', '2', '1203502978', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('480', '159', '11', '11', '1203506135', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('481', '159', '11', '2', '1203507124', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('482', '159', '11', '11', '1203509733', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('483', '159', '11', '2', '1203510937', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('558', '165', '9', '11', '1204364632', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('485', '166', '12', '2', '1203521761', 'd4aa1594', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('616', '194', '1', '2', '1205350847', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('487', '167', '12', '2', '1203523233', 'd4aa1594', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('495', '159', '11', '11', '1203612162', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('497', '129', '4', '18', '1203616895', '58125eb6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('498', '158', '1', '27', '1203618498', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('499', '169', '7', '27', '1203618789', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('500', '160', '1', '27', '1203619746', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('501', '161', '1', '27', '1203619863', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('502', '92', '1', '27', '1203619938', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('503', '86', '1', '27', '1203620185', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('504', '133', '1', '27', '1203620588', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('505', '129', '4', '2', '1203623093', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('506', '169', '7', '4', '1203624145', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('507', '159', '11', '4', '1203625095', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('508', '168', '4', '4', '1203625210', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('509', '169', '7', '2', '1203628609', '5981a060', '', '1', '0', '1', '1', '1207261157', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('510', '170', '12', '2', '1203630382', '5981a060', '', '1', '0', '1', '1', '1254936663', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('511', '168', '4', '2', '1203631671', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('512', '170', '12', '4', '1203655659', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('513', '168', '4', '4', '1203655778', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('543', '177', '12', '8', '1204044213', '5019a209', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('515', '170', '12', '18', '1203659110', '580bdb2e', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('518', '169', '7', '3', '1203756454', '57dbdae6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('519', '168', '4', '3', '1203756696', '57dbdae6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('520', '168', '4', '18', '1203761723', '580bdb2e', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('521', '168', '4', '18', '1203761830', '580bdb2e', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('522', '171', '4', '2', '1203771374', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('755', '28', '1', '27', '1208452613', '436acd22', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('525', '169', '7', '11', '1203878515', '544d6c77', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('526', '171', '4', '3', '1203882877', '57dbda89', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('527', '171', '4', '11', '1203883611', '544d6c77', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('728', '218', '4', '4', '1207245104', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('529', '171', '4', '3', '1203937133', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('530', '165', '9', '3', '1203937354', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('612', '165', '9', '3', '1205321058', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('532', '173', '9', '2', '1203943107', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('533', '165', '9', '2', '1203943286', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('534', '165', '9', '3', '1203949121', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('535', '165', '9', '2', '1203950574', 'd4aa1594', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('536', '171', '4', '11', '1203961876', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('613', '165', '9', '11', '1205323177', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('538', '171', '4', '4', '1203999545', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('539', '174', '12', '2', '1204024346', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('540', '175', '12', '2', '1204026603', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('541', '141', '12', '2', '1204028632', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('542', '176', '9', '2', '1204034337', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('544', '178', '11', '11', '1204047515', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('545', '177', '12', '18', '1204048783', '502794bf', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('546', '141', '12', '18', '1204048909', '502794bf', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('557', '165', '9', '3', '1204303494', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('549', '179', '11', '18', '1204162210', '50279454', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('550', '179', '11', '4', '1204163624', 'bebc4439', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('551', '179', '11', '18', '1204203171', '580bd5e1', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('552', '179', '11', '2', '1204205296', '5981a060', '', '1', '0', '1', '1', '1204211662', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('553', '179', '11', '3', '1204209018', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('554', '179', '11', '11', '1204281790', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('555', '179', '11', '2', '1204282436', '5981a060', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('559', '105', '10', '11', '1204367703', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('560', '105', '10', '18', '1204374301', '501f3149', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('561', '180', '10', '18', '1204375242', '501f3149', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('562', '181', '1', '16', '1204410670', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('563', '182', '11', '2', '1204482518', '5981a702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('564', '182', '11', '29', '1204489330', '547ae76c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('565', '161', '1', '31', '1204494652', '52907cea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('566', '106', '1', '31', '1204495605', '52907cea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('567', '106', '1', '18', '1204503783', '58166bb5', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('568', '183', '12', '8', '1204505869', '5aa330a1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('569', '106', '1', '2', '1204534298', '5981a702', '', '1', '0', '1', '1', '1204556438', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('571', '106', '1', '16', '1204553869', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('572', '92', '1', '16', '1204553927', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('573', '165', '9', '3', '1204562729', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('574', '105', '10', '11', '1204563606', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('576', '105', '10', '18', '1204594220', '581a6dd6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('577', '184', '1', '18', '1204600011', '581a6dd6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('583', '106', '1', '2', '1204659879', '5981a702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('580', '105', '10', '11', '1204627589', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('581', '105', '10', '18', '1204630752', '50279665', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('582', '186', '10', '2', '1204641524', '5981a702', '', '1', '0', '1', '1', '1205754550', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('585', '186', '10', '18', '1204661054', '512089ac', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('586', '186', '10', '2', '1204661339', '5981a702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('587', '187', '4', '2', '1204662547', '5981a702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('588', '188', '10', '2', '1204662945', '5981a702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('590', '183', '12', '4', '1204686195', 'bebc5517', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('746', '29', '1', '18', '1208102019', '5027955a', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('592', '169', '7', '24', '1204726600', '8a5c0e03', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('593', '160', '1', '24', '1204726819', '8a5c0e03', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('595', '190', '11', '11', '1204732331', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('596', '160', '1', '17', '1204747024', 'be31ef21', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('599', '191', '12', '29', '1204920971', '547ae76c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('600', '19', '1', '2', '1204926337', '5981a702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('601', '191', '12', '8', '1204928875', '5aa33cfe', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('602', '183', '12', '8', '1204929074', '5aa33cfe', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('603', '191', '12', '18', '1204932895', '580bdc1e', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('604', '191', '12', '11', '1204974140', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('605', '192', '12', '29', '1204999068', '547ae76c', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('606', '193', '11', '11', '1205008703', '544d6c77', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('754', '204', '1', '11', '1208449113', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('608', '181', '1', '25', '1205113022', 'aca370c3', '', '0', '0', '0', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('617', '195', '1', '2', '1205363578', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('641', '57', '12', '2', '1205753760', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('638', '196', '1', '16', '1205705427', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('639', '196', '1', '18', '1205750014', '581a6c84', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('636', '197', '1', '4', '1205641673', 'bebc5517', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('642', '197', '1', '4', '1205777408', 'bebc5517', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('633', '196', '1', '7', '1205609488', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('643', '198', '12', '7', '1205782286', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('640', '196', '1', '18', '1205751241', '581a6c84', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('632', '196', '1', '7', '1205609291', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('634', '196', '1', '7', '1205609642', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('635', '194', '1', '7', '1205609972', '5981b735', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('644', '197', '1', '7', '1205791477', '5981b735', '', '1', '0', '1', '1', '1205791944', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('647', '199', '9', '7', '1205845343', '59818264', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('648', '200', '1', '16', '1205869798', 'bd82ed27', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('649', '199', '9', '4', '1205869831', 'bebc5517', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('656', '204', '1', '2', '1206108093', '59818264', '', '1', '0', '1', '1', '1263681655', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('654', '201', '12', '11', '1206098714', '544d6c77', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('655', '203', '1', '2', '1206101049', '59818264', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('657', '205', '7', '33', '1206128715', '57db9604', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('658', '206', '8', '2', '1206129269', '59818264', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('659', '205', '7', '11', '1206181485', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('660', '204', '1', '11', '1206182723', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('661', '204', '1', '4', '1206227318', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('662', '204', '1', '2', '1206275126', '59819728', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('663', '184', '1', '31', '1206297492', '52907cea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('664', '204', '1', '4', '1206337242', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('665', '204', '1', '3', '1206351871', '57dbda34', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('666', '204', '1', '2', '1206356550', '59819728', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('667', '207', '13', '7', '1206360395', '59819728', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('668', '208', '10', '2', '1206380420', '59819728', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('669', '209', '10', '32', '1206388655', '59819728', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('670', '210', '1', '4', '1206478107', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('671', '204', '1', '31', '1206488358', '52907cea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('672', '202', '1', '27', '1206495756', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('673', '200', '1', '27', '1206496121', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('674', '19', '1', '27', '1206496282', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('675', '184', '1', '27', '1206496445', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('676', '211', '1', '27', '1206496666', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('677', '200', '1', '11', '1206527892', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('678', '205', '7', '33', '1206562901', '57db97ed', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('679', '211', '1', '2', '1206565320', '59819728', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('680', '19', '1', '2', '1206565534', '59819728', '', '1', '0', '1', '1', '1206566529', '2'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('681', '19', '1', '27', '1206565707', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('682', '19', '1', '2', '1206565947', '59819728', '', '1', '0', '1', '1', '1206566459', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('684', '19', '1', '27', '1206566285', '41f4b6f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('685', '19', '1', '2', '1206617143', '59819728', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('686', '209', '10', '18', '1206677053', '580bd1eb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('687', '205', '7', '3', '1206713892', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('688', '161', '1', '36', '1206720220', 'd97e39f8', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('689', '92', '1', '36', '1206720955', 'd97e39f8', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('690', '212', '7', '36', '1206733122', 'd97e39f8', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('691', '213', '10', '2', '1206745608', '5981b32b', '', '1', '0', '1', '1', '1206834122', '6'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('729', '209', '10', '32', '1207307800', '59818739', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('693', '213', '10', '2', '1206825453', '5981852e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('694', '213', '10', '11', '1206983677', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('695', '213', '10', '18', '1207004027', '5320bd31', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('696', '158', '1', '25', '1207005626', 'ac85e1ee', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('699', '196', '1', '7', '1207006566', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('700', '160', '1', '25', '1207008511', 'ac85e1ee', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('701', '214', '1', '25', '1207009591', 'ac85e1ee', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('702', '213', '10', '3', '1207038586', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('703', '215', '7', '40', '1207064111', 'c87ffe6c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('704', '215', '7', '11', '1207070132', '59821dd4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('705', '215', '7', '4', '1207072790', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('706', '161', '1', '4', '1207073083', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('707', '214', '1', '4', '1207073294', 'bebc5cf7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('708', '214', '1', '17', '1207074478', 'be31f081', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('709', '214', '1', '18', '1207088067', '53251fe0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('710', '214', '1', '2', '1207093957', '59818739', '', '1', '0', '1', '1', '1207155500', '5'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('711', '214', '1', '40', '1207094059', 'c9d5faa1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('712', '92', '1', '40', '1207094136', 'c9d5faa1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('713', '161', '1', '40', '1207094256', 'c9d5faa1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('715', '217', '10', '2', '1207095456', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('716', '215', '7', '3', '1207136727', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('717', '218', '4', '7', '1207137319', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('753', '28', '1', '32', '1208448772', '59818739', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('752', '233', '8', '2', '1208256744', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('751', '204', '1', '7', '1208250517', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('750', '181', '1', '17', '1208213444', 'be31fb0e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('749', '213', '10', '33', '1208207836', '57db9692', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('748', '232', '8', '2', '1208120461', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('726', '214', '1', '27', '1207150222', '41f4b6f1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('756', '234', '1', '7', '1208520312', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('757', '235', '10', '2', '1208640705', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('758', '204', '1', '7', '1208726449', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('759', '235', '10', '11', '1208857880', '5321e738', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('760', '230', '11', '74', '1209158979', '512195b7', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('761', '182', '11', '74', '1209164063', '512195b7', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('762', '232', '8', '2', '1209325136', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('763', '232', '8', '18', '1209355219', '501f30be', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('764', '29', '1', '12', '1209405995', 'be16375e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('765', '181', '1', '25', '1209421679', 'ac84506f', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('766', '230', '11', '11', '1209465980', 'd562c2bb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('767', '204', '1', '7', '1209504192', '59818739', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('768', '204', '1', '11', '1209550879', '53324188', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('769', '181', '1', '25', '1209568616', 'aca2862c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('770', '199', '9', '11', '1209628155', '5816b9c4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('771', '49', '4', '11', '1209629542', '5816b9c4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('772', '181', '1', '25', '1209680274', 'aca3606b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('773', '181', '1', '11', '1209709428', '533907f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('774', '164', '1', '11', '1209709658', '533907f2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('778', '239', '1', '7', '1210320866', '59819883', '', '1', '0', '1', '1', '1212335984', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('779', '239', '1', '27', '1210348202', '436acd26', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('780', '239', '1', '17', '1210379155', 'c9fbd978', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('781', '240', '1', '7', '1210422182', '59819883', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('782', '117', '1', '7', '1210423274', '59819883', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('783', '241', '11', '11', '1210693056', 'd562c511', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('784', '240', '1', '32', '1211320588', '5981abd6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('785', '242', '4', '7', '1211367437', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('786', '243', '1', '7', '1211464681', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('787', '243', '1', '27', '1211466400', '436acd26', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('788', '165', '9', '2', '1211479039', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('789', '165', '9', '3', '1211539588', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('790', '243', '1', '3', '1211539968', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('791', '165', '9', '32', '1211558989', '5981abd6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('792', '165', '9', '33', '1211649036', '57db97bf', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('793', '244', '1', '7', '1212059894', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('794', '244', '1', '7', '1212060566', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('795', '245', '1', '7', '1212241791', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('796', '244', '1', '2', '1212323576', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('797', '245', '1', '3', '1212404681', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('798', '245', '1', '2', '1212419049', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('799', '204', '1', '2', '1212505192', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('800', '241', '11', '2', '1212506007', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('801', '241', '11', '11', '1212507528', '532b22cf', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('804', '246', '1', '7', '1212683561', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('803', '241', '11', '2', '1212597123', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('805', '246', '1', '18', '1212705522', '533f91cf', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('806', '247', '4', '32', '1213116090', '5981abd6', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('807', '248', '1', '7', '1213122498', '5981abd6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('808', '248', '1', '3', '1213259028', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('809', '249', '1', '2', '1213627245', '5981b825', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('810', '250', '10', '32', '1213640342', '5981b825', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('811', '250', '10', '18', '1213661321', '53251e85', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('813', '252', '9', '32', '1213798181', '5981b825', '', '1', '0', '1', '0', '1235632522', '3'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('814', '252', '9', '27', '1213799590', '436acd22', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('815', '244', '1', '7', '1213897528', '5981b825', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('816', '253', '4', '3', '1215522775', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('817', '254', '1', '2', '1215593782', '5981aad0', '', '1', '0', '1', '1', '1215621304', '6'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('818', '254', '1', '11', '1215600925', '5321e62e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('819', '253', '4', '11', '1215601720', '5321e62e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('820', '254', '1', '11', '1215614974', '5321e62e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('821', '255', '1', '2', '1215624806', '5981aad0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('822', '254', '1', '2', '1215629057', '5981aad0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('823', '254', '1', '27', '1215637361', '436acd22', '', '1', '0', '1', '1', '1215638194', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('824', '254', '1', '33', '1215637660', '57db9680', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('825', '253', '4', '3', '1215704418', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('826', '254', '1', '3', '1215704573', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('827', '97', '9', '3', '1215704894', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('828', '253', '4', '11', '1215706530', '532ad318', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('829', '256', '9', '32', '1215975182', '5981aad0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('830', '257', '13', '12', '1216403219', 'c9efe1d7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('832', '259', '10', '2', '1216659799', '5981aad0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('833', '259', '10', '11', '1216743713', '5806a834', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('834', '259', '10', '2', '1216746722', '5981aad0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('835', '259', '10', '18', '1216768153', '581a6ce4', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('836', '259', '10', '3', '1216801321', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('837', '253', '4', '2', '1216837625', '5981aad0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('838', '259', '10', '2', '1216838484', '5981aad0', '', '1', '0', '1', '1', '1217325577', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('839', '259', '10', '11', '1216916846', '5806afbd', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('840', '259', '10', '18', '1217006751', '5320bddb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('841', '253', '4', '18', '1217007055', '5320bddb', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('842', '260', '1', '2', '1217235871', '5981ac5e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('843', '259', '10', '3', '1217252256', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('844', '260', '1', '3', '1217252404', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('845', '260', '1', '2', '1217272171', '5981ac5e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('846', '261', '9', '2', '1217496597', '59818977', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('847', '262', '4', '2', '1217507960', '59818977', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('854', '210', '1', '7', '1217929955', '59818977', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('849', '70', '12', '32', '1217591248', '59818977', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('850', '213', '10', '32', '1217591421', '59818977', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('851', '213', '10', '3', '1217859053', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('852', '213', '10', '11', '1217868508', '4f9015e4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('853', '213', '10', '32', '1217929036', '59818977', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('855', '257', '13', '32', '1217968139', '59818977', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('856', '213', '10', '3', '1218118463', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('857', '213', '10', '2', '1218190478', '5981aa9b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('858', '264', '9', '11', '1218190507', '5806a859', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('859', '264', '9', '33', '1218210808', '5019cdd5', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('860', '265', '4', '2', '1218217375', '5981aa9b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('861', '213', '10', '18', '1218256975', '58125de5', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('862', '210', '1', '18', '1218257191', '58125de5', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('863', '266', '1', '2', '1219567198', '5981a1e2', '', '1', '0', '1', '1', '1222518738', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('864', '213', '10', '3', '1219937459', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('865', '267', '10', '11', '1221674411', '5806a7a9', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('866', '268', '1', '2', '1222113302', '5981b892', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('867', '267', '10', '2', '1222113526', '5981b892', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('868', '260', '1', '2', '1222258862', '598186c1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('869', '267', '10', '31', '1222377282', '52907c0a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('870', '215', '7', '31', '1222377601', '52907c0a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('871', '269', '10', '2', '1222434507', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('872', '270', '1', '2', '1222434818', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('873', '260', '1', '3', '1222442226', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('874', '260', '1', '40', '1222477000', 'c9d4970c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('875', '270', '1', '40', '1222477268', 'c9d4970c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('876', '271', '1', '2', '1222505735', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('877', '272', '1', '2', '1222505958', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('878', '273', '1', '2', '1222506350', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('881', '274', '1', '2', '1222695285', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('882', '275', '10', '2', '1222723286', '544da7b2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('883', '274', '1', '18', '1222819340', '4f920929', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('884', '270', '1', '18', '1222819503', '4f920929', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('885', '260', '1', '18', '1222819603', '4f920929', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('886', '276', '10', '18', '1222819725', '4f920929', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('887', '276', '10', '2', '1222976982', '5981a973', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('893', '276', '10', '2', '1223582038', '59819ea5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('889', '269', '10', '2', '1223040767', '5981a973', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('891', '279', '1', '2', '1223117225', '5981a973', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('892', '280', '1', '2', '1223117751', '5981a973', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('894', '276', '10', '2', '1223674544', '59819ea5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('903', '96', '1', '3', '1224158106', '3ebe330c', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('896', '96', '1', '2', '1223812065', '59819ea5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('897', '282', '1', '2', '1223904044', '59819ea5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('898', '283', '10', '2', '1223906191', '59819ea5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('899', '282', '1', '11', '1223919636', '533905a0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('900', '284', '1', '2', '1223927329', '59819ea5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('901', '285', '11', '11', '1224068421', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('904', '96', '1', '11', '1224172157', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('905', '286', '1', '2', '1224228697', '59819afe', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('908', '285', '11', '11', '1224574217', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('909', '260', '1', '11', '1224586822', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('910', '260', '1', '18', '1224632934', '581a6dc0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('911', '260', '1', '11', '1224670876', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('912', '260', '1', '2', '1224671659', 'd5e58483', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('913', '287', '11', '11', '1224691037', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('914', '272', '1', '11', '1224748911', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('915', '270', '1', '11', '1224751287', '5321e473', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('916', '288', '7', '713', '1224890251', 'bde71832', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('917', '288', '7', '11', '1224936044', '532ad37b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('918', '288', '7', '713', '1224968280', 'bde71832', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('919', '288', '7', '2', '1225017549', '598195e6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('920', '288', '7', '11', '1225017964', '532ad37b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('921', '215', '7', '2', '1225027063', '598195e6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('922', '288', '7', '713', '1225038921', 'bde71832', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('923', '288', '7', '27', '1225289603', '436acd26', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('924', '264', '9', '27', '1225375054', '436acd26', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('925', '288', '7', '713', '1225394204', 'bde71832', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('926', '289', '1', '27', '1225463262', '436acd26', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('934', '291', '7', '714', '1227370327', 'be1e8f65', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('928', '264', '9', '33', '1225541012', '57db96fc', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('929', '290', '11', '2', '1225556322', '598195e6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('930', '290', '11', '11', '1225911747', '5121bad1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('932', '213', '10', '2', '1226410797', '59818699', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('933', '213', '10', '11', '1226421790', '5121bad1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('935', '292', '1', '714', '1227442262', 'be8ab0f5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('936', '292', '1', '2', '1227442870', '51249a14', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('939', '289', '1', '18', '1227505358', '53d5202d', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('938', '292', '1', '714', '1227462046', '5981841b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('940', '289', '1', '7', '1227618411', '5981841b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('941', '292', '1', '11', '1227634353', '5027c1b9', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('942', '292', '1', '2', '1227646168', '5981841b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('943', '292', '1', '714', '1227647112', 'bee315eb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('944', '292', '1', '11', '1227691033', '5027c1b9', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('945', '292', '1', '714', '1227693085', 'bee174eb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('946', '296', '11', '11', '1227704430', '5027c1b9', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('947', '297', '13', '7', '1227705587', '5981841b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('948', '292', '1', '714', '1227749556', 'bee174eb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('949', '298', '12', '714', '1227770457', '5981aeaf', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('950', '298', '12', '2', '1227770925', '5981aeaf', '', '1', '0', '1', '1', '1231090141', '1'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('951', '292', '1', '2', '1227773982', '5981aeaf', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('952', '298', '12', '714', '1227778764', 'bee174eb', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('953', '298', '12', '27', '1227802465', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('954', '298', '12', '714', '1227810516', 'bee31bc8', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('955', '213', '10', '714', '1228044897', 'be88bce7', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('956', '299', '4', '11', '1228209433', '5806a6d2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('957', '300', '1', '11', '1228238602', '5806a6d2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('958', '301', '1', '714', '1228253694', 'bee32702', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('959', '300', '1', '11', '1228468326', '5806a6d2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('960', '302', '11', '11', '1228472299', '5806a6d2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('961', '303', '1', '2', '1228818928', '59818607', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('962', '303', '1', '11', '1228913152', '5806a6d2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('963', '304', '1', '714', '1228952661', 'be1ff8ed', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('964', '305', '1', '2', '1229017538', '5981ad58', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('965', '306', '13', '7', '1229189015', '5981ad58', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('966', '307', '1', '2', '1229213108', '5981ad58', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('967', '308', '1', '7', '1229309634', '5981ad58', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('968', '309', '1', '11', '1229680539', '5325dced', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('969', '309', '1', '714', '1229725811', 'bee179c4', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('970', '309', '1', '714', '1230581231', 'be1f1af2', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('972', '309', '1', '2', '1230751439', '59819971', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('973', '310', '1', '27', '1231033632', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('974', '310', '1', '11', '1231060034', '5806af2b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('975', '310', '1', '2', '1231088955', '59819971', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('976', '310', '1', '27', '1231103374', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('977', '207', '13', '27', '1231360895', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('979', '312', '12', '2', '1231701472', '598189ea', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('980', '313', '7', '718', '1231778135', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('981', '314', '1', '718', '1231778996', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('982', '313', '7', '7', '1231855297', '59818e29', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('984', '313', '7', '714', '1232162122', 'be1e4c40', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('985', '313', '7', '32', '1232197962', '59818e29', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('986', '313', '7', '714', '1232198500', 'be1e4c40', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('987', '313', '7', '718', '1232223381', 'd5252e87', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('988', '316', '1', '31', '1232232162', '580bedf0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('989', '316', '1', '27', '1232300138', '4aed4b60', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('990', '316', '1', '718', '1232381323', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('991', '313', '7', '2', '1232468471', '59818e29', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('992', '287', '11', '718', '1232534072', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('993', '316', '1', '31', '1232841486', 'd562e5a8', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('994', '316', '1', '2', '1232961310', '59818ce0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('995', '314', '1', '2', '1232961489', '59818ce0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('996', '317', '14', '2', '1232962763', '59818ce0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('997', '317', '14', '2', '1232962836', '59818ce0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('998', '314', '1', '718', '1232987274', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('999', '262', '4', '718', '1233245611', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1000', '218', '4', '718', '1233246069', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1001', '161', '1', '718', '1233246368', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1002', '262', '4', '2', '1233314430', '59818ce0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1003', '262', '4', '718', '1233318823', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1004', '318', '7', '4', '1233332664', 'aa9b911e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1005', '316', '1', '18', '1233713041', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1006', '162', '9', '718', '1233765533', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1007', '287', '11', '2', '1233787926', '598193e5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1008', '319', '1', '18', '1233894790', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1009', '18', '4', '718', '1233926734', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1011', '18', '4', '7', '1234036832', '598193e5', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1012', '18', '4', '718', '1234190457', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1013', '320', '4', '718', '1234191395', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1016', '319', '1', '32', '1235029640', '598183f0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1017', '323', '10', '7', '1235032818', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1018', '316', '1', '31', '1235085535', 'd562e515', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1019', '320', '4', '7', '1235381908', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1020', '18', '4', '7', '1235382137', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1021', '324', '1', '7', '1235382279', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1022', '287', '11', '718', '1235397197', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1023', '300', '1', '32', '1235632357', '598183f0', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1024', '325', '15', '718', '1235666883', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1025', '300', '1', '18', '1235695171', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1026', '325', '15', '18', '1235697255', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1027', '18', '4', '18', '1235698207', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1028', '323', '10', '18', '1235698479', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1029', '325', '15', '7', '1235720663', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1030', '325', '15', '718', '1235736693', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1031', '325', '15', '718', '1235736972', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1032', '325', '15', '718', '1235737269', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1033', '325', '15', '7', '1235744257', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1034', '326', '15', '7', '1235809863', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1035', '325', '15', '718', '1236002557', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1036', '326', '15', '718', '1236002987', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1037', '327', '15', '718', '1236010637', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1038', '328', '1', '7', '1236016403', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1039', '327', '15', '7', '1236016941', '598183f0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1040', '182', '11', '762', '1236024263', 'c828443a', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1041', '325', '15', '18', '1236043706', '53d5207f', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1042', '318', '7', '714', '1236163599', 'bee27d0f', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1043', '325', '15', '718', '1236176595', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1044', '327', '15', '718', '1236176915', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1045', '18', '4', '4', '1236191238', 'aa9b911e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1046', '329', '14', '7', '1236346844', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1047', '330', '14', '7', '1236346890', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1048', '331', '1', '7', '1236352417', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1049', '182', '11', '766', '1236366425', 'be872818', '', '0', '0', '0', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1050', '332', '1', '7', '1236546081', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1051', '333', '1', '7', '1236546654', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1055', '182', '11', '718', '1236695381', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1053', '335', '14', '7', '1236624688', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1054', '336', '14', '7', '1236677758', '59819c19', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1056', '327', '15', '765', '1237296604', '533728f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1057', '337', '4', '765', '1237307537', '533728f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1058', '327', '15', '718', '1237367855', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1059', '337', '4', '718', '1237368699', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1060', '337', '4', '765', '1237378125', '533728f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1061', '327', '15', '765', '1237378263', '533728f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1062', '338', '4', '765', '1237386767', '533728f2', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1063', '338', '4', '718', '1237889926', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1064', '337', '4', '4', '1238013639', 'aa9b911e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1065', '337', '4', '718', '1238071212', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1066', '337', '4', '4', '1238091200', 'aa9b911e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1067', '337', '4', '765', '1238093280', '53232a2a', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1068', '339', '1', '25', '1240013263', 'cef85597', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1070', '341', '14', '2', '1241268606', '59818bc0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1071', '342', '1', '2', '1241539763', '59818bc0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1072', '343', '1', '2', '1241719795', '59818bc0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1073', '342', '1', '4', '1241915900', 'bebc60e6', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1074', '344', '1', '2', '1242465659', '59818bc0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1075', '345', '1', '2', '1242541927', '59818d95', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1076', '346', '10', '770', '1242636205', 'd53c5380', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1077', '347', '14', '2', '1243500005', '59819f35', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1078', '348', '15', '718', '1244457079', '502666da', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1079', '349', '15', '718', '1245227160', '502666da', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1080', '350', '1', '40', '1245295310', 'c87fffac', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1081', '351', '14', '2', '1245508158', '5981957e', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1082', '350', '1', '2', '1248002160', '598180e0', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1083', '352', '15', '718', '1249033177', '50265e8b', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1086', '326', '15', '718', '1249908279', 'c1928244', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1085', '244', '1', '7', '1249134715', '59818d7b', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1087', '353', '1', '2', '1250793105', '598189f1', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1088', '354', '1', '2', '1251880418', '5981809a', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1089', '326', '15', '718', '1253018624', 'c190f405', '', '1', '0', '1', '0', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1091', '170', '12', '2', '1254936570', '4f9bf580', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1092', '356', '1', '2', '1255297155', '4f9b9933', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1093', '357', '13', '7', '1256989009', '5324dfda', '', '1', '0', '1', '1', NULL, '0'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count) VALUES('1094', '358', '14', '2', '1256990268', '5324dfda', '', '1', '0', '1', '1', NULL, '0'); # # TABLE: phpbb_posts_text # DROP TABLE IF EXISTS phpbb_posts_text; CREATE TABLE phpbb_posts_text( post_id mediumint(8) unsigned NOT NULL, bbcode_uid varchar(10) NOT NULL, post_subject varchar(60), post_text text, PRIMARY KEY (post_id) ); # # Table Data for phpbb_posts_text # INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('1', 'd154198098', 'BillyJoel.es ha nacido, presentación oficial.', 'Este nuevo foro , se ha creado con la intención de agrupar a la mayor cantidad de fans posibles de Billy Joel de habla Hispana, ya que no abundan los sitios en Español en la red , con lo cual o aprendes Inglés o te quedas sin nada. Principalmente este es el motivo de esta página web, para así poder, comentar, cambiar impresiones, discutir, dar otros puntos de vista, criticar canciones y discos, hablar de otros detalles en general sobre la vida e historia de BILLY JOEL además de dar nuestras opiniones personales sobre la genial música de este canta-autor y pianista Norteamericano, uno de los mas absolutamente grandes de los últimos tiempos. También se hace con intención de cambiar material inédito entre los participantes, toda aquella memorabilia y coleccionismo (sin ánimo alguno de lucro) Canciones, letras, fotos, conciertos, bootlegs, outtakes, que como fans que somos y bien sabemos, hemos ido reuniendo por múltiples excursiones a ferias del disco internacionales y demás viajes, con mucha dedicación e ilusión en busca del Billy Joel perdido. Un saludo y buen viaje por el rio de los sueños.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('2', '504ef8a732', '', '¡¡Hola!! Bueno, por fin alguien se ha decidido a crear un rinconcito para que los fans de Joel podamos charlar en español... Yo no tengo mucho tiempo pero prometo pasarme por aquí siempre que pueda, ya que ha sido una gran sorpresa toparme con esto en esta aburrida tarde de Domingo y apuntes. Espero que crezcamos mucho!! ¡¡Un saludo y ánimo con la página!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('3', '9ce047aad7', 'Caja "My lives"', '¿Es "My lives" el paso previo a un nuevo trabajo?, December 16, 2005 Estoy muy contento tras esta edición del box "My Lives", y aunque, en su mayoría, este material ya lo conocía, esta caja me permite tenerlo todo bien recopilado. Decía,contento, porque desde "River of dreams" en un lejano ya 1993, los fans estábamos deseosos de nuevo material(aunque en este caso, no es exactamente nuevo, pero es lo que mas se le parece). Con la excepción de "Fantasies and Delusions(2001)" Mr.Joel, apareció de nuevo por la escena musical, y aunque no fué el tipo de música que todos sus fans podrían esperar, fué acogido con entusiasmo. No obstante y a mi entender, hubiera ganado mucho mas en su conjunto, si "Fantasies and Delusions" hubiera sido orquestrado por la filarmónica de Londres, por ejemplo)..... si no, para muestra "Elegy: The great peconic", la cual, aparte de ser superior a las otras clásicas, adquiere, tal vez por esta misma razón, otra tesitura, recordando mucho a banda sonora, que sin contar su incursión con Disney en el film "Oliver and company" con la canción " Why should I worry" o con " When you wish upon a star", sigue ausente en el, la faceta de compositor de bandas sonoras en su polifacética carrera. Tal vez tendría que ir a por el Oscar probando de componer música para algún film, puesto, que después de componer música clásica y obras para Broadway (Movin out), es lo único que le queda por hacer amén del último galardón por ganar........... Su amigo Bruce Springsteen ya probó fortuna. ¿para cuando un dueto Bruce & Billy?.......... Personalmente, hubiera descartado el incluir canciones de estudio que ya se han editado previamente en su discografía, "An innocent man", "Big shot", "Until the night" resultan demasiado redundantes ponerlas aqui y que además, ya las hemos oido en otras tantas ocasiones, en los numerosos recopilatorios del artista. Hubiera deseado mas demos & outtakes, como "Christie Lee" "Only the good die young reagge" o Highway 61 Revisited (cover de Bob Dylan) Realmente la única canción inédita ha sido "the siegfried line" porque el resto son demos o versiones-genesis, "motorcycle song"," the prime of your live" algunas como estas no las había oido nunca, no estándo nada mal, pero mucho del material de "My lives" los fans, ya lo habíamos escuchado en bootlegs, Retolds, desperdigadas en caras B, colaboraciones o apariciones especiales. Por el contrario, se agradecen algunas outtakes que se ven muy mejoradas en cuanto a calidad de sonido, especialmente "Money or love"(Excelente, dedicada al bajo Doug Stegmeyer antes de su muerte)"Only a man" "Oyster bay", por citar solo algunas. Noto a faltar algunas canciones, que aquí, hubieran tenido un puesto de honor, "Handball" " Great ships, great oceans", "Rosalinda" " Josephine" "Lawyers & divorces" (aunque otras tantas de la lista solo se de su existencia, francamente, no entiendo porque Billy no las ha incluido en "My lives"), una verdadera lástima. Tal vez las esté reservando para reutilizarlas en un futuro para componer nuevas canciones. Por cierto, una gran noticia; es que Joel se ha encerrado en el estudio a grabar de nuevo, con el que fué el responsable de sus mas exitosos albunes, el productor Phil Ramone. Joel vuelve a componer la música pop-rock que lo hizo una superestrella, después de casi una década de experimentar con otros tipos de música. ( A día de hoy, se trata de una canción que compuso para Tonny Bennet muy a lo Sinatra que ahora su compañia COLUMBIA records, ha lanzado como single, y que Joel dedica a su nueva esposa, Kate Lee de 23 años) no va ir acompañada de nuevo album como se creía, si no que se queda en simple single. (Decepcionante para los fans) Las canciones que no están en "MY LIVES" y deberían estar. ¿Tal vez estén encerradas en el atico?. -Silver seas (Cold Spring Harbor days) Nocturne with lyrics. -Lawyers and divorces -Everybody has a dream original (2 versiones) Mas canciones de "The lost souls". "Alexa\'s Theme" (1988) "Attitude Road" (1992) "Bye Bye" (Cold Spring Harbor/Piano Man days) "December Song" (Cold Spring Harbor/Piano Man days) "Every Time (Falling In Love)" (1982) "Great Ships, Great Oceans" (Cold Spring Harbor/Piano Man days) "Handball" (1979) (though he performed it in concert as early as 1977) "Indian Love Ball" (1981) "It\'s All Right" (1982) "It\'s Not Easy" (written for Cold Spring Harbor) "Josephine" (written between Cold Spring Harbor and Piano Man) "Long, Long Time" (written between Cold Spring Harbor and Piano Man) "New Thing in C" (1989) "Numbers" (1982) "Rosalinda" (written between Cold Spring Harbor and Piano Man) "Song for Alexa" (1989 -- possibly became "Lullabye"?) "Tell Them You\'re In Love" (1985) "The Moment at Hand" (1988) "The Purple Heart" (1982 -- possibly became "Goodnight Saigon"?) "Until You Come to Me" (written for Cold Spring Harbor) "Wide Awake" (1982) "Where is My Lady" (written for Cold Spring Harbor) "Where\'s the Revolution" (written for Piano Man) "You Got Your Reasons" (1989) Sin contar todo el material que tendrá por ahí escondido .. a saber, porque 30 años de carrera dan para mucho. Y las sesiones del Turnstiles con los músicos de Elton John, Olson? ..etc etc.. o la canción que compuso en el año 1995, trás la gira face to face con Elton John? - "Red, white and Blues", hubieran aportado mucho mas a "My lives" que la simple versión a duo de "You may be right"... por citar solo algunos desatinos en "My lives". En fin ..... algo es algo y se agradece .. y cuanto es!!!, después de todos estos años de silencio. I\'ve love these days. Billy Joel vive!,larga vida al rey William, all the kings mens, and all the king horses.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('6', 'c55d9f64f3', 'Por fin ¡¡¡¡¡¡¡', 'Una gran alegría fue el aviso para participar de este foro....... soy Argentino........He tenido la oportunidad de ver en vivo 2 veces a BJ.......puedo contar esas ricas experiencias a mis colegas. Un saludo'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('7', 'd71bb7381d', '', 'Qué gran noticia encontrar una página web en Español sobre el gran William Martin. Son muchos años de seguimiento en todo tipo de foros extranjeros así que espero que nos podamos reunir en este mundo virtual los seguidores del más grande para contar nuestras vivencias, aventuras y, porqué no, desventuras relacionadas con Joel. Yo he tenido la oportunidad (y suerte) de verle ya tres veces en directo, por supuesto siempre viajando al extranjero pues, como bien sabéis, Billy nunca ha tenido a bien venir a tocar a España (salvo en los lejanos días de la gira del Glass Houses..). Por lo tanto, espero poder contaros un día cómo fueron esas experiencias y, sobre todo, cómo llegué a conocer personalmente a dos miembros de su banda, Liberty de Vito y Mark Rivera (ambos extraordinarias personas). Saludos desde la capital de la Tierra de Nadie'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('743', '65a7b986fa', 'Fue en 1972', 'Por cortesía de Billy Jon que ha dado el aviso, aquí lo tienes. http://es.youtube.com/watch?v=Ou0Tk_Bl3Bs'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('744', 'b9b493c520', 'Cigarrillo', 'Me llama la atención ver a BJ fumando ......no estoy acostumbrado a verlo asi....y eso que yo fumo.........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('745', '7380ba8bf6', '', 'Otro vídeo por aquí... Billy se mosquea en Rusia en el concierto del 87 y se carga el piano porque la gente de las luces no dejan de enfocar hacia el público... Esta peña del artisteo es un tanto peculiar, por decirlo así xDD. Pobre piano: http://es.youtube.com/watch?v=AYrrAXeEVsM&feature=related'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('746', '611349e648', '', '[quote:611349e648=\"Leyna\"]Otro vídeo por aquí... Billy se mosquea en Rusia en el concierto del 87 y se carga el piano porque la gente de las luces no dejan de enfocar hacia el público... Esta peña del artisteo es un tanto peculiar, por decirlo así xDD. Pobre piano: http://es.youtube.com/watch?v=AYrrAXeEVsM&feature=related[/quote:611349e648] Este video sí que tiene tela!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('747', 'd807a32678', '', 'Hola;Entrevista a billy en: endi.com/flash/m♪sica/ domingo 13 Abril Perdonen y gracias.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('9', '97b19f03f1', 'somos mas de lo que creemos........', 'Les cuento..........En Argentina tengo varios conocidos en mi ciudad que degustan profundamente la música del "maestro".......Es mas........Pablo.........Te digo que conozco a un médico de aqui, de mi ciudad, ciudad de la Plata, que le sucedió algo similar con el tema del asma..... creo que en Wembley......con la diferencia que no es lo mismo viajar desde Argentina hasta Inglaterra.......que desde la Península Ibérica.......Jaja........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('92', '2154310da1', 'Yankee Stadium 1989', 'Una pregunta: Alguien tiene el audio completo del concierto en el Yankee Stadium de 1989? En el DVD sólo aparecen algunos temas, pero sé que tocó otros como Big Shot y Allentown. Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('93', '170b1b6ef3', 'será asi???', 'Lei en la página del periódico.com.....de España........una nota referida a esta canción.......lo curioso es que estaba titulada "Joel Irrita a sus Fans"......en realidad a mi me irrita que no la haya interpretado el.....porque respecto al mensaje de la letra lo comparto un 100%........"""los yanquis""".....son aborrecibles con ciertas cosas........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('11', 'ce95b07a0b', '', 'Bueno, me congratula ver que el templo de la sabiduría va creciendo... (es una broma mala xDD) Pues yo no he tenido oportunidad de ver a Billy Joel en concierto, más que nada porque tengo 23 añitos y cuando empecé a escucharlo tenía sólo 8. De todas formas supongo que es una experiencia de esas inolvidables, y lo de ir a Londres o a algún sitio si hay gira europea (¿la hay?) me parece genial. Además yo trabajo en la mayor página web de reservas hoteleras del mundo y con estas cositas siempre consigo buenos precios y ese tipo de historias (acabo de nombrarme responsable de logística xDDD) Bueno chicos, nos seguiremos leyendo por aquí!! Saludos!! :wink:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('12', '3e4d4019a8', '', '[quote:3e4d4019a8=\"Leyna\"]Bueno, me congratula ver que el templo de la sabiduría va creciendo... (es una broma mala xDD) Pues yo no he tenido oportunidad de ver a Billy Joel en concierto, más que nada porque tengo 23 añitos y cuando empecé a escucharlo tenía sólo 8. De todas formas supongo que es una experiencia de esas inolvidables, y lo de ir a Londres o a algún sitio si hay gira europea (¿la hay?) me parece genial. Además yo trabajo en la mayor página web de reservas hoteleras del mundo y con estas cositas siempre consigo buenos precios y ese tipo de historias (acabo de nombrarme responsable de logística xDDD) Bueno chicos, nos seguiremos leyendo por aquí!! Saludos!! :wink:[/quote:3e4d4019a8] Y luego dicen que no hay fans de nueva generación porque como no saca mas discos (desde luego, a este paso no los habrá mas, hay gente joven que no sabe ni quién es el tal BillyJoel).. o sea que lo conociste con The river of dreams por allá el 93 si no me equivoco, no? En el 2007 estuvo por Londres y algunos paises Europeos, yo me lo perdí porque estaba bastante enfrascado en otros menesteres, lo cual ahora me arrepiento de mi poco ojo avizor y como que por aquí no se publicita nada .. pues ya ves .. este año que viene 2008 no hay nada previsto pero todo se andara (espero) y esta vez no fallo (ahora o nunca). Bueno, pues ahora ya tenemos alguien (Leyna) que nos organice estos Tours :D'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('13', '0e04cc2cee', 'Christmas in Fallujah, nueva canción de Joel !', 'Basada en la correspondencia con los soldados en Irak, se estrenará durante las próximas semanas en Itunes , solo que esta vez el hombre del piano no la adaptará, lo hará en su lugar un jover cantante compositor llamado Cass Dillon de 21 años, "no sentía que fuera la persona adecuada para cantar esta canción" dice Joel de 58 años, pienso que debe ser alguien joven que la cante de la misma edad que los soldados, quiero ayudar a la carrera de alguien mas .. Dejo el link para que alguien mas siga traduciendo :D [url=http://www.cleveland.com/entertainment/plaindealer/index.ssf?/base/entertainment-0/1196329335129170.xml&coll=2]FUENTE[/url] New song, new singer: A Billy Joel song, "Christmas in Fallujah," based on correspondence from soldiers who served in Iraq, should debut in the next couple of weeks on iTunes. Only the Piano Man won\'t perform it. Long Island singer-songwriter Cass Dillon, 21, will sing it. "I didn\'t feel I was the person to sing this song," says Joel, 58. "I thought it should be somebody young, about a soldier\'s age. I wanted to help somebody else\'s career. I\'ve had plenty of hits. I\'ve had plenty of airplay. I\'ve had my time in the sun." Joel wrote the song "based on letters I got from servicemen who were over in Iraq." They said it: "The rigours involved in touring and the intense emotional strain that Amy has been under in recent weeks have taken their toll." - statement from Universal Music on Amy Winehouse. The British singer pulled the plug on her schedule for the rest of 2007, because of unspecified illness. Winehouse, who has a reputation for heavy drinking and hard partying, pulled out of a stretch of European concerts in August after being admitted to a hospital. At the time, her label described the ailment as "severe exhaustion[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('14', '79efd169c7', 'Anecdotario', 'Bueno.....les cuento una anécdota....en 2001......viajé desde Argentina a Las Vegas para ver al "maestro"..........y concurria durante las seductoras noches a un piano bar en el "Hotel New York New York", asi se llama........el piano bar era "times Squire".....si es que todavia existe con ese nombre..........la cuestión que entre los pianistas sobresalia uno con el cual entable una amistosa relación.....ya que el era fan de BJ y no podia creer que yo hubiera viajado desde tan lejos solo para ver el show......demás está decir que tocaba las canciones de BJ con absoluta precisión y las cantaba con una rara mezcla de personalidad e imitación.........evidentemente esto que yo habia vislumbrado no pasó desapercibido para la producción del "piano man".............porque???......ese muchachito no era otro que Michael Cavanaugh (movin out singer)...........por suerte tengo fotos y videos con él.......en cuanto pueda, scanner previo, las subiré a la mejor pagina del mundo....o sea esta página'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('15', '089ff9ea2d', '', 'Bueno bueno, esto se va animando... Pues en realidad yo creo que oigo a Billy Joel desde la cuna. En casa aún andan los vinilos de The Bridge, The nylon curtain, Storm Front, Live in Koepht... El primero que conocí fue el Storm Front, que es del 84 (el año que nací) y luego con el River of Dreams la cosa fue a más. Desenpolvé los vinilos de mis hermanos y resulta que me gustaron, y que además me sabía muchas canciones, y me fui comprando las versiones en cd, sin tirar los vinilos, claro... todavía tengo más de 200 de las épocas 70-80. De todos modos aunque Billy Joel me encanta no tengo toda su discografía original, me parece una vergüenza que por un disco que tiene 10 o 15 años (o más) te cobren lo mismo, o más, que por uno del mismo año (aunque sea infinitamente peor), aunque ese es otro tema. Pues si, ya tenemos organizadora oficial (anda que a ver porqué me meto yo en estos berenjenales, jjajajajaj) ahora sólo queda esperar a ver si hay suerte y tenemos algún conciertito para el año que viene (volver a Londres con esa excusa sería perfecto). ¡¡Saludos!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('16', 'ca335e530a', '', 'Ok....Hablando de vinilos.......Les cuento que tengo toda la coleción BJ......una mezcla de made in Usa y made in Argentina..................En impecable estado de conservación......Ahhhh...Leyna..Te digo que he hecho degustar la música de BJ a varias personas de tu edad.....en el trabajo o familiares....es una tradición en mi trasladar este fanatismo....Mis hijos tb adoran a BJ......También te cuento que cuando lo vi el vivo el año pasado en U.S.A había gente de todas las edades.......eso es bueno..... Aclaro también que poseo la totalidad de cd oficiales y algunos no oficiales..........y algunas otra cosillas que en otro momento les iré contando.......Bye bye'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('18', '80ded0f813', 'Joel & Dillon tocan juntos Christmas In Fallujah', 'http://www.youtube.com/watch?v=an7v6I2Bruo La mejor canción antibelicista de los últimos años !!!!! que letra mas buena que letra, y la música ... Billy 100 %, lástima que la cante esta especie de Bon Jovi.. aunque en esta interpretación en directo se le puede ver al piano y las background vocals. Muy bien Billy, ahora solo falta que vuelvas a interpretar tus propias canciones!!!!!!!!!!!!!!!!!!!!!!! :lol: :lol: :lol:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('20', '77ccdc8ade', 'Jugando al Baseball', 'Descanso en las grabaciones de "El telón de Nylon" http://www.lftimeline.com/NylonCurtain1983/NylonMaster1.html [img:77ccdc8ade]http://www.lftimeline.com/NylonCurtain1983/NylonCurtain_jpgs/nylon11.jpg[/img:77ccdc8ade]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('748', '0283169bb3', 'Sección Noticias', 'Para quien no lo sepa; la sección Noticias lleva incorporado un wordpress, con lo cual podeis hacer comentarios personales o dejar opiniones en todas las noticias que periodicamente se os envian. Solo teneis que registraros, es muy fácil y rápido. Saludos y gracias por vuestra colaboración.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('22', '60b7bf9863', 'Billy Joel se casa con una joven 32 años menor que él', 'BILLY JOEL SE CASA CON UNA JOVEN 32 AÑOS MENOR QUE ÉL 4 OCTUBRE 2004 El cantautor Billy Joel, de 55 años, se casó el pasado sábado con su novia, la joven de 23 años Katie Lee, en una íntima y romántica ceremonia celebrada en su mansión frente al mar de Oyster Bay ( Long Island). El hermanastro del músico, Charles Alexander Joel, pianista y director de orquesta, actuó como padrino de la boda, mientras que la dama de honor de la novia fue su hija mayor, Alexa Ray -su segundo nombre se eligió en honor a Ray Charles, actualmente estudia en la Universidad y tiene intención de seguir los pasos de su padre), de 18 años, nacida de su segundo matrimonio con la modelo Christie Brinkley. El diseñador Oscar de la Renta visitó a la radiante novia, así como a la dama de honor, mientras que el esmoquin que eligió Joel era de Ralp Lauren. [img:60b7bf9863]http://weblogs.newsday.com/realestate/blog/joels.JPG[/img:60b7bf9863] Este ha sido el tercer matrimonio para el músico, quien estuvo casado en primeras nupcias con Elizabeth Weber (1972-1982). Su segunda esposa (1985-1994), como decíamos, fue la top model Christie Brinkley, quien también asistió a la ceremonia. “Dueño” de una estrella en el Paseo de la Fama de Hollywood y miembro del Salón de la Fama del Rock and Roll desde el 1993, Billy Joel pasa por ser uno de los cantautores más importantes de la década de los años setenta y entre sus más de dos decenas de éxitos musicales destacan temas como Piano Man", You May Be Right, Uptown Girl y It s Still Rock and Roll to Me. Hace un año el artista fue hospitalizado tras sufrir un accidente automovilístico en Nueva York, donde reside, luego después de que su coche, un Mercedes Benz, se estrellara contra un árbol. En 1992 sobrevivió a otro grave accidente de motocicleta en California. En 2002 ingresó voluntariamente en un centro de rehabilitación. Por su lado, Kate Lee, natural de Huntington, Virginia del Oeste, se graduó recientemente en la Universidad Miami de Ohio, y trabaja como corresponsal especializada en restaurantes para el programa George Hirsch: Living It Up! , de la cadena de televisión pública PBS. Ella y Billy Joel empezaron su romance hace aproximadamente un año, [img:60b7bf9863]http://www.hola.com/musica/2004/10/04/billyjoel-boda/imgs/billyjoel2b.jpg[/img:60b7bf9863] [url=http://www.hola.com/musica/2004/10/04/billyjoel-boda/]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('23', '4a0b017930', 'Cógelo bien la primera vez', 'Se os une al grupo el moderador, esperemos que haya mas movimiento para moderar algo :D :D bah, seguro que con el tiempo si ... Cogelo bien la primera vez !!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('24', 'c3701bf8a7', '', '¡¡Buenas moderador!! No hables muy alto, no vaya a ser que en breves te encontrarás mediando en broncas y batallas campales... xDD es broma. A ver si vamos creciendo y animando un poquito esto!! Saludos!! :wink:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('27', 'b605725707', 'una canción contra la guerra', 'Billy Joel publica \'Christmas in Faluya\', una canción contra la guerra Billy Joel ha publicado a través del cantante novel Cass Dillon una nueva canción titulada \'Christmas in Faluya\' (\'Navidad en Faluya\'), que expresa su opinión contra la guerra y cuyas ganancias netas se destinarán a la construcción de casas para soldados estadounidenses heridos en las guerras. El famoso \'hombre del piano\', según informa en su página web el propio artista, ha puesto este sencillo a la venta esta semana a través de la tienda en internet de descargas musicales \'iTunes\'. Las ganancias netas del sencillo se destinarán a la ONG \'Homes for our troops\', que erige viviendas especialmente adaptadas para soldados que regresan mutilados de las guerras en Irak y Afganistán. La canción fue escrita por el artista, de 58 años, a comienzos de año como respuesta a las cartas que fue recibiendo de soldados en Irak, \'hombres y mujeres que encontraron consuelo, inspiración y desahogo\' en las canciones de Joel. A su vez relata que \'Christmas in Faluya\', que hace referencia a una de las ciudades iraquíes que más han sufrido la guerra, le ha salido del \'corazón y del alma\', como un \'grito acusatorio contra la locura de la guerra\' y que refleja \'el lado humano del conflicto\'. Por otro lado, el artista narra en su página web que no \'sentía\' que él fuera la persona idónea para interpretar la canción, por lo que eligió a Dillon, de 21 años. \'Pensé que debería ser alguien joven, de la edad de la media de los soldados que están en el conflicto en el país árabe\', narra Joel. \'Quería ayudarle en su carrera a otro. Ya he tenido suficientes éxitos y espacio en antena. He tenido mi lugar al sol y creo que es hora de que otro se beneficie de mi propia experiencia\', puntualiza Joel. Dillon fue descubierto por un miembro del grupo de Joel en el \'Drama Cafe\', en Baldwin (Nueva York). \'Me siento honrado de tener esta oportunidad. Cuando alguien de su talla moral y con ese historial de canciones tras de sí te pide que cantes algo que ha escrito, sólo puedes sentirte completamente honrado de cantarla\', señala en la web el propio Dillon. Joel es autor de canciones como \'Piano man\' (El hombre del piano), \'Uptown girl\', \'Honesty\' y \'Just the way you are\'. [img:b605725707]http://www.publico.es/resources/archivos/2007/12/7/119704338129920071207-804715dn.jpg[/img:b605725707] El artista Billy Joel en conferencia de prensa, el pasado 1 de febrero, en Miami. Joel publicó a través del intérprete novel Cass Dillon una nueva canción titulada "Christmas in Faluya" (Navidad en Faluya), que expresa su opinión contra la guerra. - EFE'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('29', '4c405f49c8', 'George Harrison', 'Mis oidos y mi corazón solo engañan a Billy Joel con el guitarrista y compositor que me conmueve con su obra, estoy hablando del sr. George Harrison. Brindaré siempre por el.........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('30', 'baf0b184d1', 'Muchas gracias, Monterrey.', 'Ofrece Billy Joel una velada encantadora… Su enigmático carisma, sus canciones y su virtuosismo en el piano, fueron elementos decisivos para que Billy Joel se robara el corazón de los casi 11 mil regiomontanos. Billy Joel Su enigmático carisma, sus canciones y su virtuosismo en el piano, fueron elementos decisivos para que Billy Joel se robara el corazón de los casi 11 mil regiomontanos que acudieron anoche a su presentación en la Arena Monterrey. El cantautor estadounidense sencillamente cantó y encantó a todos los presentes al estar en el escenario por espacio de dos horas, con un repertorio en el que estuvieron presentes los más grandes éxitos que ha cosechado en su extensa trayectoria musical. Con una producción impecable a la vista de sus seguidores, un escenario circular al frente, con varios niveles y rampas, y vistosos juegos de iluminación, el artista se mostró feliz y dispuesto a complacer a los regios, cosa que al final de la noche consiguió con creces. Quizá el único “pero” de la noche fue que el piano que salió de abajo del escenario no pudo ser apreciado por los espectadores, sino hasta cuando Billy hizo su aparición en el escenario. A las 20:35 horas todo el público se puso de pie para recibir al denominado “Piano man”, quien luego de pasar hasta el frente y levantar su mano para saludarlos, se sentó al piano para iniciar con el tema “Angry young man”, no sin antes tocar un fragmento de un villancico navideño. Enseguida logró que todos se pusieran a bailar con “My life”, para luego dirigirse a la concurrencia. “Hola, Monterrey, qué pasa?, cómo están? Estuve estudiando dos años español pero no lo hablo muy bien”, dijo disculpándose por no hablar en nuestro idioma. El ambiente en la arena fue en ascenso mientras el cantautor continuaba con melodías como “Pressure”, “Honesty”, “Allentown” e “Innocent man”. Billy Joel en la Arena Monterrey Conforme fue pasando la noche, Joel iba presentando a cada uno de los siete músicos que lo acompañaron en el escenario, asimismo interpretaba fragmentos de villancicos en cada canción. Cabe resaltar que para el tipo de producción que presentó en cuanto al escenario, las localidades del área de cancha tuvieron que ser acomodadas de otra manera. Mientras tanto el público seguía entusiasmado ante la presencia de Billy, quien continuó con su repertorio al escucharse “New York state of mind”, “Root beer rag”, “Just the way you are” y “Movin´ out”. Por otro lado, es importante mencionar que el piano giraba de un lado a otro en diversos momentos, lo que permitía al público de los tres lados de la arena tenerlo de frente al menos por algunos minutos. En otro momento, la seguridad del lugar permitió que mujeres y hombres se acercaran hasta el frente del escenario. Los regios seguían disfrutando de melodías como “Don´t ask me why”, “Faith”, “Extremes” y “Rivers of Dreams”. En “Highway to hell”, Billy Joel invitó a uno de sus técnicos para que cantara ese tema que hiciera éxito AC-DC, y no lo hizo nada mal al prender a toda la concurrencia. El público todavía tenía mucha energía y ganas de seguir disfrutando de la presencia del cantautor norteamericano, quien continuó con “We didn´t start the fire”, “Big Shot”, “Still rock and roll” y “You may be rigth”, con la que se despidió. Con las luces apagadas y solamente encendidos los celulares del público, esa fue una indicación para que el artista regresara al escenario y continuara con “Only the good”. Su presentación casi estaba por concluir, pero faltaba un tema. Sus músicos se fueron del escenario, Billy vio su reloj para decirles que todavía no era momento para que se fueran, pero él de todos modos se colocó su armónica y se sentó al piano. Había llegado el gran momento, por fin lo regios escucharía en vivo “Piano man”, y así fue que iniciaron esa gran odisea, la cual en un momento el artista les cedió el lugar para que todos cantaran la canción. Con un “Muchas gracias, Monterrey. Thank you”, Billy Joel se despidió de todos ellos a las 22:38 horas. http://www.elporvenir.com.mx/default.asp?s=8 [img:baf0b184d1]http://www.elporvenir.com.mx/upload/galeria/PC090032.jpg[/img:baf0b184d1]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('33', '97aaa8b99f', 'DVDs de Billy en Tokio el 2006.', 'En Youtube he visto fragmentos muy bien grabados y con excelente calidad de imagen y sonido, de William Martin actuenado el 2006 en Japón. La pregunta es ¿Alguien los tiene en formato DVD o sabe dónde conseguirlos? Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('35', '57232e6f27', 'Paul McCartney', 'Excelente Geoge Harrison, pero siempre he sentido que Billy tiene un gran vínculo estilístico con McCartney. De hecho, cuando era niño pensaba que My Live era un tema de Macca.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('37', '5588fd09a1', 'MACCA', 'Hola amigo....y bienvenido........en referencia a la canción aludida supongo que habrás querido decir "My Life".........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('40', '32954dff49', 'Billy Joel en México D.F-', 'Hola, ya pueden leer un poco de lo mucho que Billy Joel nos dejo en su pasada visita a México ayer 12 de diciembre, saludos http://www.supersonic.com.mx/?p=592'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('598', 'b2cce1f3e7', 'Re: "Attila" (1970)', 'Que exageración, el peor disco grabado de toda la historia de la música. Esos estudiantes (o quién sea) no creo que puedan juzgar todas las grabaciones que se han podido hacer a lo largo de más de 50 años de Rock. Pero bueno, ya sabeís lo de las opiniones y los ass, todos tenemos un@. *'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('47', 'f7af435069', 'Re: DVDs de Billy en Tokio el 2006.', '[quote:f7af435069=\"Zanzibar\"]En Youtube he visto fragmentos muy bien grabados y con excelente calidad de imagen y sonido, de William Martin actuenado el 2006 en Japón. La pregunta es ¿Alguien los tiene en formato DVD o sabe dónde conseguirlos? Saludos[/quote:f7af435069] Si te refieres al Live at BBC Theatre 1978? en ese caso no te preocupes porque ese concierto se rumorea saldrá en breve en la edición del 30 aniversario del THE STRANGER junto al making off. Algo parecido a lo que ya hizo el Boss con el Born to Run. De todos modos hay un programilla de muy fácil manejo que solo poniendo el link de YouTube te lo baja al momento. Saludos.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('48', '9862189d7b', '', 'No, me refiero a un concierto de la gira 2006 "12 Gardens". El de la BBC es excelente to lo tengo en Divx. Saludos.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('49', '15ab9b6377', '', 'Es verdad, gracias por la correción. Estaba pensando en Billy en "vivo" y me traspapelé. Saludos.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('51', '858945b631', 'PREGUNTA.....', 'Quisiera saber porque no se han editado Dvds de el concierto del milenio y de 12 Gardens...... no puedo entender porque no lo han hecho .. muero por tenerlos.........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('52', '0a0394ccbb', 'Billy a Sudamérica', 'Se estropeó este post, lo podeis ver aquí tal cual lo escribisteis pero no se puede contestar, debereis hacer uno nuevo para ello. http://www.billyjoel.es/viewtopic.htm'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('53', '5c165e8e6e', 'Alexa Ray Joel', 'Alexa Ray Joel, y con un apellido así, la tentación ha sido demasiado fuerte como para ignorarla, y me he sorprendido conociendo que la hija de Joel (la de The Downeaster “Alexa” , supongo) que hace una música bastante alejada de su padre y concomitante con Norah Jones y compañía. Es un disco modesto, un EP con seis canciones, pero con un notable buen gusto y una producción aseada que hace que sientas que “de verdad” canta ella. Así que ahí lo tienes, música para descubrir este fin de semana (puedes escuchar parte en su página de MySpace). [img:5c165e8e6e]http://www.entremaqueros.com/bitacoras/itunes/wp-content/img/thumb-AlexaRayJoel_Sketches.jpg[/img:5c165e8e6e] [url=http://www.entremaqueros.com/bitacoras/itunes/herederos-alexa-ray-joel/] Fuente aquí[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('54', '4655e105b3', 'Ahora sí. Juntemos fuerzas para que Billy venga a Sudamérica', 'Alguien tiene una idea?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('55', '66d4a19f08', 'Video original de Piano Man 1973', 'Alguien lo tiene? Hace como una año lo vi en Youtube pero lo sacaron. El más conocido es uno de los 80. (Que por cierto no me gusta para nada).'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('56', '4d5a4d3e13', 'Liberty de Vitto: No te pierdas su video', 'El batería Liberty DeVitto se ha unido a la promoción internacional de la presente edición de EURODRUMMER - DRUMMER OF TOMORROW. MAPEX está buscando a los mejores baterías de Europa y para ello este año se celebran ediciones de este concurso en España, Portugal, Francia, Reino UNido, Italia y Alemania. El objetivo es buscar a los mejores baterías de Europa para llevarlos a una gran final internacional a celebrar en Marzo de 2008 en Alemania. [img:4d5a4d3e13]http://www.euromusicagarijo.com/www/images/noticias/libertydevitto.jpg[/img:4d5a4d3e13] [url=http://vids.myspace.com/index.cfm?fuseaction=vids.individual&VideoID=8210074] MIRA EL VIDEO AQUI[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('57', '32ecbc0622', 'Liberty DeVitto, Running on Ice, Chile', 'http://www.youtube.com/watch?v=RqwjF6_-wrc'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('58', '72dbd4d6a0', 'Russel Javors', 'Actualmente está en Hong Kong y se dedica a hacer juguetes aunque suene a pitorreo, concretamente diseña los elementos de control remoto. Juguete controlado remotamente en un envase de punto de venta. (Equipo) LEBENSFELD, STEVEN RUSSO, CARMINE JAVORS, RUSSELL [url=http://www.invenia.es/oepm:e98203815] Fuente aquí[/url] [img:72dbd4d6a0]http://philantonucci.net/v-web/gallery/albums/Musicians-and-Friends/Guitarists.sized.jpg[/img:72dbd4d6a0] [b:72dbd4d6a0]?, Russell Javors and Howie Emerson[/b:72dbd4d6a0] [url=http://www.angelfire.com/va2/rj/russell.html] PAGINA FAN[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('59', '76229850ad', 'Si', 'Nosotros hemos hecho la web entre otras cosas con esa intención .. No solo a CHILE si no a ESPAÑA también. :lol: Hay que hacerle llegar de alguna manera la noticia de la existencia de esta web HISPANA .. Yo escribí un Email a Sony Music .. a ver que ...'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('60', '8ec3ba4bfc', 'Un grupo llamado "Topper"', 'Para quién no lo sepa, antes de Billy Joel esta gente ya existía y tenían su propio grupo, llamado TOPPER.... De izq a dcha. -El malogrado Doug Stegmeyer (bajista) -Russell Javors (guitarra y voz cantante) -Liberty de Vitto (batería) [img:8ec3ba4bfc]http://media.indieclectic.com/coverArt/10104/1500000200/1500000200_2.jpg[/img:8ec3ba4bfc] [url=http://beta.indieclectic.com/artistroom.aspx?gid=10104] ESCUCHA A LOS TOPPER AQUI[/url] [img:8ec3ba4bfc]http://media.indieclectic.com/coverArt/10104/1500000199/1500000199_2.jpg[/img:8ec3ba4bfc] [url=http://www.indieclectic.com/albuminfo.aspx?a=1500000199] A Russell en solitario AQUI:[/url] [img:8ec3ba4bfc]http://media.indieclectic.com/coverArt/10104/gimagem.jpg[/img:8ec3ba4bfc]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('61', 'e9b80d4209', 'Antes de empezar a postear .. lee esto.', 'Si bien el acceso al foro requiere de una previa registración, el mismo es publico y abierto, por lo que tanto los web master de billyjoel.es, como los demás usuarios y lectores del foro no nos hacemos responsables de los comentarios vertidos en estas páginas. Los responsables son en cada caso los autores de los mismos. Sin embargo si existiera algún tipo de mensaje ofensivo o ilegal que ofendiera, hiriera, o violare alguna norma pedimos se nos notifique para permitir su inmediato borrado. En el foro existen moderadores, quienes procuran en la medida de sus posibilidades velar por el cumplimiento de estas condiciones, pero no es posible el permanente, inmediato y total control, por lo que le solicitamos su colaboración para lo cual se encuentra a su disposición la siguiente dirección de correo electrónico: postmaster@billyjoel.es - No compartimos todas las opiniones, comentarios o instrucciones que se vierten diariamente en el foro, sea que las mismas provengan del administrador, los moderadores o usurarios registrados, todos y cada uno de ellos revisten el carácter de personas individuales por lo que cuentan con opiniones y técnicas propias, nunca y en ningún caso dichos mensajes representan una opinión por parte de billyjoel.es Todas, las noticias, recomendaciones, artículos y comentarios presentados en el foro de billyjoel.es, representan las opiniones de sus autores exclusivamente. - De igual forma, se deja aclarado que quienes actúan en carácter de moderadores no se encuentran unidos a los webmasters, billyjoel.es o listapalm.com.ar mediante relación jurídica alguna, se trata simplemente de una tarea llevada a cabo en carácter de colaboración ad-honorem. - El uso, acceso y navegación a través de este sitio se encuentra bajo su exclusiva responsabilidad, por lo que cualquier inconveniente que pueda presentarse corre por cuenta y orden del usuario o visitante. - Si por error se encuentra publicado algún artículo, una opinión, una fotografía o cualquier tipo de imagen sobre la cual Ud. posea derechos, le rogamos lo comunique de inmediato a postmasters@billyjoel.es a efectos de proceder en consecuencia. - BillyJoel.es, y su web master solo y exclusivamente asumen responsabilidad sobre el diseño del sitio, y esto último de conformidad con las condiciones vigentes en el contrato de alojamiento, y asimismo siempre y en todo caso su configuración depende del explorador que Ud. utilice para acceder al mismo, por lo que puede suceder que los datos que Ud. publique no resulten visualmente idénticos a sus originales por Ud. enviados. - Sus palabras le pertenecen exclusivamente a usted. Usted es la única persona responsable de todo lo que anuncie en esta página o en el foro. Los webmasters del sitio no verifican, ni respaldan, ni se hace en ninguna forma responsable por el contenido de ninguna página afiliada o personal. Esto significa: primero, que los miembros de BillyJoel.es, lo hacen a usted responsable de cumplir con las pautas y que usted es responsable legalmente si su web o comentario incluye, por ejemplo, comentarios que difamen o material que esté protegido por las leyes de los derechos de autor, las marcas comerciales, las patentes o los secretos comerciales cuando no haya obtenido el permiso del autor o el propietario. - Si Ud. pretende introducir noticias, informes, técnicas, prácticas o cualquier otro tipo de dato de propiedad o autoría de terceros, se encuentra previamente obligado a revisar los derechos que protegen al mismo o en su caso, de requerir previamente la correspondiente autorización, y asimismo colocar un enlace a la fuente original en forma y condiciones establecidas en las reglas del foro y las de origen. - Antes de entrar en este foro, se debe leer, comprender y aceptar lo aquí dicho. En caso de no entender, no cumplir las condiciones requeridas o no aceptar lo aquí expuesto, se le prohíbe la entrada; por lo que deberá salir inmediatamente de esta página. - Los sujetos que deseen entrar en este Web-site deberán ser mayores de edad, de conformidad con las leyes de su país de residencia, y estar en plena posesión de sus facultades o, en caso de minoría de edad, deberán contar con la aprobación de sus progenitores, tutores o aquella persona que mantenga la patria potestad o representación legal sobre su persona. En caso contrario les queda totalmente prohibida la entrada. - Todas las marcas aquí mencionadas y símbolos están registrados por sus legítimos propietarios y solamente se emplean en referencia a las mismas y con un fin de cita o comentario, de acuerdo con la Ley de Propiedad Intelectual y demás normas legales correspondientes. - Usted como usuario de nuestro servicio, declara que emplea nuestro producto y servicios por decisión propia y solamente para uso educativo, en ningún caso podrá utilizarse con fines comerciales sin la aprobación de los webmasters, y en ningún caso para fines distintos que el simple conocimiento y educación por parte del usuario. - Toda la información y programas aquí recogidos van destinados al efectivo cumplimiento de los derechos recogidos en la Ley por el que se aprueba el texto refundido de la Ley de la Propiedad Intelectual. - Todo los links de esta web han sido exclusivamente sacados de sitios públicos de Internet, por lo este material es considerado de libre distribución. En ningún artículo legal se menciona la prohibición de material libre por lo que esta página no inflinge en ningún caso la ley. - En ningún caso esta página apoya la piratería, es más, la rechaza frontalmente. - Si pretende utilizar esta web y su material como epicentro de sus actos ilícitos e ilegales, se equivoca de lugar, y todo mal acto que haga será responsabilidad suya y en ningún caso de los webmasters. - En ningún caso o circunstancia se podrá responsabilizar directamente o indirectamente al propietario ni a los colaboradores del ilícito uso de la información contenida en esta web-site. Así mismo tampoco se nos podrá responsabilizar directamente o indirectamente del incorrecto uso o mala interpretación que se haga de la información y servicios incluidos. Igualmente quedara fuera de nuestra responsabilidad el material al que usted pueda acceder desde nuestros links. - Nos reservamos el derecho de vetar la entrada a cualquier sujeto a nuestra web-site y a su vez se reserva el derecho de prohibir el uso de cualquier programa y/o información, en concordancia con los derechos de autor. - Si en su país, este tipo de página esta prohibido, Ud. es el culpable y responsable de proseguir con el acceso. Si sabe que no puede, no entre. - Si está dispuesto a realizar alguna acción de compraventa, inversión o de cualquier otro tipo, basada en parte o en su totalidad sobre alguna de las opiniones, noticias, recomendaciones o artículos publicados en Listapalm.com.ar, BillyJoel.es deberá basar sus decisiones en sus propias deducciones, e investigaciones personales, no resultando el web-site ni sus webmasters responsables de forma alguna por el resultado de sus operaciones. - De igual forma, ni el sitio, ni sus webmasters podrán ser considerados responsables en modo alguno por los consejos, prácticas o técnicas indicadas en la página, en el foro o cualquier otro lugar del sitio, para la solución de eventuales problemas o fallas denunciados por los usuarios, si pides ayuda y otro/s usuarios te brindan consejos, solo tú eres responsable de llevarlos a cabo, recuerda que existe un soporte oficial para tu equipo, software o accesorio, y este sitio no lo es. - Si Ud. desea reproducir fuera del sitio cualquier contenido de BillyJoel.es deberá procurar la correspondiente autorización mediante contacto con el webmaster, y en el caso de tratarse de contenidos proporcionados por los usuarios deberá hacer lo propio a su respecto. - Mediante el presente Ud. se obliga a indemnizar a BillyJoel.es, o sus webmaster por cualquier pérdida, responsabilidad, daño y gastos que resulten de o tengan relación con datos por Ud. brindados al sitio. - Asimismo, se le informa que en el foro existen normas accesorias para su debido uso, tales condiciones resultan anexos al presente y habrán de ser leídas y comprendidas con carácter previo al ingreso al mismo. - El ingreso al sitio importa el asentimiento a estas condiciones, las que declara haberlas leído y comprendido debidamente, si así no lo considera Ud. deberá abstenerse de ingresar.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('62', '5f50d17079', 'Normas de cortesía y educación en la red', 'Internet ha provocado la necesidad de establecer, aunque sea de una manera informal, ciertas reglas de "etiqueta", orientadas a facilitar la comunicación y a optimizar el uso de la red. Básicamente bastan simplemente buenos modales y cortesía comercial. No son reglas de carácter coercitivo, sino simplemente consejos prácticos. Esto puede parecer demasiado simple o elemental, pero es fácil cometer errores de contexto y que se interpreten mal nuestras palabras, ya que el destinatario ni nos oye, ni nos ve. Así una frase inocente puede dar lugar a un malentendido enojoso, por una interpretación errónea de su sentido, o por diferencias culturales entre personas de distintos lugares o países. Aquí les presentamos algunas de las reglas de etiqueta de la red. Tome su tiempo en leerlas para saber cómo comportarse en la red. Identifíquese. Cuando escriba un mensaje a alguien que no conoce, preséntese siempre, indicando cómo se llama y quién es. Incluya información de contacto al final del correo. Del mismo modo, no deje mensajes en un foro sin identificarse. Configure correctamente su programa de correo. Ponga el nombre del usuario, que será transmitido como remitente de sus envíos. Este dato es importante, porque es muy desagradable recibir un mensaje sin el nombre del remitente. Si, por alguna razón personal, no desea develar su verdadera identidad, puede omitir los apellidos o utilizar un seudónimo de forma que los receptores puedan "reconocerle" y dirigirse a usted utilizando esa identificación. Sea amable y cortés. No olvide que también hay personas al otro lado de su computadora. No se burle de nadie, las bromas no se entienden bien. No escriba ironías ni sarcasmos, es difícil de entender su sentido, especialmente si la otra persona pertenece a una cultura diferente a la suya. Trate de ser lo más breve y claro posible. A menos que sea algo que deba ser expresamente largo, o que haya un mutuo acuerdo para enviarse correspondencia larga, trate de no mandar textos largos. Elimine toda información redundante o que no sea relevante y permita que le vuelvan a escribir si desean más información. Los mensajes demasiado largos muchas veces no son ni siquiera leídos. Sea universal, el mundo no es todo igual: Los otros usuarios tienen distintos navegadores, diferentes programas de correo, diferentes configuraciones en sus computadoras, etc. Por lo tanto, no es correcto enviar correos con formatos especiales de letra o imágenes por ejemplo, porque quizás el destinatario no pueda recibirlo correctamente y simplemente recibirá un correo inteligible. Quizá su programa de correo le permita transmitir el texto en un formato avanzado, como el RTF (Exchange) o en HTML (Ms Mail y Netscape v.4). Solo se deben emplear esos procedimientos de emisión cuando esté seguro de que el receptor dispone del mismo sistema. Si envía texto con formato, procure ser recatado en la utilización de colores y tipos de letra diferentes; el abuso de estos efectos produce cansancio en el receptor, incluso puede producir el resultado de que la "maravilla" visual distraiga la atención respecto al contenido de la información enviada. Sea cuidadoso. Escriba el mensaje con la mayor corrección posible. En el cuerpo del mensaje puede ser tan formal o coloquial como desee. La mayoría de los internautas se tutean, independientemente de la edad o de la posición social de la otra persona. Sólo se suelen emplear formalismos en los mensajes dirigidos a instituciones o en el correo comercial. Sin embargo, esto no autoriza a ser descuidado en la composición. Utilice las comas y los puntos adecuadamente, ya que de lo contrario se mezclan las ideas, el texto se hace difícil de entender y obliga a releerlo para entender su sentido. Esto puede ser interpretado por el lector como desinterés del remitente, con lo cual pensará que está perdiendo el tiempo por leer algo que su autor no considera importante. Las faltas de ortografía hay quienes las perdonan, pero dan una pobre impresión de quien escribe. Cuidado con los acentos y eñes. Como los programas son ingleses o adaptaciones, muchos de estos interpretan mal algunos signos de nuestra lengua, por lo cual es mejor no ponerlos en los mensajes destinados al extranjero, ya que pueden llenar de artefactos los mensajes. No utilice expresiones soeces ni escriba palabras malsonantes, solo denotan su mal gusto. Sepa ubicarse dónde está. Lo que es apropiado en un salón de chat no es apropiado en un foro de negocios. Si no hace esto podrá tener serios problemas, ya que es frecuente guardar los mensajes que se reciben, y el destinatario de su mensaje puede reenviarlo a otras personas en cualquier momento. Si se encuentra en un canal o foro, cualquier tipo de insulto, alusión personal, obscenidad, etc... provocará seguramente su expulsión inmediata. No insulte y evite los enfrentamientos. Será como una bola de nieve, cada vez peor. Si usted es insultado en un salón de chat o en un foro, póngase en contacto con el administrador del servicio y plantéele una queja. Si usted recibe un mail desagradable, puede hacer dos cosas: borrarlo o ignorar la maldad y responder con altura a cada uno de las críticas de la otra persona. Algunas personas quieren molestar a los demás con provocaciones por ejemplo mediante spam (correo no solicitado) o flames (mensajes ofensivos que generalmente pretenden provocar una controversia). No le de importancia, recuerde que el mayor desprecio es no hacerles caso. Pero si contesta a un mensaje que le ha enfadado, es mejor que guarde su réplica hasta el día siguiente y lo lea de nuevo antes de enviarlo. Una vez enviado el mensaje ya no se puede parar, y puede arrepentirse de lo dicho "en caliente". No escriba con MAYÚSCULAS. En general, sólo se utilizan para resaltar alguna frase o palabra, y para GRITAR. No de "órdenes". Cuando quiera que alguien le explique algo, o cuando pida alguna información, utilice el "por favor". Es mejor decir: "Por favor, me puedes decir dónde está tal página?" que decir: "Decime donde está tal página" Procure dar sus opiniones con moderación, no como afirmaciones categóricas. No sea prepotente. Tampoco ridiculice o desprecie las opiniones de los demás. Siempre hay una forma de expresar su criterio sin molestar a los que puedan tener otra opinión. Si alguna vez se equivoca o se sobrepasa con alguien, pida disculpas. Esto es habitual en las listas de correo y en las news, y permite que se olvide el asunto sin rencor, de lo contrario el ambiente de las listas y grupos de noticias se puede volver problemático. Haga citas breves. Cuando conteste o continúe un mensaje precedente, conviene citar algunas líneas del texto original, para refrescarle la memoria a nuestro futuro lector. Pero no hay que citar o dejar TODO el mensaje previo, porque ello es innecesario y también engrosa la transmisión. Específicamente cite aquellas oraciones o párrafos sobre lo que va a contestar. Procure utilizar alguna estrategia visual para diferenciar los textos previos citados respecto a las nuevas frases. Habitualmente se emplea el signo ">" que precede las líneas o párrafos citados. El nuevo texto debe escribirse debajo del párrafo citado que se contesta, dejando una línea en blanco entre las frases de ambos para distinguirlos. No aparente lo que no es, es mejor escribir lo que a uno le sale de la cabeza, o no escribir nada, que copiar o inventar cosas raras, para aparentar que se sabe mucho. En mensajes informales puede utilizar los emoticons :-) para completar el sentido de una frase. En general reflejan su actitud sobre lo que está diciendo, o su estado de ánimo, y dan pistas del tono que utiliza. Pero cuidado: no los utilice en correspondencia comercial o formal. Es aconsejable que la longitud de sus líneas no sobrepase los 70 caracteres. Muchos procesadores de correo, cortan las líneas a los 70 caracteres y el texto resultante es muy difícil de seguir. Rellene siempre el "Subject" o Asunto del mensaje. Ponga de dos a cuatro palabras que indiquen claramente el contenido del texto. A veces resulta muy incómodo buscar un título adecuado, pero siempre es más irresponsable transmitir el mensaje sin título. Procure usar un título que resulte significativo para el receptor. Si hay varios mensajes de réplica y contraréplica sucesivos debe mantenerse el título original, que así facilita el seguimiento de la conversación. Cuando se subscriba a una lista de correo, es de agradecer que se presente y salude a sus miembros. Lo mismo cuando ingresa a un chat: usted es quien llega y debe saludar a los que ya están allí. Cuando llegue por primera vez a algún lugar de la Red donde quiera participar, es aconsejable que observe la conversación durante algunos minutos, antes de hacer una intervención. Esto siempre da mejor resultado que la típica pregunta que hace mucha gente al entrar: "¿de qué están hablando?" Si después de haber estado un rato en un canal, no le gusta el tipo de conversación o no le gusta el "ambiente" del canal, simplemente despídase educadamente y váyase. No critique al canal ni a sus participantes: recuerde que nadie lo ha obligado a entrar. Cuando entre en un foro del que desconoce su funcionamiento, puede ser una buena estrategia quedarse algunos días como lector, antes de comenzar a enviar mensajes al grupo. Cada sitio suele tener sus propias normas y costumbres, y la mejor es conocerlas. Para ello, nada más apropiado que ir a la sección FAQ (Frequently Asked Questions), un lugar donde se recogen las preguntas que los participantes realizan de forma habitual con el fin de que cualquiera se informe sin necesidad de efectuar preguntas que ya han sido respondidas muchas veces. En los canales temáticos, se debe respetar siempre el tema del canal. Es de muy mal gusto entrar en un canal temático y ponerse a hablar de otro tema completamente distinto. Esto se interpreta siempre como un intento por molestar, ya que si no le interesa el tema ¿para qué entra en ese canal? En los foros está muy mal considerado incluir mensajes publicitarios o que oferten productos y servicios comerciales. Los grupos de diálogo se han pensado para intercambiar opiniones y experiencias, no para promocionar una venta. Tampoco está bien visto utilizar estos grupos para transmitir mensajes piramidales que aportan un supuesto beneficio (económico o de otro tipo) al autor de la transmisión. Si está escribiendo a una persona desconocida que vive en un país de lengua distinta al español debería, en la medida de lo posible, utilizar el idioma inglés. Nos guste o no es el idioma de la Red. Respete la privacidad de los demás: Si alguien le envía un e-mail sobre un tema, no lo agregue a su lista de e-mail para enviarle todo tipo de información sin su consentimiento. NUNCA venda o dé la dirección de e-mail de otra persona a terceros sin permiso, porque ésta podría ser usada para enviarle publicidad no-deseada. Si trabaja en una oficina, tampoco lea los correos de los demás a menos que lo hayan autorizado. Cada oficina tiene sus reglas. Conózcalas y respételas. La mayoría de las personas están hasta el cuello de trabajo y a veces no es posible responder diariamente a la cantidad de e-mails que reciben. Así que si alguien tarda en contestarle no lo tome como algo personal. Y si lo considera necesario, insista, pero con cordialidad y buena educación. En resumen, dos consejos: 1- Relea todo mensaje antes de enviarlo. Después no habrá marcha atrás. 2- La norma básica que rige en Internet es la misma que debería presidir las relaciones interpersonales: "No le haga a los demás lo que no quisiera que le hicieran a usted". Fuente: [url=http://www.todo.com.uy/empresas/emp000125/index.html]Netiqueta[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('63', '04ca852981', 'Respecto al SPAM', 'Respecto al SPAM El SPAM descarado está prohibido y puede ser motivo de expulsión sin previo aviso. Una cosa es aportar un link informativo, de descarga, de ayuda, pero una dirección externa sino tiene un motivo en concreto para ser expuesta (Como promocionar esa web en concreto o de modo lucrativo), se considera SPAM y no está permitido.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('64', '3a371181f0', 'Ayuda, preguntas frequentes.', '[b:3a371181f0]Problemas para Registrarse y Conectarse[/b:3a371181f0] ¿Por qué no puedo conectarme? Se ha registrado? Debe registrarse para poder conectarse. ¿Ha sido Ud. inhibido del foro? (Se le mostrará un mensaje si así es.) De ser así, debe contactar con el administrador para averiguar por qué. Si se ha registrado y no ha sido inhibido y aún así no puede conectarse entonces vuelva a verificar su nombre de usuario y contraseña. Generalmente éste es el problema; si no, contacte con el administrador -- puede llegar a haber una configuración incorrecta del foro. ¿Por qué necesito registrarme? No está obligado a hacerlo -- depende de los administradores y moderadores si necesita registrarse para crear mensajes nuevos o no. Sin embargo estar registrado le da muchas ventajas que como usuario invitado no difrutaría, como tener su gráfico personalizado (avatar), Mensajería Privada, subscripción a grupos de usuarios, etc... Sólo le tomará unos segundos y es muy recomendable hacerlo. ¿Por qué me desconecta automáticamente? Si no activa la opción Conectarme automáticamente, el foro sólo lo mantendrá conectado por un determinado tiempo. Esto previene el uso de su cuenta por otras personas. Para mantenerse conectado, active la opción al momento de conectarse. No se recomienda hacer esto si Ud. accede desde un ordenador compartido, por ej. cyber-café, trabajo, universidad, etc. ¿Cómo evito que mi nombre de usuario aparezca en las listas de usuarios conectados? En su perfil encontrará una opción de Ocultar mi estado de conexión; si activa esta opción sólo podrá ser visto por administradores y Ud. mismo. Se le contará como usuario oculto. ¡Perdí mi contraseña! ¡No se altere! Si bien su contraseña no se le puede enviar puede ser cambiada. Para esto vaya a Conectarse y pulse en ¡He olvidado mi contraseña!. Siga las instrucciones y podrá volver a conectarse casi de inmediato. ¡Me registré pero no puedo conectarme! Primero verifique que está ingresando el nombre de usuario y contraseña correctos. Si están bien entonces verifique estas posibilidades: si está habilitado el soporte para COPPA y Ud. pulsó en tengo menos de 13 años mientras se registraba entonces deberá seguir las instrucciones que recibió. Si este no es el caso, entonces su cuenta debe necesitar activación. Revise su correo y vea las instrucciones de activación, algunos foros dejan que sus usuarios activen sus cuentas y otros requieren la activación por parte del administrador. Si no recibió un correo, verifique que su correo sea correcto. Una de las razones por las que se pide activación es para evitar que usuarios anónimos abusen del foro. Si ninguna de estas descripciones concuerda con su problema, contacte con el administrador del foro. ¡Me registré hace tiempo pero ya no puedo conectarme! Lo más probable es que: haya ingresado un nombre de usuario o contraseña incorrectos (verifique su correo, cuando se registró se le envió un mensaje con su nombre de usuario y contraseña) o el administrador ha borrado su cuenta por alguna razón. Es normal que los foros, periódicamente, "limpien" sus bases de datos de usuarios, si Ud. pasó mucho tiempo sin escribir mensajes nuevos, puede que éste sea el caso. Intente registrándose de nuevo. [b:3a371181f0]Preferencias y configuración de Usuarios[/b:3a371181f0] ¿Cómo cambio mi configuración? Todos sus datos y configuraciones (si está registrado) están archivados en nuestra base de datos. Para modificarlos pulse en el enlace de Perfil, generalmente se encuentra en la parte de arriba de cada página. ¡Los horarios son incorrectos! Las horas son, casi siempre, correctas, lo que puede estar sucediendo es que esté viendo las horas correspondientes a otra zona horaria. Si este es el caso, entre en su perfil y defina su zona horaria de acuerdo a su ubicación (ej. Londres, Paris, New York, Sydney, etc.) Cambiar la zona horaria, como la mayoría de las configuraciones, es sólo para usuarios registrados. Cambiando esto las horas deberían aparecer de acuerdo a su zona y tiempo. Si no se ha registrado, este es un buen momento para hacerlo. ¡Cambié la zona horaria y las horas siguen siendo incorrectas! Si está seguro de que la zona horaria es correcta es posible que esto se deba a los horarios de verano implementados por algunos paises. El foro no está preparado para trabajar con estos cambios. ¡Mi idioma no está en la lista! Ésto se puede deber a que el administrador no ha instalado el paquete de su lenguaje para el foro o nadie ha creado una traducción a su idioma. De ser así, siéntase total libertad para hacer una traducción (miles de personas se lo agradecerán), la información la encontrá en el sitio Web del Grupo phpBB (Pulse en el enlace que se encuentra al final de la página) ¿Cómo muestro una imagen debajo de mi nombre de usuario? Hay dos tipos de imágenes debajo de su nombre de usuario, la primera corresponde al Rango, que está asociada con el número de mensajes que ha ingresado en el foro (generalmente son estrellas o bloques), la segunda es el AVATAR, que es un gráfico generalmente único y personal. El administrador decide si se pueden usar o no. Si es posible usarlos puede introducirlo en su perfil. En caso de que no exista esa opción, contacte con el administrador y pida que sea activada esa opción (seguramente sea un administrador bueno). ¿Cómo cambio mi rango? Por lo general no puede cambiar su Rango ya que éste es asociado directamente con el número de mensajes ingresados o se utilizan para identificar a ciertos usuarios (administrador, moderador o Rangos especiales). Por favor, no abuse del foro creando mensajes innecesarios sólo para incrementar su Rango, no hay ningún beneficio adicional por tener Rangos. Cuando pulso en el enlace para enviar un correo a un usuario me pide nombre de usuario y contraseña. Disculpe, pero sólo los usuarios registrados pueden enviar correos a través del foro (si el administrador ha habilitado esta opción). Esto es para evitar SPAM o mensajes maliciosos de usuarios anónimos. [b:3a371181f0]Problemas con los mensajes[/b:3a371181f0] ¿Cómo creo un mensaje en un Tema o en un foro? Fácil -- pulse en el botón correspondiente cuando esté en un foro o en un tema. Puede que necesite registrarse para poder crear mensajes. Los permisos que tiene en cada lugar del foro están listados en la parte inferior de cada página ( Puede crear mensajes. Puede hacer encuestas..) Volver arriba ¿Cómo modifico o borro un mensaje? A menos que sea administrador o moderador del foro, sólo puede borrar o modificar los mensajes que haya ingresado Ud. mismo. Puede modificar un mensaje pulsando en Editar. Si alguien ya ha respondido a su mensaje, encontrará un pequeño texto en el suyo diciendo que ha sido modificado y las veces que lo ha hecho. No aparece si fue un moderador o el administrador el que lo modificó (la mayoria de las veces se deja un mensaje aclaratorio). ¿Cómo adoso mi firma a mis mensajes? Para adosar una firma en sus mensajes primero tiene que crear una firma personalizada. Esto se hace modificando su perfil. Una vez creada puede activar la opción Agregar firma cuando ingrese un mensaje. También puede activar la opción para que siempre se agregue su firma a los mensajes (esta opción está en su perfil) y puede evitar que se adose su firma a algún mensaje en particular al crearlo. ¿Cómo creo una encuesta? Crear una encuesta es fácil -- cuando inicia un nuevo tema (o modifica el primer mensaje de un tema) verá la opción Crear una encuesta en la parte inferior del formulario de mensaje. Si no ve esta opción probablemente las encuestas estén desactivadas o no tiene permisos para crearlas. Debe introducir un título para la encuesta y por lo menos 2 opciones de votación -- para agregar una opción escriba una y pulse en Agregar opción. También puede limitar la encuesta por tiempo (0 [cero] para que no tenga límite de tiempo). También habrá un límite de opciones a agregar que es establecida por defecto por el administrador. ¿Cómo modifico o borro una encuesta? Al igual que con los mensajes, sólo puede modificar o borrar una encuesta generada por Ud. (o siendo administrador o moderador). Para modificar una encuesta, pulse en el primer mensaje de un tema, que siempre es el que tiene la encuesta asociada. Si no se han realizado votaciones, se pueden modificar las opciones o borrarlas. Sin embargo, si ya existen votos, sólo los administradores y moderadores pueden modificar la encuesta. Esto es para prevenir la falsificación de resultados de una encuesta por medio de la edición de la misma a mitad de camino. ¿Por qué no puedo acceder a ciertos Foros? Algunos foros están limitados a ciertos usuarios o grupos de usuarios. Para verlos, crear mensajes, modificar, etc. necesita ciertas autorizaciones que sólo te puede dar un moderador o administrador del foro. ¿Por qué no puedo votar en encuestas? Sólo usuarios registrados pueden votar en las encuestas (para prevenir resultados falseados). Si se ha registrado pero no puede votar, es posible que no tenga autorización para votar en esa encuesta. [b:3a371181f0]Formatos y tipos de temas[/b:3a371181f0] ¿Qué es BBCode? BBCode es una implementación especial del HTML. Depende del administrador si se puede usar o no en los mensajes. También puede desactivarlo desde la casilla de verificación en el formulario de ingreso de mensaje. BBCode es muy similar al HTML: las etiquetas (tags) se escriben entre corchetes [ y ] en lugar de entre signos mayor y menor < and > y ofrece un buen control sobre qué y cómo se muestran los mensajes. Para más información sobre BBCode vea la guía a la que puede acceder desde el formulario de ingreso de mensajes. ¿Puedo usar HTML? Depende de si el administrador lo permite y de ser así, qué etiquetas están permitidas. Esto es una medida de seguridad para mantener la integridad del foro. De estar habilitado, Ud. puede deshabilitarlo cada vez que crea un mensaje. ¿Qué son los emoticonos o Smileys? Smileys, o emoticons, son pequeños gráficos que pueden ser usados para expresar emociones. Aparecen introduciendo un pequeño código, por ejemplo: :) significa feliz, :( significa triste. La lista completa de emoticonos (smileys) puede ser desplegada cuando se está escribiendo un mensaje. Trate de no abusar de ellos, si un administrador considera que su mensaje se ha vuelto ilegible por este motivo, puede decidir borrarlo o privarlo del uso de los mismos. ¿Puedo colocar imágenes en los mensajes? Las imágenes pueden ser adheridas en sus mensajes. Sin embargo, de momento no se cuenta con una herramienta que permita subir imágenes al foro. Por ende, Ud. debe hacer un enlace URL a una imagen que quiere que se muestre, por ej. http://www.unsitio.com/una_imagen.gif. No puede hacer enlaces a imágenes que se encuentren en su propio PC (a menos que su PC sea un servidor de WEB con acceso desde internet) ni tampoco a imágenes que se encuentren tras algún mecanismo de autentificación (cuentas de Hotmail o Yahoo, sitios protegidos por contraseña, etc.). Para mostrar una imagen use el BBCode [img] o la etiqueta HTML correspondiente (de estar permitido). ¿Qué son los Anuncios? Los Anuncios usualmente contienen información importante que los usuarios deberían leer lo antes posible. Los Anuncios aparecen primero en las listas de temas del Foro donde fueron colocados. Si puede o no ingresar anuncios dependerá de los permisos que Ud. posea, los cuales son impuestos por el administrador. ¿Qué son los Temas Permanentes? Los Temas Permanentes aparecen por debajo de los Anuncios en la vista del Foro y sólo en la primera página. Usualmente son de carácter importante o son temas que deben permanecer siempre a la vista. Al igual que con los Anuncios, el administrador decide quien puede ingresar Temas Permanentes y quien no. ¿Qué son los Temas Bloqueados? Los Temas Bloqueados son puestos de esta manera por el administrador o moderador. No se puede crear mensajes ni respuestas ni votar en encuestas de un Tema Bloqueado. Las encuestas en un Tema Bloqueado son automáticamente finalizadas. [b:3a371181f0] Niveles de Usuarios y Grupos[/b:3a371181f0] ¿Qué son los Administradores? Los Administradores son gente asignada con el más alto nivel de control sobre el foro entero. Ellos pueden controlar la manera en que funciona el foro en todos sus aspectos, incluyendo permisos, inhibición de usuarios, creación de grupos y/o moderadores, etc. También, obviamente, tienen capacidad de moderar sobre cualquiera de los foros. ¿Qué son los Moderadores? Los Moderadores usuarios (o grupos de usuarios) cuyo trabajo es mantener el funcionamiento normal del foro día a día. Tienen el poder de modificar o borrar mensajes, bloquear o desbloquear, mover y separar temas en el foro donde son Moderadores. Por lo general los Moderadores están ahí para evitar que los usuarios publiquen mensajes que estén fuera de tema (off topic) o que se abuse de material ofensivo en el foro. NOTA: Off topic o Fuera de tema significa desviarse del motivo o tema original de la conversación, es algo muy subjetivo definir si sucede o no y por ende los Moderadores son seleccionados (por lo general) cuidadosamente. Ha de respetarse sus decisiones sobre esta cuestión. ¿Qué son Grupos de Usuarios? Los Grupos de Usuarios es una de las formas en las que el administrador del foro puede agrupar usuarios. Cada usuario puede pertenecer a varios grupos (esto es distinto en la mayoría de los demás sistemas de foros) y cada grupo puede tener distintos permisos y accesos. Esto facilita la tarea del administrador a la hora de suministrar permisos sobre foros privados o para asignar moderadores. ¿Cómo me uno a un Grupo de Usuarios? Para unirse a un Grupo de Usuarios, pulse en el enlace Grupos de Usuarios y podrá ver todos los Grupos. No todos son de Acceso libre -- algunos están cerrados y otros pueden tener usuarios ocultos. Si el Grupo está abierto Ud. puede requerir ser unido al grupo pulsando en el botón apropiado. El moderador del grupo deberá aprobar su petición; pueden preguntarle porqué quiere unirse al grupo. Por favor, no moleste a los moderadores de grupo si rechazan su petición -- tendrán sus motivos. ¿Cómo me convierto en el Moderador de un Grupo de Usuarios? Los Grupos de Usuarios son inicialmente creados por el administrador que también asigna los moderadores. Si está interesado en crear un Grupo entonces debería hablar con el administrador, inténtelo dejándole un Mensaje Privado. [b:3a371181f0]Mensajería Privada[/b:3a371181f0] ¡No puedo enviar Mensajes Privados! Hay tres posibles razones: No está registrado y/o no se ha conectado, el administrador deshabilitó el sistema de mensajes privados o el administrador ha deshabilitado la mensajería privada para Ud. Si éste es el caso, trate de contactar con el administrador y pregúntele el motivo. ¡Recibo constantemente mensajes privados no deseados! En el futuro será agregada la característica de ignorar mensajes de una lista de usuarios. Por el momento, si está recibiendo mensajes no deseados de uno o más usuarios, informe al administrador -- ellos tienen la autoridad para evitar que alguien envíe mensajes. Volver arriba ¡He recibido spam o correo abusivo de alguien de este foro! Lamentamos oir eso. El sistema de correo de este foro incluye mecanismos para registrar usuarios que hagan esto. Debería contactar al administrador con una copia del correo que recibió y es muy importante que incluya los encabezados del correo (headers). Entonces el administrador podrá tomar acciones.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('65', 'a760c78b51', 'No escriba con MAYÚSCULAS', 'No escriba con MAYÚSCULAS. En general, sólo se utilizan para resaltar alguna frase o palabra, y para GRITAR.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('66', 'ee0ecfbc1f', 'Re: Video original de Piano Man 1973', '[quote:ee0ecfbc1f=\"Zanzibar\"]Alguien lo tiene? Hace como una año lo vi en Youtube pero lo sacaron. El más conocido es uno de los 80. (Que por cierto no me gusta para nada).[/quote:ee0ecfbc1f] No se si te refieres a este: [url=http://www.youtube.com/watch?v=nXSRTFPqYCA&feature=related]PIANO MAN[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('67', 'd70daca516', '', 'No, esa es una actuación en vivo de 1975. Yo hablo del video clip (no en vivo) original de piano man de 1973. En muy bueno.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('68', 'be80e902dd', '', 'Entonces a seguir haciendo fuerza señores. Hispanoamérica no puede seguir esperando.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('70', 'd6e4bfe44b', '', '¿Puedes explicar como es? :wink: he oido hablar pero no recuerdo haberlo visto .... si es un videoclip, ya es raro en aquella época!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('71', '0b15e08ec1', 'Billy Joel’s Concert 2006', 'Queensland Billy Joel’s Concert 2006 El concierto estuvo muy bueno.Que suerte que tengo que ligue la entrada de arriba! (supuestamente es el regalo de cumple de la flia hacia Lee! Llegamos un poco antes de las 8pm, me impresiono la cantidad de gente lleno hacia el estadio. Toda clase de edades. Aparecio Billy Joel subiendo con el piano a escena y una cantidad de luces blancas imprsionantes. Canto casi todas canciones que to conocia. Me causaba gracia que la gente sentada en nuestra seccion ni se movia! Me daba envidia la gente de abajo que al comenzar la tercer cancion (que loco en Argentina seria apenas sube al escenario!) la gente se corrio hacia el frente del escenario. Billy Joel muy simpatico, haciendo muchos chistes, esta bastante distinto a las fotos que yo tenia en mente (las tapas de albunes re viejos!). Cuando entro dijo, me presento soy el papa de Billy, Billy llega en un rato! (por lo pelado y goro que esta) Es increible como toca el piano y la banda que lo acompaniaba tambien muy buena, la verdad que me parecia mentira estar ahi!! [img:0b15e08ec1]http://www.bottazzini.com/images/2006/11/ticket.jpg[/img:0b15e08ec1] [url=http://www.bottazzini.com/2006/11/15/billy-joels-concert-2006.html] FUENTE AQUÍ[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('73', '59d2585484', 'Los Estefans en el concierto de Billy Joel', '10 enero 2006 Gloria, Emily y Emilio asistieron el pasado 7 de enero al primer concierto del "Billy Joel Solo Tour" en el Bank Atlantic Center (Fort Lauderdale, Florida). Al concierto asistieron también otras personalidades como Enrique Iglesias y Anna Kournikova. [img:59d2585484]http://photos1.blogger.com/blogger/6470/1154/320/Billy%20Joel%20Solo%20Tour%20%26%20Estefans.0.jpg[/img:59d2585484] [url=http://gloriaestefanlive.blogspot.com/2006/01/los-estefans-en-el-concierto-de-billy.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('74', '8a352e7dff', 'Billy ama el trabajo duro', 'Billy ama el trabajo duro (2006) Veterano: El famoso cantante de rock Billy Joel cree que entre la política y la música hay barreras que no deben traspasarse Johannesburgo. EFEEl cantautor estadounidense Billy Joel dedicó obras a los combatientes de Vietnam y a los trabajadores metalúrgicos, y visitó en 1988 la entonces Unión Soviética, pero, según asegura, nunca expondría desde un podio sus preferencias políticas. “En la música hay mucha causa humanitaria, porque nosotros hablamos por la gente que no tiene voz, ayudamos a expresar emociones que muchos no pueden. Mucha gente sube a un podio a decir así es como debéis votar, así es como debéis pensar”, dijo Joel durante una rueda de prensa en Johannesburgo. “Soy un pianista” –añadió–, “creo que subir y expresar mis preferencias políticas es un abuso de un privilegio que tengo solo por hacer lo que hago”. Billy Joel visita Sudáfrica como parte de una gira que le llevará, después de Johannesburgo, a Ciudad del Cabo y proseguirá en Australia y Japón. En los espectáculos mezcla sus canciones más populares junto a las más desconocidas, en parte, según admitió, para buscar un “balance perfecto” y, por otro lado, porque hay canciones que ya no se ve capaz de cantar. “ Uptown Girl es difícil de cantar. Si la canto ahora no podría cantar el resto de la noche. Es de esas canciones que la grabas una vez y deseas que no tengas que cantarla el resto de tu vida, pero después se convierte en un gran éxito...”. William Martin (Billy) Joel nació en el Bronx, en Nueva York, el 8 de mayo de 1949. Comenzó con cuatro años a tocar el piano y desde muy joven fue saltando por diversas formaciones musicales, pero el éxito le llegó en 1973 con su álbum Piano Man. Ha ganado el Premio Grammy en seis ocasiones, ha vendido más de 100 millones de discos y es el sexto artista con más ventas en Estados Unidos, de acuerdo con la Asociación de la Industria Discográfica de ese país. Con más de 35 años de fama, a Billy Joel le resulta aún gracioso que lo cataloguen como estrella del rock. “Yo voy a mi esposa y le digo ¡Mira, soy una Estrella del Rock!, y me responde muy bien, perfecto, allí están los platos en el fregadero”, agregó el músico. [img:8a352e7dff]http://www.nacion.com/viva/2006/noviembre/01/_Img/1404715_0.jpg[/img:8a352e7dff] [url=http://www.nacion.com/viva/2006/noviembre/01/espectaculos879775.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('75', '5a03fdfff7', 'Serie TV sobre Joel', 'Parece que se prepara una serie sobre la vida de Joel, en la que el es productor ejecutivo, llamada "Big Shot", está aún en fase de preproducción, pero aquí teneis algunos datos: http://imdb.com/title/tt0942907/fullcredits#cast'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('76', '7ddcf11ccb', '', 'Por lo que recuerdo está grabado en cine y es a color, no como el que hicieron después en B/N. Billy muy joven, tocando en un bar el piano. Es menos literal que el video de los 80. Un poco más libre.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('77', '6864fc85f5', '', 'Qué envidia hombre. Lo que es a mí, me saldrán raíces esperando en Sudamérica. Felicitaciones.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('78', 'ab85e97dd8', '', 'Me encanta Billy, pero me gustaría que fuera un poco más comprometido con las causas políticas. En mi opinión un artista tiene el deber de utilizar la tribuna que tiene para dar a conocer sus impresiones sobre el mundo en que vive.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('79', '1a8b08f4bf', 'Excelente crónica de The Nylon Curtain', 'Felicitaciones hombre. Sería bueno que cada uno (cuando tengamos tiempo) hicieramos una reseña a algun LP de Billy. Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('80', '32eb11e698', 'ALEXA', 'Leia tu opinión.......y recordé una cosa.......creo que downeaster alexa....se refiere a unos de sus barcos......uno de lo barcos de BJ se llama Alexa (en homenaje a la entonces niña).......y la temática de la canción asi lo sugiere. Por otro lado.....que dificil hacer un propio camino cuando sobre tu espaldas tenés una obra paterna de tamaña dimensión.......muy dificil camino...........Julian & Sean Lennon son un ejemplo de lo que digo'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('81', '0c212a29da', 'Dirección Billy Joel', 'Mucha suerte, aquí teneis su dirección. Ya mismo lo escribo para hacerle saber de esta web y que nos visite :lol: :lol: [url=http://es.fanmail.biz/51984.html]:arrow: DIRECCIÓN BILLY JOEL[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('82', '3c7857f8ea', 'Bryan Adams y Billy Joel', 'Bryan Adams y Billy Joel reúnen a medio millón de personas ante el Coliseo romano 1/08/2006 Cerca de medio millón de personas, según los organizadores, vibraron anoche en Roma en el concierto gratuito que el canadiense Bryan Adams y el estadounidense Billy Joel ofrecieron en el sugestivo escenario del Coliseo y los Foros Imperiales. Ambos artistas fueron en esta ocasión los protagonistas del macroconcierto de verano en el corazón de Roma, un evento que se ha convertido en una tradición que inauguró en 2003 Paul McCartney, siguió en 2004 con Simon&Garfunkel y se consolidó el año pasado con Elton John. Anoche el concierto arrancó con Bryan Adams y su \'So far so good\', la primera de una lista de temas como \'Somebody\', \'Open Road\' y \'Can\'t stop this thing we started\', en los que el rockero canadiense alternó con soltura la guitarra eléctrica con la acústica. Con la Vía de los Foros Imperiales abarrotada de un público entusiasta salió al escenario Billy Joel, que con \'Angry young man\' y \'My life\' abrió un recital en el que hizo una memorable interpretación de temas de hace hasta dos y tres décadas. [img:3c7857f8ea]http://www.kleine.co.at/system/galleries/upload/7/0/0/173504/adams_joel_apa308.jpg[/img:3c7857f8ea] Derrochando energía, el cantante y pianista neoyorquino emocionó a sus incondicionales y deleitó al resto de los amantes de la música, rescatando algunos de los que fueran sus éxitos más celebrados, como \'Just the way you are\', la balada \'Honesty\' o la pegadiza \'Uptown girl\'. Los compases finales del concierto brindaron la ocasión de ver a ambos artistas por primera vez mano a mano en el escenario, con los duetos \'You may be right\', escrito por Joel, y \'Cuts like a knife\', de Adams. El neoyorquino fue el encargado de poner punto final a la cita romana con la conocida \'Pianoman\', el tema con el que normalmente cierra todos sus conciertos. [url=http://www.lavanguardia.es/lv24h/20060801/51278256141.html]FUENTE[/url] [img:3c7857f8ea]http://www.romwallfahrt.de/bilder/data/thumbnails/6/PICT6076.JPG[/img:3c7857f8ea] Adams y Joel Dos leones del pop en el Coliseo de Roma 1-8-2006 Ala sombra del Coliseo romano, grandioso escenario (éste sí que es un auténtico marco incomparable) del concierto gratuito con el que el Ayuntamiento de Roma corona el verano capitalino, se exhibieron anoche ante cientos de miles de personas Billy Joel y Bryan Adams. Tras las pasadas ediciones con Paul McCartney, Elton John y Simon & Garfunkel, el evento romano del verano apostó por una pareja inédita: el cantante canadiense, autor de un rock melódico y de baladas de gran éxito, y el esperado «Piano man». Cada uno llegaba de su gira por Europa y se dieron cita en Roma para poner en marcha un maratón de buen rock con el que conquistar a las miles de personas que, ya desde primeras horas de la mañana, se acercaron al Coliseo para conseguir un lugar privilegiado a lo largo de los Foros Imperiales. Aunque quien no lo consiguió pudo seguir el concierto ante una de las diez pantallas gigantes situadas por la avenida. [img:3c7857f8ea]http://web.wireimage.com/images/tnm/9680358.jpg[/img:3c7857f8ea] Fue el mismo Joel quien decidió elegir como compañero de viaje a Adams, con un estilo completamente diferente, pero que con su guitarra se demostró un gran apoyo para su piano, dando lugar a algunos duetos memorables durante el concierto. Al cantante canadiense, que tiene como «hobby» la fotografía y cuyos retratos a personalidades del cine y el espectáculo están expuestos a pocos metros de donde se realizó el concierto, le tocó abrir el espectáculo como telonero de lujo. [img:3c7857f8ea]http://images.filmmagic.com/images/tnm/9682296.jpg[/img:3c7857f8ea] «Please, forgive me» En una hora de concierto interpretó sus grandes éxitos, como «Please, forgive me», una canción que introdujo en el programa después de que un periodista le comentase en la rueda de prensa que era la canción más conocida en Italia, pero también el resto de baladas que le han hecho famoso y sus canciones más rockeras. Después llegó el momento de improvisar algunos duetos con Billy Joel, que continuó el concierto junto a su otro compañero: su piano. Como prometió el día anterior, sonó hasta que se cansó. Billy Joel no tocaba en Italia desde hace diez años y el público italiano esperaba con entusiasmo el regreso del cantante del Bronx, que ha vendido más de 110 millones de discos. Y Joel no defraudó: dio un repaso a todo su repertorio, desde «Honesty» a «This is the time» y, sobre todo, regaló a cientos de miles de personas su famoso «Just the way you are», su gran éxito, que ya no cantaba en sus conciertos después del divorcio de su segunda mujer, la ex modelo Christie Brinkley. [url=http://www.abc.es/hemeroteca/historico-01-08-2006/abc/Espectaculos/adams-y-joel-dos-leones-del-pop-en-el-coliseo-de-roma_1422696072179.html]FUENTE[/url] [img:3c7857f8ea]http://n4abc10.abc.es/Hemeroteca/imagenes/abc/01082006/Espectaculos/NAC_ESP_web_9.jpg[/img:3c7857f8ea]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('83', '927ff76ce1', 'Las casas de Billy Joel', ':arrow: [url=http://weblogs.newsday.com/realestate/blog/billy_joel/] LAS CASAS DE BILLY JOEL[/url] [img:927ff76ce1]http://weblogs.newsday.com/realestate/blog/joelhouseint.jpg[/img:927ff76ce1] [img:927ff76ce1]http://weblogs.newsday.com/realestate/blog/joel.jpg[/img:927ff76ce1]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('84', 'e5121917d5', 'Maroon 5 & Billy Joel', 'Hablando de Restaurantes italianos, he oido que Billy Joel es la única persona de fuera de la banda que sabe lo que el nombre Maroon 5 significa. Soy un gran fan de Billy Joel, tuve una comida en Nobu, Nueva York, corrí hacia JayZ que acababa de conocer y el me presentó a Billy, tuve que preguntarle que dice en el solo de saxo de "Is still rock and roll to me", porque yo creo que dijo "All right Rico !", el estaba atónito, se tomó un segundo y me dijo sin expresión, "all right Rico", mas tarde vino otra vez y me preguntó, "de donde has sacado el nombre del grupo" es la cosa mas estúpida e historia mas tonta que se haya escuchado, pero ... tuve que decírselo. Traducción: Piano Man [img:e5121917d5]http://i.realone.com/assets/rn/img/1/9/8/3/14473891-14473897-slarge.jpg[/img:e5121917d5] [url=http://www.rollingstone.com/news/story/14473864/maroon_5s_adam_levine_on_billy_joel_90210_and_the_police]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('85', 'a171499e41', 'Para Ezequiel', '[quote:a171499e41=\"exequi62\"]Quisiera saber porque no se han editado Dvds de el concierto del milenio y de 12 Gardens...... no puedo entender porque no lo han hecho .. muero por tenerlos.........[/quote:a171499e41] [url=http://www.youtube.com/watch?v=_ZdklK7RelQ&NR=1]SCENES FROM AN ITALIAN RESTAURANT CONCIERTO 2000 YEARS[/url] Fijaos en los comentarios de YouTube .... y fijaros en Joel al final de la canción cuando besa a una de la banda ... y saluda al público .... la expresión de su rostro .. se tambalea, se nota está ebrio............aunque era una gran celebración!!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('86', 'a795702278', 'Videos del Milenio', 'Videos del Milenio en Youtube. [url=http://www.youtube.com/watch?v=qPmLdkXWp0Q&feature=related]We didn\'t start the fire[/url] Corren varios mas ...'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('87', '8ce4f2b6cc', 'Noriyuki makihara', ':arrow: [url=http://www.youtube.com/watch?v=EPhq8j8G06Q&feature=related]Noriyuki makihara どんなときも。 [/url] :wink: :wink:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('88', '2c73d2e8b5', 'impresionante', 'Me encantó la versión que has posteado.........solo pequeños detalles que se acomodan con ediciones fílmicas........muero por ese Dvd completo........un BJ auténtico........y de gala.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('89', 'ddf515c8b3', 'VIDEO entrevista', '[url=http://wcbstv.com/topstories/billy.joel.cass.2.615513.html]VIDEO ENTREVISTA[/url] Joel\'s \'Christmas In Fallujah\' Hits Home Front Bleak Message Warmly Received By Military Families NEW YORK (CBS) ― The song "Famous Last Words," was supposed to be his swan song. In 1993, after 14 platinum-selling albums, Billy Joel claimed he had nothing left to say. Fourteen years later, this is perhaps the Piano Man\'s most provocative statement yet. It\'s called "Christmas in Fallujah," and is sung by 21-year-old newcomer Cass Dillion. It\'s a blunt and mostly bleak, song about the plight of U.S. troops in Iraq. "We came with the crusaders to save the holy land. It\'s Christmas in Fallujah. And no one gives a damn," he sings. Joel told CBS Evening News anchor Katie Couric: "The events over there seem to have slipped from the headlines because of what\'s happening with the surge, but you know, what they conveyed to me was, "well tell that to the guys on the front lines. We\'re still there." Joel says the song was inspired by letters he\'s gotten from soldiers overseas. "I think a lot of people who are there feel detached from the home front, that people may not care or people have forgotten about them," he said. Noticably absent are the two instruments the 58-year-old Rock and Roll Hall of Famer is most famous for -- his piano and his voice. "When I wrote this song, and I heard a 58 year-old man singing it, in my voice, I said, \'that doesn\'t sound right to me. I think it should be somebody of that age, the age of a soldier or a Marine,\'" he said. Joel had heard the music of Dillon, a fellow Long Islander, and was impressed. So, backed by Joel\'s band, Dillon recorded "Christmas in Fallujah" on Veterans Day. Was that intentional? "Completely coincidental," Dillon said. "Divine intervention." But not everyone agrees the Karma\'s good. Joel\'s lamenting lyrics have some calling it an anti-war rant. And a Pentagon Channel holiday segment about the song was pulled. "Is it an anti-war song?" Couric asked. "I\'m not going to say if it\'s anti-war song or not," Joel said. "I hate it when a celebrity gets up on a soapbox and tells people how to think and how to vote. And what their opinion is. I hate that. I find it insulting. What I think isn\'t important. What they think is important, because they\'re risking their lives." Ten-year Army veteran Rick Bradley hosts an Internet radio show for military families and has a son serving in Iraq. He says most of his listeners think "Christmas in Fallujah" hits home. "It\'s an awesome, awesome song," said one military mom. "It definitely touches base." "They\'re really proud of Billy Joel because it was written from their eyes," Bradley said. "I think it\'s his thank you to the soldiers." And when we played the song for Sgt. Greg Papadatos of the 69th Infantry, back from Iraq and about to deploy to Afghanistan, he said he\'d like to thank Joel. "He\'s reminding people we have soldiers. They are at war. They are far from home," he said. "Yeah, thanks for remembering."'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('91', 'e42ffb918d', 'presencia', 'Sostengo mi pensamiento........hubiera querido que el propio Joel haya interpretado la canción...en primer término por el placer personal que eso me hubiera significado, en segundo lugar porque nadie expresa las canciones mejor que su propio autor (me cuesta imaginar a Dalí indicando a un alumno como ejecutar una obra propia)....y por último porque el golpe de efecto político hubiera sido mucho mas significativo si el propio Joel, de su propia boca, manifestara en el canto todo lo que tiene para decir de la política del gobierno de su país......... humildemente....Ezequiel'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('94', 'cd5bc3b965', 'Cena de Navidad para Bush', 'Si nuestro querido, amado y adorado presidente George W. Bush fuera mañana a comer a tu casa ¿qué le pondrías a la mesa?» Tal pregunta puso un cibernauta, en su página personal, la víspera de la pasada Navidad. La respuesta ganadora la dio una norteamericana camuflada bajo el seudónimo de «Potota»: «Posiblemente su comida preferida. Le trataría con el respeto que merece un dignatario. Mi mejor vajilla. Y decoraría toda mi sala con las fotos y las caras de los muertos en esta estúpida guerra. Las fotos de todos nuestros muchachos, destrozados y mutilados, fotos de todos los pueblos destruidos y de toda la miseria humana que provocan las guerras. Fotos y más fotos de hombres, mujeres y niños sin hogares, sin agua, sin comida, sin asistencia, a la intemperie... Si luego de ver todo esto aún le quedara lugar para el postre, estaré convencida de que esta noche abrazará a su osito de peluche y dormirá tranquilo.» Tal pareciera que el pobre hombre nunca podrá tener una Navidad en paz. Siempre alguien le amarga la cena. Fue el Nobel Pérez Esquivel quien, en el 2005, le atragantó el bocado de Nochebuena con aquella carta abierta donde decía que no podía felicitarle, no porque él no quisiera, sino porque Bush lo hacía imposible. «Creo que usted, Señor Presidente, necesita mirar su obra, evaluar lo actuado; su política de devastación y muerte que ha generado hasta el momento en varias regiones del mundo...» Para concluir después: «Me pregunto a qué Dios le dedica sus plegarias. Dudo que sea al Dios de la Vida, de la Paz y la Esperanza. Creo que Dios al escuchar sus plegarias se tapa los oídos para no escuchar tantas mentiras y crueldades.» Es ahora el mítico y legendario Billy Joel quien le echa agua a su sopa con una canción que promete ser, más que todo un éxito, la denuncia de una política loca; no hay otra palabra. El afamado piano-man acaba de lanzar su Christmas in Fallujah (Navidades en Fallujah), un canto a la soledad del soldado desde el desolador paisaje de una de las ciudades iraquíes que más ha sufrido los horrores de esa guerra. La canción, que fue estrenada por el joven intérprete Cass Dillon, tuvo su premier en un espectáculo donde el coro lo hizo un grupo de artistas vestidos de soldados. Su letra, tejida con una fina ironía, es la voz de un recluta que siente el cansancio, el frío y la soledad del desierto en una noche donde debiera estar con su familia, pero, a la vez, se consuela diciendo «Nosotros somos los legionarios de Roma que hemos venido a salvar esta Tierra Santa»; y afirma: «No hay justicia en el desierto porque no hay Dios en el Infierno...» La poeta venezolana Yury Weky ha escrito: «Fallujah suena a música para soñar, suena a pinceles mojados de rosa, tiene olor de especias. Fa... llu... jah, qué hermoso nombre para cantar, para pronunciar. Su sonido musical nos lleva a imágenes arcádicas. Al nombrarla, pareciera que hablamos de conciertos. Eso solo es imagen acústica decodificada en la distancia por la armonía que produce al oído. Fallujah es otra cosa: cuerpos destrozados, rojo en las calles por la sangre derramada, familias exterminadas que gritan y sus gritos estremecen el planeta, es la palabra injusticia que muerde, es la palabra invasión que roe el aire, casas, techos, museos, estalla en cuerpecitos de los niños. Niños con la pregunta dibujada en los ojitos muertos que preguntan a cada habitante del planeta: ¿qué hice a Bush, a los norteamericanos para que me desalojaran de mi Fallujah tan pronto?» Sin dudas, la canción de Billy Joel será otro hueso de pavo atravesado en la garganta del presidente, una sensación extraña de bazofia en la boca que hace rebelarse hasta a la dócil saliva. Sin dudas, a pesar de los champanes y caviares de la Casa no tan Blanca, no tan pura, en este 24 de diciembre, la cena del presidente será un amargo puchero que tratará de imitar una sonrisa frente a las cámaras de la prensa, quizá mientras el gran Billy le martille en la conciencia, como humilde minero, aquella antigua frase de: «Toca otra vez, viejo perdedor/ haces que me sienta bien./ Es tan triste la noche en que tu canción/ sabe a derrota y a hiel». Agregándole, ahora, esta nueva y dolorosa cinta fúnebre que, derramada cual finísimo e irónico óleo, clama como denuncia cantada: «Un mar de sangre en Bagdad, un mar de petróleo en la arena»... «Navidad en Fallujah, ¡Aleluya!». [url=http://www.juventudrebelde.cu/opinion/2007-12-23/cena-de-navidad-para-bush/]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('95', 'c9c727bfdc', 'Si', 'Es que fueron dos días de conciertos, el 22 y el 23 de Junio, que yo sepa, no hay nada grabado del día 23 que supongo que de ese día provienen Allentown y Big Shot. Yo tengo lo mismo que el Dvd en audio, pero nada mas, lo siento :lol: [url=http://www.billyjoel.es/newyorkserenade.htm] YANKEE AUDIO[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('182', '0b3ccc04ec', 'bienvenido', 'Bienvenido Eguzky......soy Ezequiel...de Argentina...dicho sea de paso supongo que el albúm de Elo al cual referis debe ser A NEW WORLD RECORD.....noticias del viejo mundo.........o quizá DISCOVERY.........ambos albumes excelentes El single por aquella época de la ELO...puede haber sido....EVIL WOMAN...O TELEPHONE LINE.......o si no posteriormente....LAST TRAIN TO LONDON O DON\'T BREAK ME DOWN'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('185', '4f3e76e28b', '', 'El disco de la ELO era el sweet taking woman. Pertenecía a Out of the blue. El rock sinfónico nunca ha estado entre mis favoritos y no aguantaría escucharlo constantemente, pero está canción en concreto me parece bastante buena. Gracias Ezequiel por tu bienvenida. Seguro que nos veremos por aquí en adelante.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('163', 'e9624c0977', 'Re: Casi Nadie Supo!!!!', '[quote:e9624c0977]habia muuuucha publicidad. Para Billy no hubo nada, mas que anuncios semanales en un períodico de DEPORTES!!!!.... El día del concierto llegué muy temprano al Foro Sol, y en lo que esperabamos le pregunte a un organizador que cuanta gente esperaban... Me dijo que 30,000 para un Foro de 60,000... 15,000 regalados, (radio, empresas, etc.) y solo 15,000 vendidos!!!! Creanme en México hay mássssss que 15,000 personas que lo verian. Una estación de radio por la que yo conocí a Billy, de la cual su director es FAN de Billy, no hicieron NADA!!!!. De quien fue problema?, de la Disquera?, de la gente de Billy?, pienso que fue injusto. Pablo :idea:[/quote:e9624c0977] Hola Pablo, de todos modos y mirándolo bien, si te paras a pensarlo un poco, creo que regalar 15.000 entradas a la gente es hacer mucho por promocionar el concierto de Billy Joel. Saludos!!! y enhorabuena por tu ascenso :P'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('159', 'b87ce5b107', 'The Echoes/The Lost Souls/The Commandos', 'Otro grupo importante en La Feria Mundial de Nueva York (15 de septiembre de 1965) fueron los Lost Souls (Las Almas Perdidas). [img:b87ce5b107]http://www.limusichalloffame.org/lirock/images/002.jpg[/img:b87ce5b107] Recientemente Howie Blauvelt conto la historia de su banda de garaje. “Estaba en quinto grado, y fui a un show de talentos. En él, un chico tocaba la guitarra y todas las chicas se volvieron locas por él; me dije a mi mismo: tengo que hacer esto”. Conseguí una guitarra y aprendí a tocar. Cuando supe los acordes suficientes me junte con otros chicos a tocar, y formamos una banda: The Echoes (Los Ecos). Teníamos dos guitarras, así que me cambie al bajo…era divertido!. Todo estaba bien, era genial, nos divertíamos cuando tocábamos. Todo esto fue antes de la Invasión Inglesa o sea que tocábamos música para bailar como Twist and Shout, La Bamba, Perfido y Wipe Out, también muchas instrumentales, muchas instrumentales! Necesitábamos un cantante, así que les dije a los chicos que conocía a un amigo que tocaba el piano y cantaba, y entonces le pregunte a Billy Joel que si se quería unir a la banda. [img:b87ce5b107]http://www.limusichalloffame.org/lirock/images/004-a.jpg[/img:b87ce5b107] Las Almas Perdidas empezaron a ganar competiciones y fueron capases de conseguir un contrato con Mercury Records. Blauvelt en su relato continúa: “La primera canción que Billy Joel grabó fue El fin de Mi Viaje (My Journey’s End). “Billy y yo escribimos oytra canción llamada Tiempo y Tiempo otra vez (Time and time again). Antes de que la Disquera Mercury Records cerrara el contrato, los obligaron a cambiarse el nombre, ya que había otra banda con el mismo nombre. El grupo fue llamado Los Comandos (The Commandos), y lo que grabaron ahora esta en la bóveda de Mercury Records. [img:b87ce5b107]http://www.limusichalloffame.org/lirock/images/003.jpg[/img:b87ce5b107] Traducción: Pablo Argüelles :idea: Original: Piano Man [url=http://www.limusichalloffame.org/lirock/hassles02.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('98', 'a807c830cf', 'Doctor House', 'Particularmente me gusta mucho HOUSE, además seguro que no sabiais que tiene su propia banda: [img:a807c830cf]http://www.formulatv.com/img_noticias/2700/2757/001.jpg[/img:a807c830cf] El grupo "Band from TV" durante un descanso en los ensayos James Denton (Mike en \'Mujeres Desesperadas\') a la guitarra, Hugh Laurie (el Dr. House) al teclado, y Greg Grunberg (Weiss en \'Alias\') a la batería, forman "Band From TV", un peculiar conjunto musical formado enteramente por estrellas de televisión. [img:a807c830cf]http://cine.lycos.es/imagenes/noticias/Hugh-Laurie-2-p.jpg[/img:a807c830cf] http://www.youtube.com/watch?v=6LKwwOr6ZI4&NR=1'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('99', '0048f68e29', 'Canciones de Joel con subtítulos en Español', 'Tienes infinidad de canciones de amor; pero practicamente ninguna de ellas hablará de la honestidad. Al final resulta ser cierto lo que dice Billy Joel: es bastante dificil oir hablar de ella. Aquí os dejo una mis favoritas; disfrutadla. [url=http://www.youtube.com/watch?v=pKR2pVCaoO0]HONESTY[/url] Una de las más hermosas canciones de este autor estadounidense. Canto al amor que trasciende edades y tiempos. ¿Tienes hijos? seguramente ya sabes a qué me refiero [url=http://www.youtube.com/watch?v=QLmJS9PWdns#]LULLABYE[/url] Preciosa esta última :lol: Autor de los subtítulos, montaje y comentarios por cortesía de 19Nexus68'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('100', '6b9ca76211', 'Pedido', 'Le solicite a santa claus el video del milenio en DVD.......no tuve respuesta....evidentemente está dificil conseguirlo.........FELIZ 2008 PARA TODOS LOS FANS DEL PIANO MAN'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('101', '19f1705b23', 'Hola!!!', 'Hola a todos los fans de Billy Joel... Mi nombre es Pablo Argüelles, soy de Puebla México. Tuve la oportunidad de ver a Billy 2 veces...una en monterrey el 9 de diciembre de 2007, y la otra en México DF, el 12 de diciembre de 2007. Tengo quince años y no hay nadie mejor que el, simplemente. Es bueno saber que hay una pagina dedicada a este pianista en español que buena falta nos hacia!!!!....muchas gracias y ya nos veremos por aqui... Saludos desde México... Pablo°'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('102', 'f6fe8d4a82', 'Bienvenido', 'Bienvenidas las nuevas generaciones de fans...............te felicito pablo.-'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('103', 'dc622c1b81', 'Mexico 12 de diciembre de 07', 'Hola a todos, fans de Billy Joel!!! Bueno primero que nada me presento, soy Pablo Argüelles de Puebla, México y tengo 15 años. Hace poco tuve la oportunidad de ver a Billy 2 veces, una en monterrey y otra en México DF, donde paso algo interesnate. Tuve mucha suerte ya que consegui boletos en la tercera fila y llegue muy temprano al concierto. En mi mochila llevaba un Lp, 52nd street. Y bueno pues al llegar a mi lugar no habia nadie todavia asi que fui a ver el escenario un poco mas de cerca. Re concoci a Wayne, el asistente personal de Billy que estaba haciendo los ultimos ajustes del piano, y me nacio gritarle: wayne!!!!.... El señor se impresiono cuando vio que yo lo estaba llamando, y entre confusion y una cara de rareza vino hacia mi. Con mi ingles pude decirle que si le podia dar mi Lp a Billy, para que lo firmara, y lo unico que entendi fue que el no estaba ahi y que menos podia verlo. Pero me dijo espera un momento.... Cuano regreso me trajo 6 espigas de guitarra, de las que usa Billy cuando la toca en We didnt start the Fire, 3 rojas y 3 azules, todas con su autografo y su famosa frase: Don\'t take any sh*t from anybody. Le dije que muchas gracias...me quede impresionado con la humildad de Wayne y por el detalle de regalarme 6 espigas que significan mucho para todo fan....thank you Wayne.!!!! Pero ahi no acaba todo....media hora antes del concierto salio Carl Fisher, el trompetista a probar sus instrumentos y me acerque y le grite Carl!!!...no pude creer que viniera hacia mi....me pregunto que como me llamaba y etc.....y me firmo el 52nd street....platique un buen rato con el...despues de 5 minutos salio otravez y me dio otras 6 espigas, 3 como las que me dio Wayne, y tres con la portada de My lives. Carl Fisher!!! es lo mejor jaja.... El concierto fue el mejor de mi vida, estuvo much mejor que el de Monterreey, y aunque no se lleno el foro solo de 50 mil personas, pero valio la pena!!!!..... Fue de las mejores experiencias de mi vida,!!!! Gracias. Pablo° :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('104', '50d11287db', 'Tokyo, Noviembre 2006', 'Hola Zanzibar. Lei tu articulo acerca del Video de Billy en you tube que es en Tokyo... Yo tengo el video completo en dvd...y de excelente calidad y sonido... Fue filmado el 30 de noviembre de 2006 en el Tokyo Dome, para un especial de televisión. Si quieres la lista de canciones te las puedo mandar por correo siquieres....o tambien por medio del foro.... zukino4@hotmail.com Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('105', '18a7fa64cc', '', 'Si, al parecer saldrá en 2008....ahora solo nos queda esperar!!!! Saludos desde mexico.. Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('106', 'ccbbeff5af', '', 'Ojalá la emitan por algún canal de cable que llegue a hispanoamérica. Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('107', 'dfb6688b05', '', 'El tema que está promocionando algo como "Hold on me" promete bastante. Da la impresión de que Billy la asesoró muy de cerca, porque suena demasiado bien. De las otras canciones no puedo decir mucho porque no las he escuchado. Las fotos de Alexa también están buenas, se nota que ha crecido y se ha operado y recauchado por ahí y por allá. Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('108', 'b4ebd074ac', '', 'Hola, que buen gusto musical tienes. Yo tengo 32 años y escucho también a Billy, pero a tu edad hay muchos jóvenes que solamente escuchan lo que está de moda, sin importarles nada de lo bueno que se haya hecho en el pasado. Felicitaciones y disfruta de tus regalos Joelianos. Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('109', '7c5ce2ac32', '', 'PABLO, bienvenido a billyjoel.es. Disculpa, he estado en Finlandia por fin de año y no he parado por aquí. También doy la bienvenida a Zanzibar por si no lo había hecho ya, y al resto de gente les mando un saludo y me refiero a los que habitualmente escriben, exequiel, Alejandro, Leyna.. También para los que nos leen y aún no se han decidido a participar les animo desde aquí a que escriban y nos cuenten sus experiencias..... :D Decirte que has tenido mucha suerte y es sorprendente que a un chaval de tu edad le guste Billy Joel, sobretodo porque no ha sacado un disco desde hace mas de una década... Ya nos contarás como lo conociste musicalmente hablando. Bueno tocayo, nos leemos por aquí... a propósito, que es una espiga? Saludos Feliz año nuevo a todos!! :!:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('111', '40b55c2426', '', 'Muchas gracias...y nos seguimos leyendo.... Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('112', '83590e431b', '', 'Muchas gracias por la bienvenida Pablo. Pues todo empezo cuando tenia 11 años y pues apenas descubria la verdadera musica...cada que escuchaba el radio anotaba las canciones que me gustaban para luego investigar mas sobre los artistas...me pasaba horas escuchando el radio. Un dia, pasaron 3 canciones de Billy Joel en una hora, canciones que ya habia escuchado pero que no sabia que eran de el, solo conocia Piano Man. Entonces compre el Piano Man: Greatest Hits, que solo salio en Mexico de puros exitos, y bueno pues me lo aprendi de memoria, asi es como lo conoci. Pero me volvi fan cuando supe que James la cantaba el, y turnstiles fue mi primer disco, desde el primer momento me impresiono su manera de tocar el piano (yo lo toco), y el significado de sus letras. :shock: Espere muuuucho tiempo para verlo en vivo hasta que en Diciembre se cumplio mi sueño. Una espiga es la que se usa para tocar la guitarra, no se como le digan en España...detodos modos aqui puedes ver las fotos de mis espigas y tambien del autografo. Pues muchas gracias por la calida bienvenida y no sabes lo feliz que estoy por poder tener una comunidad de Billy Joel en español, en ingles no es lo mismo jaja... Muchas gracias y saludos desde Mexico, feliz año. Pablo :idea: http://www.flickr.com/photos/piaa11/ [img:83590e431b]http://farm3.static.flickr.com/2226/2164107833_69461c0d6a_m.jpg[/img:83590e431b]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('113', '90261ff345', 'espiga', 'jaja....en Argentina se le dice ...púa......en España creo que ....Uña......sino corrijanme........a pablo le digo que soy guitarrista y que puede escuchar a mi banda en la dirección que está en los enlaces de esta página....Tres Tipos.......Pablo.....tenés varias "espigas"...deberías mandarme una.....muero por tenerla.......'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('114', '98cd65ed16', 'Re: espiga', 'En España pua también, Exe Bueno, parece que nuestro amigo Pablo es un melómano exquisito, y es que BillyJoel solo es para paladares selectos e intelectos elevados !! :D :D'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('115', 'e5f0c89a78', 'Bienvenido.', 'Leí en la biografía de Mark Bego sobre Billy, que ya no habría mas BillyJoel para las nuevas generaciones porque no hay nuevos discos, me alegro de que haya excepciones.!!! Bienvenido al río de los sueños ... y corre la voz de esta comunidad!! Por cierto, ¿Como nos encontraste?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('117', 'a4ae51a0de', '', 'Pues Exe, cuando es tu cumpleaños??? jaja.....oye estoy escuchando aTres Tipos, me parece excelente....apenas voy en la de esperandote...jaja me encanta, representa algo que siento estos dias por alguien... Cuando lo escuche todo te aviso....gracias.. Pablo° :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('118', 'f8b36a9a58', '', 'Si, yo tambien lei ya el libro de Mark Bego y no estoy de aceurdo en algunas cosas, por ejemplo que le da a Liberty de Vitto por su lado y lo favorece, cuando tendria que ser neutral, ya que es una biografia de Billy, no un articulo periodistico!!!!...entonces que Lib haga su libro!!! Y encuanto a la pregunta....mmmmm.....buena pregunta no me acuerdo. Fue hace como 4 meses pero me meti y todavia no habia nada, entonces me acorde y ahora aqui estoy jaja... Saludos. Pablo :idea: Creo que fue por billyjoelfan.com, no me acuerdo bien....perdon.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('119', '0512cccdd1', '', 'Por lo que se los 2 conciertos de Yankee Stadium si se filmaron. Hay un dato que dice que Billy y la banda se vistieron igual en los dos conciertos para poder despues mezclarlos, y de ahi salio el video oficial. Nadie sabe el set-list verdadero de ninguno de los shows pero lo que si sabemos es que el video oficial fue una seleccion de canciones de los dos shows. Porque imaginense que para semejante estadio y tanta gente solo toque 12 canciones jaja... El link que les pongo es del Yankee Stadium, y no se como este señor consiguio el video, debe tener buenos contactos jaja... Es INEDITO, Only the Good Die Young en Yankee Stadium. http://www.youtube.com/watch?v=8PLm-88K5b0 Por cierto Pablo, en donde conseguiste el audio?.. Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('120', '0c5fb75f71', '', 'Vaya, no lo sabía .. Que engañado me tenían, así que vistiéndose igual los dos días eh!! desde luego cuando uno se cree que lo sabe todo sobre algo, sale siempre algo que le sorprende jajajaja :D Gracias por el video del Only the ... estupendo a ver si conseguimos el resto del repertorio... Por cierto hay un programilla para bajarse los videos de Youtube se llama, Save2pc http://www.save2pc.com El audio del Yankee, lo compré en una fería del disco internacional aquí en Barcelona, pero seguro lo encuentras por ebay, suena muy muy bien para ser pirata. De todos modos nunca he acabado de entender que criterio siguen a la hora de seleccionar los videos que finalmente salen a la venta, porque desde luego y Exequiel coincide conmigo, se lucen!! :x Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('184', '505d62bf47', 'espiritu', 'El espiritu es elegir solo una..........lo del album vendrá mas adelante...............'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('122', 'fa67bb1601', '', 'Hola a todos, por lo menos la idea se entendió. Acá en Chile les decimos uñetas, pero también se conoce como espiga, púa, pala o simplemente uña. Saludos'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('123', 'aa44c1f609', 'libro', 'El libro biográfico al que refieren tiene edición en idioma español???'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('125', '731ef7208d', 'CD', 'les cuento tengo una edición "pirata"....from Italy......en CD....del audio del Yanky Stadium.....su sonido e muy bueno......luego les confirmo el set de canciones.....lo tengo en mi Estudio.........creo que es similar al DVD........después confirmo'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('126', 'd96c10724f', 'Visitantes....Leer importante', 'EN MAYUSCULAS LES DIGO......REGISTRENSE Y PARTICIPEN.....SEAN PROTAGONISTAS DEL ÚNICO FORO EN ESPAÑOL ACERCA DE BILLY JOEL........HAGÁMOSLO CRECER.......SI ES QUE TIENEN DESEOS QUE BJ LLEGUE A HISPANO AMÉRICA......GRACIAS EXEQUI....ARGENTINA'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('127', '18ad0cbf37', 'PUA', 'AHHH....y a propóito de la espiga o púa........te digo Pablin que mi cumpleaños es el 27 de Julio........sería el mejor regalo en años.......agarraste la indirecta???'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('128', 'b6f34fdc6e', 'Biografías', '[quote:b6f34fdc6e=\"exequi62\"]El libro biográfico al que refieren tiene edición en idioma español???[/quote:b6f34fdc6e] Ojalá así fuera .... la única biografía que conozco en Español es de hace un montón de años y ni siquiera la tengo porque está descatalogada.. es que pasan de todo leches !!! :cry: si no eres yankee o Anglófilo toca aguantarse :evil: Es esta la que un amigo mio encontró en la biblioteca de la universidad de derecho y por supuesto se agenció: [img:b6f34fdc6e]http://i22.ebayimg.com/01/i/000/b8/32/74d2_1.JPG[/img:b6f34fdc6e]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('597', 'cffa9c4fea', '', 'hola victor, bienvenido!!!! Me llamo alejandra y yo tambien soy nueva en este gran foro, asi que espero que lo disfrutes tanto como yo!!! un beso. <Alejandra Joel>'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('131', '6f3c1ac250', 'Casi Nadie Supo!!!!', 'Hola a todos!!!!. Pues yo creo que para todos fue una "milagro" que Billy Joel viniera a México, ya que es una buena señal para proximos conciertos en Latinoamérica. Pero bueno aún asi tengo mis dudas. The Police vino a México el 24 de Noviembre de 2007 al Foro Sol, y los boletos se empezaron a vender en Julio, el concierto fué un éxito en cuanto a número de asistentes. La primera y unica noticia de que Billy venía a México fue el 7 de Julio, y saben cuando inicio la venta de boletos?....el 11 de octubre. Para The Police había comerciales de tele y radio, anuncios por todas partes de la ciudad y en Ticketmaster habia muuuucha publicidad. Para Billy no hubo nada, mas que anuncios semanales en un períodico de DEPORTES!!!!.... El día del concierto llegué muy temprano al Foro Sol, y en lo que esperabamos le pregunte a un organizador que cuanta gente esperaban... Me dijo que 30,000 para un Foro de 60,000... 15,000 regalados, (radio, empresas, etc.) y solo 15,000 vendidos!!!! Creanme en México hay mássssss que 15,000 personas que lo verian. Una estación de radio por la que yo conocí a Billy, de la cual su director es FAN de Billy, no hicieron NADA!!!!. De quien fue problema?, de la Disquera?, de la gente de Billy?, pienso que fue injusto. Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('132', 'f7650efad2', '', 'No Exequi, solo inlges :x'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('133', 'dddf7d2ea8', '', 'MM interesantes datos ..........Pasa exactamente lo mismo en ESPAÑA, yo ya estoy pensado en viajar a donde sea con tal de verlo de una maldita vez :twisted: es frutrante ser un fan de Billy y no haberlo visto jamás .. si, he de reconocerlo... Mucha suerte has tenido Pablo, creeme. No sé, Billy parece que se olvida de mucha mucha gente que lo quiere ....... a ver si recapacita un poco. El mundo no empieza y acaba con los gloriosos Estados Unidos de Ámerica, al final te das cuenta que hasta los artistas de esta talla se mueven muchas veces SOLO por dinero o para agrandar su ego... ...si no me contais porque no saca un nuevo disco y sigue viviendo de sus viejas glorias, el mismo lo ha reconocido, porque no se ha visto en la obligación de sacarlo.... son todos unos divos, lo siento, tenía que decirlo. Pablo lo que cuentas, tal vez tenga que ver que no está de actualidad, porque la cruda realidad es que desde aquellas últimas famosas palabras se ha dedicado a vivir de renta... sacando y resacando las grandes canciones, dícese musicales de Broadway o recopilatorios, una y otra vez bajo diferentes apariencias, exceptuando lo clásico que nada tiene que ver con el Billy que todos conocemos a veces las tortas no siempre son buenas cuando falta el pan... vamos hombre, que tampoco es tan dificil hacer algo por los fans!!!! Vaya cosas y vaya ironías tiene la vida, a unos les regalan boletos que tal vez ni se merezcan y otros se tiene que gastar su patrimonio en irlo a ver anonimamente al otro lado del mundo.. que pena !!!!!!! Yo incluso dudé que tocara en México y lo anulara a última hora (no sería la primera vez) por aquello de la avalancha de asesinatos a artistas narcos.. pero al final me alegré mucho por Méjico.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('134', 'e4b76a39ee', '', 'Si exequi jaja, si la entendi. Pues me encato Tres Tipos, luego ya platicaremos por Msn... Saludos. Pablo! :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('135', 'e104dd90b6', '', 'Pues asi es, es la realidad que vivimos los verdaderos fans...pero solo nos queda esperar aver que otros "singles" nos esperan cantados por otros artistas, o talvez llegue el DVD que desde el concierto del milenio no ha llegado. Desde Mexico, Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('160', '18bab872ec', 'La Isla', 'A ver......camaradas....se que esto es cruel......pero si debieramos pasar el resto de nuestras vidas en una isla solos..........que canción de BJ se llevarian........solo una............. yo?......sin duda.........elegiria la canción con la que me atrapó BJ.....hace 30 años........se que hay muchas y mejores.....pero me quedaria con esta con la que me rompió el coco en ese entonces THE STRANGER........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('161', 'c4dc1a94bd', 'Re: LA ISLA', '[quote:c4dc1a94bd=\"exequi62\"]A ver......camaradas....se que esto es cruel......pero si debieramos pasar el resto de nuestras vidas en una isla solos..........que canción de BJ se llevarian........solo una............. yo?......sin duda.........elegiria la canción con la que me atrapó BJ.....hace 30 años........se que hay muchas y mejores.....pero me quedaria con esta con la que me rompió el coco en ese entonces THE STRANGER........[/quote:c4dc1a94bd] Ufff, dificil pregunta .... :shock: No puedor, no puedorrrrr, definirme por una, pero si tuviera que hacerlo so pena de muerte ... veamos :? Miami 2017 versión en directo de las canciones en el ático :!:... y no podría ser un album entero .. jur jur jur, mejor toda la discografía, no?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('137', '097f00de0a', 'Mas sobre Los Hassles', '[img:097f00de0a]http://www.limusichalloffame.org/lirock/images/006.jpg[/img:097f00de0a] John Dizek, Jon Small, Richie McKenna, Howie Blauvelt, Billy Joel on the ocean deck of The Barge, Westhampton, 1966 When Jon Small looked for someone to replace Harry Weber in The Hassles, he selected the organist from The Commandos, Billy Joel. As was the case in most of The B-3 Bands, Weber had mastered the bass pedals of the Hammond, thus negating the requirement of the bass guitar. Billy Joel\'s keyboard preference was the pedal-less Vox. Billy wouldn\'t join unless his bass player and friend, Howie Blauvelt, came along too. The best groups played My House but it seemed that The Hassles played there enough to be considered the house band. They revelled in their success when they signed a recording contract with United Artists. John Dizek remembers,"Billy was always alright with me. We had a ton of fun, he\'s a pretty funny guy. He was always so focused--he knew that he wanted to be a star from the beginning. That always impressed me. In the beginning, it was all fun. United Artists rented limos for us to arrive at publicity parties. You know how when limos are stopped at a light, people try to look in to see who\'s inside? Only they can\'t see in because the windows are tinted? Well, Billy would look right back at them and yawn. Like,"How boring!" Yeah, right! We would crack up!" In spite of Dizek\'s warm memories, The Hassles were living up to their name. Arguments raged continually. Although their first single, a cover of the Sam & Dave hit, "You Got Me Hummin\'"(United Artists 50215, 1967), generated some interest, frustrations surfaced when the album ("The Hassles" United Artists 6631, 1968) did not set the world ablaze. Howie Blauvelt relieved his pressure by leaving the group and joining Wes Houston in The Elaine White Band. [img:097f00de0a]http://www.limusichalloffame.org/lirock/images/017.gif[/img:097f00de0a] Howie Blauvelt, Elaine White, Wes Houston He stayed for eight months and returned to The Hassles in time to record the second album on UA, "The Hour Of The Wolf." For Howie Blauvelt, it was a well-spent sabbatical. "The Elaine White Band played nice music. It was a very folkie sound with both Wes and Elaine on acoustic guitars. Wes wrote the songs. Most of our gigs were down in The Village...I remember one with Pete Seeger. The whole experience was like a breath of fresh air for me." John Dizek focused on another problem. "Our management was bad. They used us to support themselves. They kept The Hassles at My House during the most crucial time. We should have been touring to support our album which was starting to happen. We never really had the chance to make it." Johnny Dizek could take no more long nights. At year\'s end, he quit the band and rock music forever. With Dizek\'s departure, a powerful visual aspect of the group was lost and the role of lead singer settled on Billy Joel. The Hassles second album, "The Hour Of The Wolf" (United Artists 6699, 1969) was finding an audience in the smoky haze of college dormitories when the group passed into history. There were problems and conflicts, jealousies and resentments. The Smalls divorced and Billy Joel became Elizabeth\'s new partner. Howie Blauvelt no longer enjoyed the music nor the atmosphere and he quit the band again, this time for good. Several months later, after a procession of unsatisfactory replacements, the remaining Hassles packed it up, too. Jon Small recalls the end in hard terms. "Billy and I hated the band. We didn\'t like them or their playing so we terminated The Hassles. We wanted to continue to play together so we formed a two-man army called Attila The Hun. We spent most of our time practicing in the basement of my parent\'s wallpaper store in Jericho. We played a bunch of clubs--our best night was at The Daisy on Merrick Road and Route 110. We got a deal with Epic and the record came out as "Attila" (Epic 30030, 1970). "Attila was a minor sensation and garnered good reviews but this album was their only release. Today, it has considerable value as a Billy Joel collectible. [url=http://www.limusichalloffame.org/lirock/hassles03.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('138', '4309ad85e4', 'El destino de los Hassles', 'Hassles, Continued After The Hassles Later, after the demise of Attila, mutations and permutations developed based upon the growing respect the better musicians held for each other. Billy contacted his old partner, Howie Blauvelt, and offered him a role in a new group he was assembling. This collection of local stars going under the name, El Primo, was culled from the ranks of The Hassles (Billy and Howie), The Phaetons (Gerard Kenny), The Rich Kids (Denny Belline) and Man (Jeff Schwartz). [img:4309ad85e4]http://www.limusichalloffame.org/lirock/images/005.jpg[/img:4309ad85e4] Gerard Kenny, Howie Blauvelt, Jeff Schwartz, Jimmy Santoro With this wealth of talent, they naturally composed and performed originals. No music ever found its way onto wax but the ensemble thrilled audiences during its short existence. Howie Blauvelt: "We were booked to play Chesney Wolds, a club in Island Park right across the street from The Action House. I showed up to the gig late and they threw me out of the band. Of course, I was pissed but my dismissal only lasted one week. One week later, they played the club again with a new bass player. After the first set, the owner told them, "Get Howie or get out!" and I was back in El Primo." The Hassles, The Echoes, The Lost Souls, The Commandos, The Hassles (again), Attila, El Primo are all faded names of Long Island history. The members moved on, sometimes writing history along the way. Billy Joel became a star of the highest magnitude. "Just The Way You Are" will be sung well into the next century and beyond. Billy never left Long Island, he remains our favorite son. "Charity Begins At Home" was a philanthopic organization that Billy started way back in the mid \'70\'s, its generosity is still felt. For many years, Billy led a parade of motorcycles the length of Long Island as a fund-raising stunt. He can frequently be seen hanging out at The Stephen Talkhouse or dining out in Amagansett, his home. Of course, anytime Billy opts to tour, it is a standing-room-only crowd. John Dizak lived on Long Island for many years. A born-again Christian, he was the choir director of The Upper Room Tabernacle in Deer Park. In 1992, he moved to Pennsylvania to continue his good works. After The Hassles disbanded, Richie McKenna played with several bands but never achieved success. It embittered him to see his bandmates succeeding while he floundered. McKenna began to run with a bad bunch. He spent some time in jail after he was caught during a gas station holdup. His whereabouts today are unknown. Jon Small became a successful producer and director of concert films and video clips. During the \'80s when MTV was starting to explode, Small directed over 4000 videos for such stars as Madonna, Aerosmith and Van Morrison. His full length concert video for Van Morrison is considered a classic of the genre. While Billy Joel became an international superstar, Howie Blauvelt became a true Long Island legend. After El Primo, Howie hooked up with Ram Jam. "Black Betty", an aggressive version of Huddie Ledbutter\'s song, became a bar band staple and a heavy-metal response to disco fever. The song still gets much airplay around the world. Ram Jam recorded the song for Kastenetz & Katz, the kings of "bubble gum" music. It was a dramatic departure of style and its\' success surprised them. (Ironically, in 1992, they remixed the track as a disco-ish dance single and it became an international hit all over again. The members of Ram Jam did not share in the financial reward, though.) Ram Jam toured pushing the track until personel changes and the lack of a follow-up hit yielded to boredom. However, Howie\'s driving bass affected an entirely new generation of hard and heavy rockers. His bass shook walls, floors, ceilings and souls. After Ram Jam, Blauvelt appeared in several bands always bringing his booming style to the fore. During the early 1990\'s, he was a member of Spitball, a funk-blues band that was just starting to come to fame when he suffered a heart attack and died. It must be noted that Howie Blauvelt\'s old amigo, Billy Joel, often dedicates his hit, "We Didn\'t Start The Fire," to Howie Blauvelt when he performs the song in concert. It is a fitting creative artist that was Howie Blauvelt. [img:4309ad85e4]http://www.limusichalloffame.org/lirock/images/howie-laugh.jpg[/img:4309ad85e4] [url=http://www.limusichalloffame.org/lirock/hassles04.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('139', '6b578b4eec', 'Topper continuación', 'After several experiments as The No Name Band, Liberty DeVito, Howard Emerson, Russell Javors and Doug Stegmeyer formed Topper. Plainview\'s Howard Emerson, finger-picker and slide specialist, saw the potential, "I first met Russell when I was fifteen. He was always an excellent songwriter, perhaps the best I\'ve ever heard. Period. The End. By far, one of the most clever and original writers...on a par, without a doubt, with Randy Newman. Very wry, even cynical sometimes, he just sees the world through a particular set of glasses. It agrees with me entirely." After flirting with several producers, including Buddy Buie, of Classics IV fame, Russell Javors opted not to record his music with studio musicians. "The only way I wanted to present my music was with my band. There were relationships that had been built between us and that was integral to my music. This was crucial. I had very definite views on that and I was not willing to compromise." Howard Emerson regrets the lack of release. "Topper made lots of tapes mostly down in a studio in Merrick. And basically, Topper was Russell\'s band. We were Russell\'s band from the beginning. Again, I maintain that Russell is one of the best songwriters. His abilities have never been touched at all. Never." When Billy Joel returned to Long Island as the successful "Piano Man", he needed a top-notch group to reproduce his hits. Adding saxophonist, Richie Cannata, Topper was transformed into The Billy Joel Band. The "Topper sound" can best be heard on Billy Joel\'s album "Turnstiles" (Columbia 33848, 1976). After this recording, Howard Emerson departed, was replaced by Dave Brown, and the band took off in a different direction. [img:6b578b4eec]http://www.limusichalloffame.org/lirock/images/emer.jpg[/img:6b578b4eec] Howard Emerson With this band, Billy toured and recorded for over 15 years. Russell Javors pointed out one highlight, "The Russian tour was fascinating. You know real rock \'n\' roll only exists when it is a response to repression. Russia was just opening up at that time and the musicians we met there were hungry for any input we could provide." It is unfortunate that the original compositions of Russell Javors were never performed nor recorded by this ensemble. Several of his songs have found their way to wax, though, and recently, Phoebe Snow and Steven Tyler recorded his beauty, "Gone With The Wind." Today, Russell is working on a Les Paul tribute album with help from Joe Walsh, Slash and other heavy weight disciples. Howard Emerson, still regarded as one of the premiere slide and fingerpicking artists in the country, performs regularly around the east coast. In 1995, his slide can be heard on Al Kooper\'s 2 CD set, "Soul Of A Man: Live at The Bottom Line." On August 24, 1995, Doug Stegmeyer, "The Sargeant Of The Billy Joel Band," committed suicide in his home. A steady and reliable person, it surprised everyone who knew him. While his career was in remission, he seemed to maintain a busy schedule recording and producing. -------------------------------------------------------------------------------- [url=http://www.limusichalloffame.org/lirock/topper.html]fuente[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('140', '3a7211e17a', '', 'Me parece. Creo que es urgente que en las busquedas de Billy Joel en Google salga el Foro como prioridad. Desde Chile tienen todo mi apoyo.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('156', '8c6d312f07', 'Los Hassles', '[b:8c6d312f07]Biografía:[/b:8c6d312f07] Los Hassles (Las Molestias), ganaron su lugar en la historia de la música ya que fue la primera banda con la que Billy Joel grabó, pero musicalmente merecen más reconocimiento. Aunque solo lanzaron 2 álbumes, era un grupo que se podía disfrutar y obtuvo un poco de merecida atención con shows en Long Island. Los Hassles era un grupo “blanco” de soul, que se puede comparar con The Rascals. Se formó en Long Island NY, en 1964 por el baterista Jon Small, el cantante John Dizek, el organista Harry Weber, y el guitarrista Richie McKenna. Webber fue hechado de la banda en el 66’ debido a su mal comportamiento, y Billy Joel, quien había hecho una buena reputación en Long Island como tecladista con The Echoes, The Lost Souls y Los Commandos (como Billy Joe Joel), fue el encargado de tomar el lugar de Webber con la condición de que Howie Blauvelt fuera el nuevo bajista. Aunque era todavía un adolescente, Joel podía añadir prodigiosamente algunas voces y arreglos en el piano de puro soul. El nuevo sonido del grupo prosperó y fue aceptado por la gente de Long Island en los conciertos. United Artists (Artistas Unidos) firmo con los Hassles en 1967, lanzando su álbum llamado como ellos mismos en noviembre de ese año. El sencillo del álbum fue un cover de Sam & Dave, llamado Youv’e Got Me Humming ( Me haces Tararear), que llego al lugar 112 de las listas de Billboard, lo malo fue que el álbum no impactó tanto a gente que no fuera de Long Island. En 1968 siguieron con el mas psicodélico Hour of the Wolf (La hora del Lobo). Los Hassles se separaron al año siguiente, cuando Billy Joel y Jon Small decidieron dejar al grupo para formar el dúo Attila, que era mucho mas pesado a comparación de lo que habían hecho anteriormente. Attila saco un álbum para Epic Records a principios de 1970, que fue desconocido y ahora es una vergüenza para Joel hoy en día. Billy Joel consiguió tener una increíblemente exitosa carrera como solista y Jon Small se volvió un productor de videos. En 1999 se lanzó The Best Of The Hassles: Youv’e Got Me Hummin’, compilando lo mejor de las grabaciones de este grupo, asi como cuatro canciones inéditas. Chris Woodstra, All Music Guide Traducción: Pablo Argüelles :idea: Original: Piano Man Miembros del Grupo: Harry Webber Howard Arthur Blauvelt Billy Joel John Edward Dizek Jonathan Small Richie McKenna Artistas Similares: Roxy The Vagrants The Rationals The Grass Roots The Box Tops Gary "U.S." Bonds Influenciados por: Sam & Dave The Rascals The Beatles [url=http://www.starpulse.com/music/The_Hassles/P26499/0/0/2/0/]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('151', '97e92481b5', 'Miami 2017', 'Hola a todos... Aqui les dejo un video que hice con ls fotos que tome en mi viaje a Nueva York (Excepto 3 de ellas jeje)...y de fondo mi cancion favorita: Miami 2017. Intente que las fotos fueran de acuerdo a la letra, que lo disfruten. Pablo :idea: http://www.youtube.com/watch?v=MDXLyczUMoE'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('152', '0c22ce7ff1', 'Guau', 'Genial, has conseguido darle ese aire de hablando-desde-el-futuro-del pasado, total simbiosis entre imágenes y música. Lo voy a poner en la web si te parece. [url=http://www.billyjoel.es/songs_in_the_attic.htm]MIAMI 2017 por Pablo Argüelles[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('157', '187ae3bf0b', '', '¡¡Hola hola!! En cuanto tenga un ratito os meto un enlace en mi blog, aunque no sé si podré poner el banner tal cual. Pero el enlace estará, claro que sí, y avisaré cuando lo tenga. El viaje a Amsterdam bien, lástima que tuviera que ser por la cena de empresa, porque fue realmente de vergüenza ajena... a ver si os lo cuento en el off topic, porque de verdad había gente que parecía que hacía años que no salía. Menos mal que mi chico llegó al día siguiente bien temprano y ya me dediqué a ver Amsterdam y no petardas viejunas y borrachas, jejeje. Me voy pasando todo lo que puedo, pero estos holandeses errantes me tienen hasta las orejas de mails por contestar y hoteles que atender... ¡¡Un besote para todos!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('155', '0a54ea0aea', 'Las Almas Perdidas', '[b:0a54ea0aea]Biografía[/b:0a54ea0aea] La banda originaria de Long Island, NY, (no se confunda con la banda del mismo nombre proveniente de Cleveland de los años 60’s, o con la homónima de Australia de la misma época) es recordada actualmente por qué Billy Joel fue parte de ella de 1964 a 1967. Antes de que se formara The Hassles (Las Molestias) en 1967, Joel toco el piano, canto, y contribuyo con canciones compuestas por el al repertorio de la banda por mas de tres años, durante los cuales The Lost Souls, de ser una banda de atracción local, llegaron a ganar concursos regionales de bandas; tocando en la feria nacional de Nueva York y consiguiendo un contracto con Mercury Records. La banda fue fundada con el nombre de The Echoes (Los Ecos) a principio de los 60’s por los guitarristas Jim Bosse y Kenny Recher, junto con el bajista Howie Blauvelt y una serie de cambiantes bateristas, entre los cuales se encontraban Ronnie Delacrose, Billy Zampino y Dave Baglioli, quien llego a unirse mas tarde. Finalmente un tecladista agregado, su nombre era Billy Joel. De acuerdo con las palabras que Jim Bosse aportó a la colección de Joel, My Lives en 2005, Los Hassles cambiaron su nombre en 1965, por algo más representativo: The Lost Souls. A finales de 1965, se estaban posicionando con un gran talento entre la gente que competía en concursos y haciendo llamativos conciertos en Long Island y en la ciudad de Nueva York, cuando su representante les aseguró un contrato con Mercury Records. En la “sabiduría infinita” de los productores de Mercury Records, ellos insistieron en que el grupo renunciara a su antigua nombre que les había dado fama en Long Island, y por un tiempo Las Almas Perdidas se volvieron The Commandos (Los Comandos). Aunque originalmente fue fundad en Chicago, la disquera Mercury Productions se había vuelto una experta en el talento neoyorquino, como Las Shangri-Las, The Left Banke y la banda conocida como Steam. Y cualquiera que fuese el nombre que estuvieran usando, Los Lost Souls o Commandos parecían estar hechos a la medida para encajar en medio de estas estables bandas. De acuerdo con Bosse, el grupo estaba a la mitad del camino y con un nuevo álbum por venir, cuando la disquera perdió el interés ganado en ellos, y pronto, de ser Los Commandos volvieron a ser The Lost Souls, y con ello vino una perdida de ánimos debido al falso comienzo. Sin embargo seguían tocando en Long Island, y fue mientras tocaban un show junto con otra banda “Los Hassles” , que a alguien se le ocurrió unir a las 2 y hacer un gran grupo. No funcionó, y decidieron que los Hassles siguieran por su cuenta. Los Hassles tomaron a dos integrantes de las “Almas Perdidas”, Billy Joel y Howie Blauvelt. Los Hassles como nueva banda grabaron 2 Lp’s bajo la firma de Liberty Records, pero nunca logararon saltar al estrellato nacional, a pesar de tantos seguidores en Long Island y un par de canciones buenas en el repertorio. Mientras, The Lost Souls pasaron a la Historia. Las grabaciones con Mercury Records no fueron escuchadas sino hasta el lanzamiento de My Lives (2005), el que incluía “Time and Time again” (tiempo y tiempo otra vez), de esas sesiones, y “My Journey’s End” (El final de mi viaje), otra canción del grupo grabada en 1965. Bruce Eder, All Music Guide Traducción: Pablo Argüelles :idea: Original: Piano Man [url=http://www.starpulse.com/music/The_Lost_Souls/P768645/0/0/2/0/]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('165', '893ba0927f', '', 'Ese libro lo tengo, pero en inglés. Fue mi primer libro de Billy. Está entretenido y si no recuerdo mal con letras grandes, je,je.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('166', 'aeb6bf610a', '', 'Echaré una ojeada cuando tenga un rato. Tengo una copia de este concierto en.....BETAMAX....supongo que las canciones serán las mismas que en el dvd. Ya os contaré.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('167', '32fa2a72d1', '', 'Piano Man: Pues si, tienes razon aunque me referia a que a comparacion de The Police no hubo nada de propaganda!!!.... Muchas gracias por lo del asenso jaja... Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('168', 'cea06ec024', '', 'Ayer a través del foro de Bruce conocí este foro, a través de pianoman. Me presento: Me llamo Joseba y vivo en Santurtzi, una ciudad de la costa vizcaína. Si Billy Joel me diese royalties por los discos que le he hecho vender mi cuenta corriente se llevaría un alegrón. :roll: El primer disco que compré fue el single Honesty y otro que no recuerdo de la ELO y mi primer LP 52 nd St, ambos calentitos, según salieron al mercado. Antes de ello conocía cosillas de The Stranger, que creo fue la primera canción suya que oí. En el año 80 estuvo en España pero no fui a ninguno de sus conciertos. Me quedé con las ganas. Lo positivo de ello fue que cuando Springsteen vino meses después, en abril del 81 me dije, esta vez si que no me lo pierdo. Y aquel concierto fue algo memorable..... Lamentablemente, Billy pasa de nosotros y tuve que hacer el esfuerzo de organizarme unas vacaciones en Mayo del 90. Recuerdo que llegué a Londres el mismo día que él y creo que marché de allí el mismo día. Entre el día 20 y el 30 de Mayo, le vi en cuatro ocasiones, pese a que salí de casa con una única entrada, pero viendo que podía conseguir entradas en el mismo Londres la cosa salía redonda. Mi proselitismo "joelero" acabó hace tiempo. Aquellos tiempos de recortar cosas, comprar discos, videos, etc, etc. Hace unos 12 años tuve mis escarceos en la red con alguna web dedicada a Billy (creo que era de un tal Orlowsky), pero posteriormente Bruce ha sido la diana de mis escarceos weberos. Un saludo a todos. Voy a seguir leyendo los posts y respondiendo a lo que se me ocurra.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('169', '4eeb321595', '', 'Noticias frescas, je,je. :D'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('170', '40caa64ce3', 'Billy Joel; Un día en la Universidad', 'Los hermanos Marx estuvieron en el circo, en la ópera, en las carreras.... Uno de los mejores videos que he visto en youtube se refiere a Billy con una peculiar versión del New Orleans de Gary US Bonds en la Universidad de Syracusa. Si no lo habeis visto, echad una ojeada... http://www.youtube.com/watch?v=I43Ktch_Z4k'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('171', '239a554084', 'Cachondo el tío', 'Jajajaja que cachondo con la toga XXDD :D :D Bienvenido!!!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('172', '83c4289e8a', '', 'Bienvenido!!! ya hemos hablado en el rincón de Bruce Springsteen.... :!: Si señor una presentación en toda regla!! al final te decidiste por el Boss, muy buena elección, sufrirás menos, jajajaja ......... no me extraña, tiene mucha mas discografía, y al menos el tío se lo curra mas y nos visita bastante a menudo (memorable el concierto del que hablas, se dice que fue uno de los mejores de su carrera) Joel ultimamente (los últimos 15 años nada mas y nada menos, que se dice pronto, uff que agonía jejeje)ha pasado de componer nueva música como de la M, si aquella que le hizo famoso, no hablamos de musicales de Broadway ni sonatas para piano ........ vamos que pasa de sus fans totalmente y nos tiene abandonados.... sobretodo a los Españoles, leches !:cry: Pues nada, bienvenido al Río de los Sueños y a disfrutar!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('143', 'd3d370bc23', '', 'Yo si queréis pongo un enlace en mi blog. No es gran cosa, pero algo es algo!! ¿Qué me decís?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('735', 'f1c3c8fca9', 'mi canción favorita', '¡Hola a todos! para mi sin duda "my life" :P'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('736', 'b2669614d7', '', '¡ Hola ! de todas las que he escuchado de el, estoy de acuerdo con la majoria que "Lullabye"es de las tristes, en conjunto tanto como la letra como la música. La encuentro triste pero a la vez muy tierna. :lol:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('737', '631b6837c5', 'La conexión Queen', 'Hace algún tiempo, me dí cuenta de que en un video-clip de Queen del año 80, parecía que quisieran hacer un homenaje, no sé si es subliminal o descarado. Mirarlo y comentaís. http://es.youtube.com/watch?v=hMenB9Ywh2Q *'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('146', '5fb62d1b7e', 'Famosas últimas palabras', 'Famosas últimas palabras (Famoust last words) Sentando aquí en Avalón, mirando la lluvia torrencial el verano vino y se fue, y todo el mundo ha vuelto a casa otra vez cerrando por final de temporada encontré el último de los recuerdos, Aún tengo el sabor de la tarta de boda y sigue siendo dulce aún después de todos estos años. Estos son las últimas palabras que tengo que decir Es por eso que me tomé mi tiempo para escribir, Quizás habrá otras palabras algún otro día Pero esto es la historia de mi vida. Encuentro bienestar en mi taza de café y en las manzanas a principios de otoño, Sueltan las amarras y hay manifestación en el Pasillo de la Legión, barrieron las banderolas tras el desfile del Día del Trabajo Nada más para un soñador ahora, sólo una serenata final. Y estos son las últimas palabras que tengo que decir Antes de que pase otra época con todas esas canciones que tendré que tocar, Pero esto es la historia de mi vida............ Y está tan claro aquí de pié donde estoy ¿No es esto para lo que vale la justicia? Sinceramente querido, me importa un comino. Pon las sillas sobre las mesas Tapa las lámparas con sábanas va mas despacio pero nunca se para ¿no es dulce después de todos estos años? Y estos son las últimas palabras tengo que decir Siempre es duro decir ¡adiós! Pero ahora es hora de guardar en su sitio este libro ¿No es esa la historia de mi vida? :( :( :( :( Traducción Piano Man'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('147', 'da4244ff10', 'Traducción de Cold Spring Harbor!!!', 'En la quinta edición de “ Que diablos paso con…”, Dan Marsiano echa un vistazo al álbum debut de Billy Joel. Quieres saber qué es lo que hace a Cold Spring Harbor tan bueno?. Introducción Bueno, que tenemos aquí?, Es la quinta, si, la quinta edición de “qué diablos paso con...” Soy su anfitrión, Dan Marsiano, mi vida está a punto de ser más dura. Está bien, todavía atengo tiempo de para escribir otra edición de “qué diablos paso con…” Esta semana hecho un vistazo al álbum debut de un artista, estoy hablando de Billy Joel. Atravez de su carrera de 30 años, Billy Joel ha sacado muchos discos. Para la edición de hoy nos vamos al pasado para analizar el primer álbum de Billy Joel, Cold Spring Harbor, espero que todos disfruten esta edición. La banda Billy Joel- Organ, Harmonica, Piano, Keyboard, Vocals Richard Bennett- Guitar Rhys Clark- Drums Sal De Troia-Guitars Don Evans-Guitar Emory Gordy-Bass Sneaky Pete Kleinow-Steel Guitar Larry Knechtel-Bass Joe Osbourn- Bass Denny Siewell- Drums Mike McGee- Drums on "Everybody Loves You Now" and "Turn Around" Al Campbell- Keyboards on "Turn Around" L.D. Dixon- Fender Rhodes piano on "Turn Around" Lista canciones 1. She\'s Got A Way (Ella tiene su estilo)-2:49 2. You Can Make Me Free (puedes hacerme libre)-2:56 3. Everybody Loves You Now( todo el mundo te ama ahora)-2:48 4. Why Jude Why(¿Por qué Judy, Por qué?)-2:56 5. Falling of the Rain-2:38 (La caida de la lluvia) 6. Turn Around- (vuélvete)3:04 7. You Look So Good To Me (Me pareces hermosa)-2:27 8. Tomorrow is Today (Mañana es hoy)-4:40 9. Nocturne- (Nocturno) 2:46 10. Got to Begin Again (Comienza otra vez)-2:49 La Historia Decidí hablar un poco sobre la carrera de Joel, antes de que sufran los efectos del Cold Spring Harbor. Billy Joel nació enel Bronx, NY, antes de que se mudara a Hicksville, NY. Durante su tiempo en hicksville sus padres lo motivaron a tomar clases de piano. Practico mucho y obtuvo su recompensa, ya que hizo que Joel persiguiera una carrera musical después de ver a los Beatles en televisión. Empezó tocando en lugares pequeños, pero hizo su lucha. Entraba y salía de bandas, unas de ellas: Attila y los Hassles, pero después de todo eligió una carrera como solista. Tuvo la oportunidad de de firmar un contrato con Familiy Productions, pero esto después se volvería un problema. Billy saco su primer álbum, CSP, en 1971. No tuvo éxito en las listas de popularidad, una de las razones fue que hubo un grande error con la grabación de este álbum. Este causo que las canciones fueran mas rápido y la voz de Joel sonara muy rápida y extraña. Joel dejo Familiy Productions después del lanzamiento de CSH, pero Family Productions siempre estará en las sombras de la carrera de Joel. A que me refiero?, Bueno, Billy firmo un contrato por diez discos con esta compañía, lo que significa que Family Productions obtuvo grandes lujos con los primeros álbumes de Joel, como The Stranger y Glass Houses. Joel trato de comprar este contrato durante un tiempo, pero no tuvo éxito. Cuando el contrato expiro, por alla de las épocas de Innocent Man (1983), el dueño de Familiy Productions, Artie Ripp, decidió intentar sacar más provecho de la discografía extensa de Joel. Entonces volvió a las grabaciones de CSH, arreglando y remasterizando el primer álbum de Billy Joel. Sin embargo por ser a la mitad de la década de los 80, Ripp, añadió mas batería y sintetizadores a las canciones. También corto la canción You Can Make me Free a la mitad. Esta versión tuvo un poco mas de éxito, ya que se coloco en el lugar 158 de las listas de Billboard. Por este análisis!!!!....lo que daría por tener la grabación original en CD. [img:da4244ff10]http://www.billyjoel.es/images/ColdSpringHarbor.jpg[/img:da4244ff10] El análisis. CSH, muestra a un Joel austero en su composiciones. Solo la voz y el piano en una gran parte del álbum. Joel mostraba un gran potencial, a la edad de 22. NO encontraras muchas canciones pop que te hagan bailar. Es lo que Billy es ahora, crudo, sensible, y básico. Es duro escuchar algo como Innocent Man o Nylon Curtain y luego irte a Cold Spring Harbor. También es sorprendente escuchar un álbum tan austero especialmente de Billy Joel. Si hubo un hit con este álbum, ese fue She’s got a way, con poca orquestación y batería, el resto del álbum es como la primera canción (shes got a way); lleno de alma en la voz y el piano. Si yo pudiera hacer una lista de canciones para un show de Billy, esta sería la primera canción que me gustaría que tocar, es una pequeña gran pieza. }You can make me free, suena como una canción que pudiera estar en otros álbumes mas nuevos, hay mas orquestación, incluido un solo de guitarra sorprendente junto con una voz muy parecida a la de Paul McCarthy (que no quiso decir Paul McCartney????) Joel lucha un poco con las notas altas pero consigue todo al final. Everybody loves you now, es muy rápida y demuestra el talento de Billy en el piano. La letra no es la mejor, pero la canción es pegajosa como el demonio, y una de las pocas de ese álbum que ahora es un éxito. De hecho fue tocada en el reciente tour del 2006, y es una de las canciones incluidas en el 12 gardens live. Why judy why, empieza con la voz de Joel y una guitarra acústica. No hay mucho piano, es una de las pocas que ha hecho así. Es preciosa, demuestra un aspecto en su música que luego es desechado en los siguientes álbumes: la guitarra. Si la escuchas una y otra vez tu melancolía sale a flote. Falling of the rain trae de vuelta el piano como una venganza, como si la vida de Joel dependiera de el instrumento. Suena como algo que los Beatles hubieran hecho en sus últimos años. Turn Around es como the ballad of Billy the kid del CSH. Eso es lo primero que pensé cuando la escuche por primera vez. Tiene ese sentimiento country del oeste, con la slide guitar. Los sintetizadores la arruinan un poco y hacen que parezca como de los 80’s, como desearía escuchar la original, sin los sintetizadores. You look so good to me es muy atrapadora, con la generosa ayuda del órgano Hammond. Tomorrow is Today es la más larga y una de sus mejores baladas. Su caracterizadora voz, brilla atravez de la canción, y es importante considerar que solo es él y su piano en la canción. La canción es genial, no hay más que decir, esta canción es lo más fino en baladas. CSH, junto con Streetlife Serenade,m son los únicos en tener canciones instrumentales en ellos. Nocturne es instrumental y a diferencia de Root Beer Rag está orientada a la música clásica, al estilo de Mozart. No hay locos solos de piano o notas complejas, pero por tres minutos Joel toca con convicción. Es una de mis canciones favoritas, además de Silhouette del primer álbum de Opeth. Got to begin again termina el álbum con una sombra, pero con esperanzas. “Aquí estoy al final del camino, adonde voy ahora?” es lo que describe el álbum en general. Pienso que el lugar de esta canción en el álbum (ultima), no es coincidencia, es una perfecta forma de acabarlo, con Joel tocando solo el piano y preguntándose su futuro, no solamente con su amor perdido, sino con su vida. El veredicto. Es bueno escribir algo diferente para la columna. Mientras enfoco mi vista en lo mas rock y metal, me gusta expandir mis horizontes y saltar a otros géneros. Billy Joel siempre ha sido uno de mis favoritos, pero nunca había escuchado CSH. Tengo que decir que me enamore del álbum. No es su mejor álbum, pero muestra otro lado de el, especialmente como cantautor. La mayoría de las canciones son básicas como su piano y su voz. Eso enciende la emoción a un nuevo nivel completamente, uno que Billy nunca alcanzo otra vez después de el comercialismo y el éxito de su sonido. Cold Spring Harbor Este álbum no fue reconocido justamente ni en el 71 ni en el 83. Demonios, Billy Joel difícilmente toca algo de este álbum en sus conciertos recientes. Deseo de verdad escuchar las versiones originales de este disco, pero por ahora me tendré que aguantar con la versión remasterizada de los 80’s. Después de haber escuchado este álbum muchas veces esta semana, hago mi juicio. Cold Spring Harbor Traducción por Pablo Argüelles :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('149', '4b2cfeadb4', 'Sólo eres humano (segunda brisa)', 'Sólo eres humano (segunda brisa) - You\'re Only Human (Second Wind) Estás pasando por una mala racha y últimamente no te sientes nada bien Te estás creando una mala reputación en tu vecindario Está bien, deacuerdo A veces sucede Solo eres humano, puedes cometer unos cuantos errores Más te vale creer que en tu vida habrá veces en las que te sentirás como un inutil así que creeme que aprenderás mas de tus experiencias que de todo aquello que te hayan enseñado en el colegio No te olvides de tu segunda oportunidad tarde o temprano tendrás aliento de nuevo No siempre es fácil vivir en este duro mundo Te darás de batacazos contra la pared una y otra vez [img:4b2cfeadb4]http://thumbnail.search.aolcdn.com/truveo/images/thumbnails/34/1F/341FCBB41A5D1A.jpg[/img:4b2cfeadb4] Está bien, deacuerdo Aunque se te rompa el corazón, solo eres humano tendrás que tratar con el sufrimiento Como un boxeador en una pelea por el título tendrás que subir al ring tu solo No eres el único que ha cometido errores pero es lo único que de verdad puedes llamar tuyo No te olvides de tu segundo aliento Espera en el rincón hasta que llegue esa brisa Ultimamente has estado tumbado en la cama porque creías que todo te iría mal a veces solo quieres dormirte y morir ese sentimiento puede ser muy fuerte pero aguanta Hasta que llegue el segundo aliento de siempre Probablemente no quieras consejos de otra persona pero no te los daría si no hubiera pasado por ello está bien, está bien a veces es lo que pasa solo somos humanos se supone que cometemos errores Pero he sobrevivido a todos esos largos días solitarios cuando parecía que no tenía ningún amigo Unicamente necesitaba un poco de fe para poder tomar aire y enfrentarme otra vez al mundo No te olvides de respirar por segunda vez tarde o temprano sentirás llegar ese ímpetu No te olvides de respirar por segunda vez tarde o temprano sentirás llegar ese ímpetu Traducción Piano Man'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('150', '749282cb68', 'La Lei', 'Muy buena la nota..............tengo ese CD remasterizado.........she\'s got a way...es mi predilecta..........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('173', '7bc5e458eb', '', 'En el 80 me suena qe estuvo en Barna y Madrid. Pero en mi cabeza está el recuerdo de que volvió posteriormente. Lo que no sé es si hizo concierto o únicamente apareció para gabar en la tele.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('174', '5336917c7e', '', 'LLevarse una sola canción sería la mejor forma de acabar odiándola. Pero bueno, una canción para llevarse podría ser Scenes. Es larga, alterna ritmo y melodía. Es una canción enorme. El piano de Billy y el saxo de Richie sacan chispas. Supongo que la historia de Brenda y Eddie sería la elegida.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('175', 'cd632f30ae', '', 'No tenía ni idea de que Liberty ya no estaba con Billy. Una lástima, es un batería enorme, una auténtica bestia. Alguien sabe qué pasó exactamente? Algún lnk fiable en castellano donde hablen de ello?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('177', 'a2218212de', '', 'He leido en la biografía de Mark Bego..............que en la época esta tan mala que Billy ha pasado los últimos años y que acabó ingresando en rehabilitación a causa de su excesiva aficción al alcohol... pues bien, en una ocasión Billy se durmió en el camerino a medio concierto de lo trompa que llevaba y Liberty dió una patada a la puerta para avisarlo de que saliera, discutieron se pelearon.... y desde entonces... no se hablan, Joel ha cogido al batería del musical de Movin out pasando de Libertty y el otro cabreado como una mona se ha revuelto, asi que Libertty se ha dedicado a sacar los trapos sucios de Billy y claro, este no se lo ha perdonado..... aún... porque con 30 años de compañerismo tiene que haber reconciliación algún día. ......hay muchos datos en esa Biografía, lo malo como siempre que está en Inglés, eso es lo que he podido sacar en claro.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('178', 'cf6de4b26b', '', 'Qué pregunta hombre... Para mi gusto estaría en un dilema entre Zanzibar y Movin`out. En realidad todo el álbum Calle 52'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('179', '059da35944', '', 'Hace unos tres años fue cuando tuvo los dos accidentes con el coche, casi seguidos. Y cuando se metió en la clínica para desintoxicarse. Un día me dio por leer los guiones de los últimos meses con los chistes que hacían en el show de Jay Lenno, acerca de Billy y eran una pasada. Se cebaban más con él que aquí con la Pantoja o el Jesulín. Así que no me extrañaría nada que Liberty le echase la bronca. A ver cómo acaban, pero en mi ignorancia me pondría a favor de de Vitto.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('180', '197aa20fdc', '', 'Zanzíbar es muy buena. Es una canción con algo especial. Mi album preferido es The Stranger, pero Zanzíbar podría haber estado incluída perfectamente.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('181', 'a257b13fd4', '', '[quote:a257b13fd4=\"eguzki\"]Hace unos tres años fue cuando tuvo los dos accidentes con el coche, casi seguidos. Y cuando se metió en la clínica para desintoxicarse. Un día me dio por leer los guiones de los últimos meses con los chistes que hacían en el show de Jay Lenno, acerca de Billy y eran una pasada. Se cebaban más con él que aquí con la Pantoja o el Jesulín. Así que no me extrañaría nada que Liberty le echase la bronca. A ver cómo acaban, pero en mi ignorancia me pondría a favor de de Vitto.[/quote:a257b13fd4] Si, e incluso habían chistes gráficos por la red escenificando a Billy cogiendo un coche y todo el mundo huyendo.... aún así sigue gozando de un excelente sentido del humor, en sus últimos conciertos le dice al público que necesita dinero para pagar las altas primas de sus seguros de coches y motos.... :lol: Yo la verdad me creo bastante a Libertty'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('186', '3aba356437', '15 años sin mas Billy Joel', 'Que opinais del tema .. desde aquellas últimas famosas palabras me refiero, desde el río de los sueños de 1993.............. caray hombre, entonces era un chavalín de tan solo 21 años ...¡que tiempos! ¿que le pasa a Joel? ¿No estais un pelín enojados con él?.. ¿creeis que el 2008 puede ser revelador en este aspecto y saque nuevo disco? ¿Pasa Billy de sus fans? ¿Se retirará definitivamente? (si cabe aún mas)'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('187', '0571869b1f', 'Navidades en Faluyah, opinión.', 'La encuentro buenísima aunque no la cante Billy, Cass Dillon en este caso, lo hace en un timbre de voz muy muy parecido al Joel de siempre. Me encanta la canción musicalmente hablando. ¿La habeis escuchado o no? http://www.youtube.com/watch?v=zbDPK3HUH4I http://www.mulberrystreetrecords.com/'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('188', 'ef45ac4962', '"Navidades en faluyah" de Jefferson Pepper', 'Otra canción de igual título de un tal Jefferson Pepper fue editada dos años atrás......... ignorada completamente por los Mas media, ahora reivindica sus derechos alzando la voz............. http://www.youtube.com/watch?v=Ca41rMyH56k Resulta bastante bastante curioso y sospechoso (al menos como lo plantean) aunque la canción no tiene nada que ver en la melodia, la letra tiene muchas verosimilitudes....................... :roll:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('226', 'd1820bae95', 'Bienvenidos al subforo de Elton John', 'El administrador de BillyJoel.es me ha encomendado ser el moderador de éste subforo, espero poder colaborar con todos los fans de Billy y Elton. La primera vez que escuche a Billy Joel fue a mediados de los 70", pero lo que más me impactó en esa época fue la visión de verle por la tele en blanco y negro e interpretando con el piano y la armónica, la canción que marcaría toda su carrera; Piano Man. Con Elton sucedió de otra manera, siendo yo un niño y volviendo del cole, cada dia me quedaba escuchando las canciones que sonaban por la Jukebox del bar de la esquina, en aquél momento recuerdo que sonaban "Venus" de Shoking Blue, Sex Machine de James Brown y algunas mas, entre ellas había un instrumental que se llamaba "Groovin" de un tal Mr.Bloe que no era gran cosa, pero sonába una armónica y un piano (con una base rítmica) la armónica hacía la melodía y el piano la intro y marcaba los acordes en todo el tema, pues, me encantaba, creo recordar que alguna vez yo mismo había puesto alguna moneda para escucharlo. Y diréis, y que tiene que ver con Elton, pues, tiene que ver, despues de muchos años descubrí que el músico de sesión que tocaba en aquél instrumental de Mr.Bloe, era y és Reginald K. Dwight Harris mas conocido como Sir. Elton John.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('189', '91e0bdb4cb', 'Algo le picó a Billy Joel', 'Algo le picó a Billy Joel. Salió de gira de nuevo, desmintiendo una vez más sus propias declaraciones de que ya se había retirado... Presentó hasta un sencillo... Y qué bueno, se le extraña... ¿Habrá disco próximo? [img:91e0bdb4cb]http://bp3.blogger.com/_s8Vrb6nyv74/R2AUK6wGGBI/AAAAAAAAA4I/NYRWLBL3UyA/s400/149740.jpg[/img:91e0bdb4cb] [url=http://duendecallejeroelemental.blogspot.com/2007/12/2007-msica-para-las-masas.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('190', '8446309cda', 'Money or love', 'Una de las últimas suyas que es inédita y la encuentro genial es "Money or love" del recopilatorio "My lives" (habla de la relación de Billy con el malogrado bajista Doug Stegmeyer que recordemos se suicidó) .. es un descarte del Storm Front .. y es francamente buena! alucinante diría yo.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('191', 'f6c92a9ef6', '\'The stranger\' el disco', '\'The stranger\', de Billy Joel DIEGO A. MANRIQUE (El Pais) 08/05/2003 Quinto elepé de Billy Joel en solitario, The stranger (1977) muestra a un cantante-compositor bicéfalo, que oscila entre el pop a lo Beatles y las melodías con hechura de estándares de Broadway. William Martin Joel, nacido el 9 de mayo de 1949 en un lugar de Long Island llamado Hicksville, es el paradigma del cantante del Nueva York proletario, con una biografía que parece obra de un guionista de Hollywood, con episodios tan cinematográficos como sus conciertos en la Unión Soviética y su matrimonio con la modelo Christie Brinkley. En sus años tiernos, Joel duda entre la música y el boxeo, una afición que le deja una nariz rota. Según su leyenda, ver a The Beatles en el De Sullivan show es una revelación. Entra en el grupo The Echoes, que cambian de nombre -The Emeralds, The Lost Souls- según varían las modas. Al mismo tiempo, muestra su adaptabilidad al trabajar como pianista de sesión a las órdenes de tiburones de la producción como George Shadow Morton y Artie Ripp. Como parte de The Hassles graba dos elepés a finales de los sesenta. Con Jon Small, el baterista del grupo, forma un dúo de rock duro bautizado como Attila (en la portada de su único disco ambos aparecen vestidos de hunos). El proyecto pincha inmediatamente y Joel, afectado por el fin de una relación amorosa, entra en una depresión que le lleva a un hospital psiquiátrico, la primera de sus variadas crisis. Recuperado, cae en una trampa típica del showbusiness: firma sin leer un contrato que convierte a Artie Ripp en su mánager de por vida (aunque luego rompe el vínculo, Ripp sigue cobrando). La desdicha le persigue: por un error, su primer disco en solitario, Cold Spring harbor (1971), se edita a velocidad equivocada. Humillado, se escapa con la esposa de Jon Small a Los Ángeles, donde se gana la vida tocando en un lounge bar como Bill Martin. De esa experiencia surge la canción Piano man, que dará título a su primer trabajo para Columbia Records, en 1973. [img:f6c92a9ef6]http://www.billyjoel.es/images/309213.jpg[/img:f6c92a9ef6] Piano man, inevitablemente convertida en pieza obligada de cualquier pianista que toque en un lugar donde se sirve alcohol, es el primer eslabón de una larga cadena de éxitos. Tras Streetlife serenade (1974), llega Turnstiles (1976), donde Joel olvida California y reclama Nueva York como territorio mítico personal. En The stranger, Joel acepta colaborar con Phil Ramone, un ingeniero de sonido que ha producido con fortuna discos en solitario de dos neoyorquinos arquetípicos, Paul Simon y Art Garfunkel, y que se transformará en su mano derecha hasta finales de los ochenta. Ramone tiene las ideas muy claras respecto a Joel: debe sumergir su pasión por Paul McCartney, Elton John o Cole Porter en un todo, simplificando los arreglos pero sin renunciar a la energía de un grupo de verdad, el que le acompaña en directo. Aparte de Joel tocando teclados, la banda de The stranger incluye a los guitarristas Hiram Bullock y Steve Khan, el bajista Doug Stegmeyer, el baterista Liberty DeVito y el multiinstrumentista Richie Cannata. Ellos se aplican con diligencia tanto al pop beatle de Movin\' out (Anthony\'s song) como a los baladones tipo Just the way you are. Aparte de las canciones amorosas, Joel cultiva la crónica de la vida neoyorquina -un Nueva York que, atención, no se limita a Manhattan- con el mismo ardor de propietario que Bruce Springsteen dedica a sus historias de Nueva Jersey. The stranger se mantiene durante años como el segundo disco más vendido de Columbia, sólo superado por Bridge over troubled water, de Simon & Garfunkel. Y Just the way you are se transforma en la más popular de las canciones de Billy Joel, con más de 200 versiones grabadas.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('192', 'ea3fa65c62', 'Bájate sus conciertos', 'Nueva web de JOEL de descargas de conciertos, Justo empiezan, aún no chuta ... pero por lo que entiendo parece que uno se podrá bajar todos los shows desde los inicios de su carrera hasta el día de hoy,..... un proyecto monumental para un esfuerzo titánico, desde aquí esperamos salga adelante. http://www.innocentman.us/'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('193', '920cd55717', 'Historia de marineros', 'Esta canción de Billy Joel se llama Downeaster Alexa y dice más de lo que parece. Está dedicada a los marineros que trabajan en la costa que va de Boston a Nueva York, concretamente en el Cape Cod (Cabo Bacalao) y Long Island (la Isla Larga) El "downeaster" es un tipo de barco de pesca pequeño. Y Billy Joel tiene un pequeño barco con ese nombre dedicado a su hija Alexa. Voy a bordo del Downeaster Alexa Navego a través del Block Island Sound He trazado el rumbo hacia el Vineyard Pero esta noche regreso a Nantucket Pusimos el diesel ayer en Montauk Y partimos esta mañana de la boya de Gardiner\'s Bay Como todos los lugareños tuve que vender mi casa Demasiado orgulloso para irme me dejé la piel Para poder ser dueño de mi Downeaster Alexa Y voy a donde el océano es profundo Hay gigantes ahí fuera en los cañones Y un buen capitán no se puede quedar dormido Tengo facturas que pagar e hijos que necesitan vestirse Sé que hay pescado ahí fuera aunque solo Dios sabe donde Dicen que esta agua ya no son lo que eran Pero tengo gente en tierra que dependen de mi Así que si ves mi Downeaster Alexa Y tu trabajas con la caña y el carrete Dile a mi esposa que estoy peleando con Atlantis Y todavía llevo el timón Ahora dirijo mi Downeaster Alexa A más y más millas de la costa cada año Desde que me cuentan que no puedo vender lubinas Y que no hay suerte con el pez espada por aquí Yo era un hombre de la bahía como padre lo fue antes Y ya no puedo ganarme la vida como tal No hay demasiado futuro para los hombres del mar like me Pero tampoco hay islas libres para isleños como yo Block Island Sound es el estrecho que hay entre Rhode Island y la pequeña isla de New Shoreham o Block Island, más o menos en el medio de la costa. El Vineyard, corresponde a Martha\'s Vineyard, la penúltima isla antes de llegar al Atlántico. Nantucket es la última gran isla del Cape Cod. Y el nombre de unas deliciosas galletas de chocolate por cierto. Montauk es el pueblo que hay al final de Long Island hacia el Este. Gardiner\'s Bay es la bahía que junto a la Gardiner\'s Island justo antes de Montauk en el extremo oriental de Long Island. [url=http://leonafricano.blogspot.com/2007/02/historia-de-marineros-con-billy-joel.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('194', '227329527b', '', 'Ja,ja. Qué casualidad! Estoy escuchando la canción justo ahora mismo.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('195', 'f1ac6dc65a', '', 'Para mi es sin ninguna duda el mejor disco de Billy. El Born to run de Billy, je,je. No me extraña que haya vendido tantas copias. Curiosamente, no me parece que sea un disco en el que las canciones funcionen cada una por sí solas. Varias de las canciones me parecen prescindibles y ni mucho menos son las mejores canciones de Billy. Pero forman un conjunto y una atmósfera especial. Si me dan a elegir cuatro canciones, me quedaría con Scenes, Vienna, She´s always a woman y the stranger.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('196', '668dcb27be', '', '[quote:668dcb27be=\"eguzki\"]Ja,ja. Qué casualidad! Estoy escuchando la canción justo ahora mismo.[/quote:668dcb27be] Te está entrando el gusanillo otra vez, eh !!! :wink: Por lo que sé, esta canción esta dedicada a un pescador colega de Billy que desapareció tras una tormenta y nunca mas se supo ..............'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('200', '9e5f1b451e', 'BJ en VH1 Classic Mañana Domingo 13', 'Ver: Classic 60 Minutos Episodio: Billy Joel Red: (VH1C) VH1 Classic Fecha: Domingo - 13 de enero de 2008 Hora: 8/7c PM Duración: 0:30 Acerca de: Clásico 60 Minutos: Billy Joel Descripción no disponible Acerca de: Clásico 60 Minutos VH1 Classic busca en los archivos de la galardonada CBS News emisión "60 minutos" de la nueva serie "Classic 60 Minutos", que analiza algunos de los grandes nombres de la música pop y rock. CBS News corresponsal Lara Logan será la conductora de la nueva serie de media hora con el pasado "60 minutos" ampliado con entrevistas nunca antes visto escenas y conversaciones. "Classic 60 Minutos" ofrecerá a los televidentes un íntimo resumen de la información de sus artistas favoritos con detalles en profundidad y las ideas, así como una actualización de Logan sobre las noticias más recientes acerca de estos iconos. Lara Logan es el principal corresponsal para el extranjero para CBS News y ha presentado informes para la CBS NOCHE NOTICIAS, 60 minutos, y la CBS Radio Network. También fue nombrada la Mujer del Año en la revista Glamour de 2007. Ahora, en su 40 ª temporada, el 60 MINUTOS produce en profundidad, entrevistas, informes de investigación pura y dura, en los perfiles de las personas en las noticias, y la función de los segmentos de cada semana en CBS. El programa ha ganado numerosos premios Emmy y es el de mayor éxito de difusión en la historia de la televisión. Hay que estar atento mañana (para quién tenga vía digital) 8)'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('198', '47090ca5e7', '', 'Shameless. No me preguntéis porqué, pero es mi canción favorita. Estaré unos días sin acceso a la red... pero como decía Chuache en Terminator... I\'ll be back!!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('199', '9821435e48', '', 'En mi trabajo, cara al público, tengo siempre música puesta. No la hago mucho caso normalmente. Los últimos meses no ha parado de sonar el magic de Bruce. Vuelta y vuelta, durante 7 u 8 horas al día. Estos días vuelvo a la dinámica anterior:poner cualquier tipo de canción de las que tengo en el pc, pero eligiéndolas una a una. Ayer, mayoritariamente, escuché a Billy y a Sinatra. Las canciones que suelo poner de Billy son esas que menos he escuchado, de los últimos discos, pero que cada día me gustan más. Canciones con cuentas pendientes: downeaster alexa, this is the time, all about soul, lullaby, and so it goes, temptation, baby grand...'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('651', '3379d8deb9', 'Como conociste a Billy Joel', 'En: "Pero ¿esto qué es?" Episodio 17 Noviembre 1989 (1989) Lo mío fue parecido a Billy cuando descubrió a los "fab four" en Ed Suvillan show. Estaba yo en una fría tarde en la casa de los pirineos, aburrido, cuando pongo TVE y en un programa de nombre "Pero esto que es" veo un tío todo de negro que no se mueve un ápice ni baila, con las manos en los teclados, de pie como una majestuosa estatua vestida de negro Armani oculta sus ojos tras unas Ray Ban negras... Un ritmo que te abduce completamente y una letra alucinante que le va como un guante a la melodía y como pronunciaba el tío .. lo recuerdo como si fuera ayer .. Dylannnnnn, Berlinnnnnnn, California basssssssseball ,¡¡wow wow!!.. se trataba nada mas y mada menos de "We didn\'t star the fire" .... tras su actuación las nenas del público se abalanzaban como locas encima de él... y pensé, leches, este tío no es nuevo!!.. desde entonces el dulce veneno de Joel corre por mis venas hasta el día de hoy que no me ha abandonado... nunca había sido fan de nadie y ya ves. http://www.imdb.com/title/tt0673085/ Como conseguir esta grabación? Mas tarde me fui a una conocida tienda de discos cuyo nombre no recuerdo en la calle Balmes, decidido a comprarme el LP, lo cojo, digo que me lo "prueben" (que tiempos) me pongo los casos, y escucho una voz maravillosa y una melodia que a media canción ya no puedo retener la emocíon y sin acabar si quiera de escucharla, digo lleno de alegría,.. me lo llevo!!! me lo llevo !! .. llego a casa y miro bien los temas, y digo, aquí no está "we didn star the fire" ... Caray, es que era el Nylon Curtain! (Allentown), -ya me extrañaba a mi porque en la tv no salía con barba!.-pero que bueno J***r, pero que pasada... y ya luego me compré el Storm Front y así sucesivamente ... ¿Y tu? ¿como lo conociste?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('652', 'd0daeed8c4', 'LONG LONG TIME', 'Mi primer contacto con BJ se remonta al año 1977/78...en esa ocasión comencé a escuchar en las radios y en los bailes estudiantiles una canción que me hacia estremecer.........por su melodia incomparable y su armonia envolvente....a todo esto tb poseia una guitarra acústica rítmica de fondo que la hacia mas alcanzable (desde mi punto de vista como guitarrista) .......no era otra que "Just the way you are".......luego vino a mis oidos "Movin Out".....recuerdo haber ido a la disqueria y en ese entonces compré el álbum "the stranger" en formato de cassette.........que puedo decirles cuando escuche el resto de las canciones......sencillamente fue furtiva.....y perenne mi adicción por BJ........Lugo vino 52 street,,.......y ya fue demasiado tarde como para despegarme de BJ.......total adicción..........'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('659', 'ea87a9dc68', 'Re: nueva admiradora', '[quote:ea87a9dc68=\"resor\"]¡Hola! a todos, soy una nueva admiradora de billy Joel , desde que una amiga mia me aficiono a sus canciones , sobre todo cuando las tradujo, la verdad , es un tio muy enrrollado, y su mensaje es muy de actualidad, por no de decir de siempre. Ahora mensaje directo para billy Joel, o a tus asesores, porque no vienes para España y les das un gusto a tus fans. y también a esta web de fans hispanos ,[list:ea87a9dc68][/list:u:ea87a9dc68][quote:ea87a9dc68][color=violet:ea87a9dc68][/color:ea87a9dc68][/quote:ea87a9dc68][/quote:ea87a9dc68] Bienvenida al Rio de Los Sueños !!! Tienes toda la razón Resor, la música y las letras de Billy són atemporales. El tema de que venga a España es bastante más complicado, ya que incluso no depende de él mismo, pues són los promotores de conciertos los que deciden a quién traen a quién no. De todas maneras algunos tenemos la esperanza de que por lo menos esté de gira por Europa éste año o el próximo como muy tarde. Como he visto que eres de BCN, en el caso de que hiciera algún concierto relativamente cerca, se podría organizar un viaje para verlo antes de que se retire definitivamente. *'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('654', 'fff992282b', 'Re: Travelin\' Prayer - Rezo de viaje', '[quote:fff992282b=\"Panterita\"] [b:fff992282b]Di Señor, si esta canción suena extraña Es simplemente porque no sé cómo rezar Así que no querrías darle tranquilidad Y si encontraras el momento No querrías decirle que la echo de menos cada día[/quote:fff992282b][/b:fff992282b] Gracias Panterita por la traducción, es una letra preciosa, muestra a un Billy joven e inquieto y muy enamorado. Me encanta la última estrofa. *'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('664', '85b3a2de50', 'al menos......', 'Digo....al menos en mi caso no poseo esas grabaciones en dvd...asi que algo es algo'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('665', '1dbac9540f', '', 'Si no son temas nuevos no me lo compro. Ni siquiera tengo todos los cds originales, como para gastarme la pasta en esto... Desde luego se les debería caer la cara de vergüenza por ir sacando estas chorraditas, al estilo "My lives". Joel ya tiene bastante pasta como para vivir tranquilo el resto de su vida y ellos, que se apunten al carro de las nuevas tecnologías, que les irá mejor. Vaya tomadura de pelo. Dixit. PD: Vivan el emule, el Azureus, el Ares, el Elephant... ¬¬'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('666', 'e1ef742eb4', '', '[quote:e1ef742eb4=\"Leyna\"]Si no son temas nuevos no me lo compro. Ni siquiera tengo todos los cds originales, como para gastarme la pasta en esto... Desde luego se les debería caer la cara de vergüenza por ir sacando estas chorraditas, al estilo "My lives". Joel ya tiene bastante pasta como para vivir tranquilo el resto de su vida y ellos, que se apunten al carro de las nuevas tecnologías, que les irá mejor. Vaya tomadura de pelo. Dixit. PD: Vivan el emule, el Azureus, el Ares, el Elephant... ¬¬[/quote:e1ef742eb4] Tienes razón, todo ese material en su mayoría está en Emule. De todos modos en "My lives" si había algunas joyitas, demos, con otros grupos (como The Lost souls) y alguna inédita, aún así dejó mucho que desear porque nos colaron una parte de las mismas grandes canciones (Otra vez) y dejaron algunas otras interesantes fuera, en el tintero a la espera de no sé qué. Podría haber sido el "Tracks" (Springsteen) definitivo de Billy Joel pero se quedó en el intento y creo en ventas no fue muy bien. Si hiciera un listado de las reediciones, remasterizaciones, Grandes canciones, recopilatorios y el mismo material reciclado que nos venden una y otra vez, sacaría al menos mas de 25... que se puede decir de todo esto? pues que Billy es un gran hombre de negocios.:mrgreen: Pero bueno, para consolarnos y por ser algo mas optimistas, diremos que ya tenemos publicación oficial de todo ese material "perdido", con todas las ventajas que eso conlleva, mejoras en lo que se refiere a calidad de sonido e imagen, artwork.... además de presentárnoslo todo juntito y recogidito en un atractivo "box set" de "Luxe". :D'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('655', 'c067187666', 'Versiones Amateurs', 'Versiones del She\'s got a way She\'s got a way versión Karaoke? http://youtube.com/watch?v=gyG4SB0jKqU&feature=related Mi profesor de Biología :mrgreen: http://youtube.com/watch?v=hfgLuGUGZfw&feature=related El compañero de clase: http://youtube.com/watch?v=v-RSpynJO1s&feature=related Esta última chica, la mejor http://youtube.com/watch?v=Smh4GhAE8io&feature=related La chica de rojo parece que se ha enamorado http://youtube.com/watch?v=pZY4JcQx1t8&feature=related'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('656', '0ca7892094', 'The Stranger 30 Aniversario', 'Billy Joel hará su primera aparición en el show de [b:0ca7892094][url=http://www2.oprah.com/tows/pastshows/200803/tows_past_20080324.jhtml?promocode=HP51]Oprah Winfrey[/url][/b:0ca7892094] este lunes 24 de marzo próximo para promocionar la nueva edición, The Stranger 30 aniversario . La publicación contará con canciones clásicas como "Only the good die young", "Just The Way You Are", "She\'s Always a Woman " y muchas más. (4 discos) Contenido: Limited Edition 30th Anniversary Deluxe Edition - 4 Discs (3 CDs and 1 DVD) CD of "The Stranger" remastered by the original album producer, Phil Ramone CD of "Live At Carnegie Hall 1977"- previously unreleased - On June 3, 1977, one month prior to the recording of The Stranger album, Billy and his band performed at the historical Carnegie Hall. Bonus CD of a 2nd live show circa "The Stranger\' tour Bonus DVD of BBC\'s Old Grey Whistle Test - approx 60 minutes PLUS 2 live promotional videos 48 Page Booklet with liner notes by Rolling Stone Editor, David Fricke and un-seen photos from the original album photo shoot The Stranger CD Tracklist: Movin\' Out (Anthony\'s Song) The Stranger Just The Way You Are Scenes From An Italian Restaurant Vienna Only the Good Die Young She\'s Always A Woman Get It Right The First Time Everybody Has Dream "Live At Carnegie Hall 1977" CD On June 3, 1977, one month prior to the recording of The Stranger album, Billy and his band performed at the historical Carnegie Hall in NYC. This show has been brilliantly restored to be released for the first time as part of the 30th Anniversary edtion of The Stranger "The Old Grey Whistle Test" DVD Billy Joel made a special appearance on BBC2 television music show "The Old Grey Whistle Test" in early 1978 during the promotion for The Stranger album. The show is approximately 60 minutes and aired only once on BBC2. The Old Grey Whistle Test was an influential BBC2 television music show that ran from September 1971 to 1987. The Old Grey Whistle Test was also the template for what later became MTV. "Miami 2017" "Movin\' Out (Anthony\'s Song)" "New York State Of Mind" "The Entertainer" "She\'s Always A Woman" "Root Beer Rag" "Just The Way You Are" "Souvenir" "Ain\'t No Crime" "Only The Good Die Young" PLUS Live Promotional videos: "The Stranger" "Just The Way You Are" Los fans lo pueden reservar ya en: [b:0ca7892094][url=http://www.amazon.com/gp/product/B00168PTG0?&camp=212361&creative=383957&linkCode=waf&tag=biljoespafan-20]Amazon[/url] [/b:0ca7892094] [img:0ca7892094]http://ecx.images-amazon.com/images/I/31epFFxJhhL._SS500_.jpg[/img:0ca7892094] Yo ya lo he hecho. :mrgreen:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('657', '4cb8d406ff', 'Nueva admiradora', '¡Hola! a todos, soy una nueva admiradora de billy Joel , desde que una amiga mia me aficiono a sus canciones , sobre todo cuando las tradujo, la verdad , es un tio muy enrrollado, y su mensaje es muy de actualidad, por no de decir de siempre. Ahora mensaje directo para billy Joel, o a tus asesores, porque no vienes para España y les das un gusto a tus fans. y también a esta web de fans hispanos ,[list:4cb8d406ff][/list:u:4cb8d406ff][quote:4cb8d406ff][color=violet:4cb8d406ff][/color:4cb8d406ff][/quote:4cb8d406ff]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('658', '897038d408', '¿Puedo colocar imágenes en los mensajes?', 'Esto ya lo he posteado con anterioridad en preguntas frecuentes, pero lo abrevio aquí a ver si queda mas claro. Las imágenes pueden ser adheridas en tus mensajes. Sin embargo, de momento no se cuenta con una herramienta que permita subir imágenes al foro. Por ende, debes hacer un enlace URL a una imagen que quieres que se muestre, por ej. http://www.unsitio.com/una_imagen.gif. SE HACE PROPIEDADES CON EL BOTÓN DERECHO DEL RATÓN SOBRE LA IMAGEN que se desee copiar en el foro, SE COPIA LA RUTA Y LUEGO SE PEGA ENTRE ESTAS etiquetas [img][/img] Ejemplo: [img]http://www.copiaestarutadeunsitio.com/una_imagen.gif.[img] Si quereis subir fotos de vuestro pc, subirlas aquí y seguis el mismo procedimiento anterior: http://subefotos.com/ La imagen debería verse. No tiene mas complicación que eso.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('650', '2ab23fbd36', 'Travelin\' Prayer - Rezo de viaje', 'Eh Señor, echa un vistazo por ahí esta noche Y encuentra dónde va a estar mi chica Eh Señor, podrías estar pendiente de ella esta noche Porque está lejos al otro lado del mar Eh Señor, podrías estar pendiente de ella esta noche Y asegurarte de que va a estar bien Y que las cosas van a ir bien conmigo Eh Señor, podrías estar pendiente de ella esta noche Y asegurarte de que todos sus sueños van a ser dulces Eh Señor, podrías guiarla a través de los caminos Y hacerlos suaves para sus pies Eh Señor, podrías estar pendiente de ella esta noche Y asegurarte de que estará bien Hasta que esté en casa aquí conmigo Eh Señor, podrías estar pendiente de ella esta noche SI está durmiendo bajo el cielo Eh Señor, asegúrate de que el suelo en el que duerme Está siempre cálido y seco Eh no le des demasiada lluvia E intenta mantenerla lejos de la pena Porque mi chica odia llorar Eh Señor, no querrías estar pendiente de ella esta noche Porque se hace duro a través del camino Di Señor, si esta canción suena extraña Es simplemente porque no sé cómo rezar Así que no querrías darle tranquilidad Y si encontraras el momento No querrías decirle que la echo de menos cada día http://www.youtube.com/watch?v=aJyAdvcEcqk'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('203', '518c0c3c10', 'La mejor actuación en vivo de William...', 'En mi modesta opinión, la del Teatro BBC en 1978. Simplemente soberbio.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('204', '05e631e5ad', 'Mejor álbum', 'Mis cinco favoritos: 52 street River of dreams Piano man The nylon curtain Stranger'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('205', '2e2fafcf45', 'si', 'Es el album mas representativo de joel....sin duda.....me emocionará por siempre.........lo llevo en mi corazón y ordenaré a mis hijos que lo introduzcan en mi féretro.-'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('206', 'ccc498e2e5', '5', 'alli van mis 5 The Stranger Storm Front River of dreams Turnstiles 12 garden'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('207', '81302a815d', 'Billy Joel en Frankfurt, Alemania.', '[url=http://christian.gerhardts-online.de/billyjoel_ffm_2006/index.htm]VIDEOS AQUI[/url] [img:81302a815d]http://www.billyjoel.es/images/billy.jpg[/img:81302a815d] Foto 12 Gardens live'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('208', '66e83a9850', 'Storm Front', 'Storm Front The Nylon Curtain 52nd Street The Stranger Songs in the Attic'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('209', 'b3447b079e', '', '-From Long Island 1982 [img:b3447b079e]http://www.members.aol.com/ONAJURNY/BILLY83JOEL.JPG[/img:b3447b079e] -From a Piano man to an innocent man Wembley Arena 06/06/84 [img:b3447b079e]http://www.mo-no-tone.com/goods_image/A462_I1.jpg[/img:b3447b079e] [img:b3447b079e]http://www.mo-no-tone.com/goods_image/A462_I2.jpg[/img:b3447b079e] [img:b3447b079e]http://www.mo-no-tone.com/goods_image/A462_I3.jpg[/img:b3447b079e]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('210', 'ead45fdd63', 'LA casa de Katie y Joel', 'Quién pudiera :D VENDEDOR: Billy Joel y Katie Lee UBICACIÓN: Centro Island Road, Oyster Bay, NY PRECIO: $ 32500000 TAMAÑO: 14,6 hectáreas, 14273 pies cuadrados DESCRIPCIÓN: Magnífico mar Estate 1550 con el pie al mar y vistas panorámicas de 180 grados. Pieza única! 14000 pies cuadrados, casa principal y tres dormitorios, dos y medio baños, chalet de huéspedes y tres dormitorios, tres baños casa en la playa. Piscinas cubiertas y al aire libre, pista de tenis, bolera. Increíble comodidades y características arquitectónicas de todo. Impresionante! [img:ead45fdd63]http://bp2.blogger.com/_61djkGwfEZo/RhqiWUAFTaI/AAAAAAAAAoM/NtPuwYQ1-Ew/s1600/Joel_PICS.jpg[/img:ead45fdd63] [url=http://realestalker.blogspot.com/2007/04/billy-joel-price-chops-long-island.html]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('211', '587beab3f9', 'Honorable William Martin', '[img:587beab3f9]http://www.whoi.edu/cms/images/mediarelations/2005/1/RBG2_75dpi_4477.jpg[/img:587beab3f9] Woods Hole Oceanographic Institution (WHOI) Director Robert B. Gagosian se adjudicó honorario de Doctor de Ciencias grado 21 de mayo de 2000, en ceremonias en Southampton College de la Universidad de Long Island en Southampton, NY. El honorario de Doctor en Ciencias de grado es el director del primer doctorado honoris causa y fue uno de los cuatro que se presentan durante las ceremonias de la tarde, parte de la 34 ª apertura de Southampton College. Otros grado honorífico beneficiarios son nacidos en Long Island cantautor y artista Billy Joel, quien recibió un Doctorado Honorario de Música; artista distinguido y retratista Chuck Close, que recibió un Doctor en Bellas Artes, y Frederick E. Hoxie, considerado por muchos Preeminente de la nación estudioso de la historia de los nativos de América y uno de los principales defensor de los derechos de los pueblos indígenas, que recibió un doctor en letras. David J. Steinberg, Presidente de la Universidad de Long Island; Robert FX Sillerman, Canciller de la Universidad de Southampton y tutores de la Universidad de Long Island; Roger Tilles, Presidente de la Junta de Síndicos de la Universidad de Long Island, y Thomas W. Haresign, profesor de Biología en Southampton College de la Universidad de Long Island, presentó el grado de los receptores encapuchamiento . Billy Joel dio un discurso de 10 minutos después de la adjudicación de títulos honoríficos. [img:587beab3f9]http://www.whoi.edu/cms/images/mediarelations/2005/1/RBG_award_72dpi_4529.jpg[/img:587beab3f9] Profesor Haresign presentó el WHOI Director por su grado. Southampton College Provost Timothy H. Bishop, en la introducción previa a la concesión de la medida, señaló que "Robert Gagosian ... Es una rara líder que se mueve con facilidad de la molecular a la global. Se ha fomentado el reconocimiento del papel crucial que desempeñan los océanos en el clima y la meteorología, así como de las amenazas que enfrenta nuestro mar ... Se ha alentado a algunos de nuestros propios estudiantes en la ciencia del medio ambiente marino y, el 35 de los cuales ya han ganado las becas Fulbright. Dr Gagosian es un distinguido oceanógrafo químico, un mentor de los jóvenes dotados de investigación científicos, un experto traductor de la investigación científica en las recomendaciones de política pública, y un apasionado defensor de la educación de los niños en edad escolar y los adultos acerca de los océanos. " "Buen amigo de la universidad y sus estudiantes, que han contribuido a vincular nuestros mejores y más brillantes de la nación por encima de todo servicio de la investigación marina", dijo el profesor Haresign lectura en el grado de citas. "Como científico, que ha planteado nuestra conciencia de la interminablemente fascinante interfaces entre los océanos, la atmósfera y la tierra. A la cabeza de Woods Hole, está dirigiendo el estudio de las superficies de los océanos con ATLANTIS, y se le pruebe los mares\' ocultas profundidades con ALVIN. Le damos las gracias por enseñarnos que nuestra preciosa océanos no pueden ser tratados como componentes aislados de este frágil planeta. " Long Island University es la octava nación independiente más grande universidad, con casi 30000 estudiantes, 700 profesores a tiempo completo y un presupuesto anual de funcionamiento de 308 millones de dólares. Su campus residencial se encuentra en el centro de Brooklyn, en el CW Post suburbanas instalaciones en Brookville, y Southampton College, en la playa de Southampton comunidad de Long Island. El multi-campus de la universidad ofrece una variedad de grado de pre y posgrado de los programas regionales de los campus y tiene principalmente ofreciendo maestrías en los condados de Westchester y Rockland y en Brentwood, en Long Island. También funciona de extensión de sitios web en una serie de empresas de EE.UU. y en la Academia Militar de Estados Unidos en West Point. El Director WHOI se adjudicará un segundo grado honorífico Junio 17 durante ceremonias de iniciación en la Northeastern University en Boston, MA. Southampton College es nacionalmente reconocido para los programas de marina y las ciencias del medio ambiente, bellas artes, el Programa Mundial de Amigos de la educación global para el cambio social, y el programa SEAmester bordo de los buques de altura. [url=http://www.whoi.edu/page.do?pid=7580&tid=282&cid=977]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('212', 'a35c01e0f1', 'Otra', '[img:a35c01e0f1]http://www.billboard.com/billboard/photos/daily/2005/book_covers/joel_billy_l.gif[/img:a35c01e0f1]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('231', '116d4cfca4', '', 'Te cuento....soy ultrarefan de BJ........tuve la fortuna de poder asistir a un Face to Face en Las Vegas.......muy bueno lo de Elton.......Lo do Billy fue supremo.......pero debo reconocer que jamás he visto mejor DVD que el de EJ.....One night only...creo que es.......lo tengo lejos en la planta baja.....jaja.......increible show....increible grabación y sonido'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('232', '0c670d1550', '', 'Hola exequi, yo he visto a los dos, pero por separado, y creo que mal que me pese, vá a ser muy difícil que pueda verlos a los dos juntos en un escenario, que suerte haberlos visto, en nada menos que, en Las Vegas. Sí, tienes razón al decir que el dvd "One night only" es increible, yo también considero que es uno de los últimos conciertos que ha hecho Elton, grabado con una altísima calidad de sonido e imagen.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('233', '71eae114da', 'Billy Joel visitará esta Web', 'Señoras y señores, en primicia para todos ustedes; Billy Joel nos visitará por el mes de Febrero que es cuando mi contacto lo verá en Colorado en concierto y me ha prometido una vez acabado el show, le hablará de esta web además de decirle que en España lo queremos mucho y nos tiene abandonados.... !!!! Tengo muchas garantías de que esto se haga realidad, porque este contacto es un gran amigo de Billy (y gran persona) ... sorpresa, sorpresa!. :wink: Así que habrá que vestirse de etiqueta Opinión a los foreros Que versión os gusta mas, ¿la antigua o la nueva? Gracias por vuestra colaboración'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('214', '0761f9b1ce', '', 'The Stranger 52nd Street Glass Houses Turnstiles Piano Man'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('215', '91707f1df1', 'Versiones "joeleras" en castellano', 'Supongo que son raras las versiones en castellano. De todos es conocida la escrita por Victor Manuel, e interpretada por su mujer, de cuyo nombre no me quiero acordar. Aparte de esa, la única versión en castellano que conozco es la hecha por Amaya, ex solista de Mocedades. Se llama Cantante y es el "The entertainer". La vi una vez por TVE, hace muchos años. Buceando por Internet, he visto que el "traductor" de dicha canción es....Sabina!. Alguien conoce alguna rareza más como ésta?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('216', '1d93c0c3ee', 'No', 'Si, lo sabía yo tb... lo que la canción no la he escuchado en la versión esta Españolizada ... curioso lo de Sabina... si la pudieras colgar estaría curioso. No conozco nada mas que se haya hecho, aparte de la mencionada Ana Belén...(aún hay catetos que se piensan que es de ella o incluso en el peor de los casos de Chenoa)............. a veces dudo incluso de que haya fans de Billy Joel en España........ parece que ha cundido mas Elton John por estos lares.... De hecho alguien me contó que en los pocos conciertos organizados en la península (Joel) no llenó e incluso llegaron a suspender alguno .. no puedo corroborar 100% esto, pero no se entiende que venga todo el mundo aquí (el Boss, Elton John, The Police, Freddy Mércury ...etc etc )y Joel pase olimpicamente, será tal vez que no guarda muy buen recuerdo de estas tierras?'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('217', '4d0e8c87d5', '', 'La he puesto a bajar del e-mule, aunque me suelen tardar bastante en bajar las cosas. Pero en este link se puede escuchar la canción unos segundillos y ver la letra. http://www.amayauranga.com/Letras/C/Cantante/Cantante.htm'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('218', '57e71030d0', '', 'Jajaja, suena mucho a Mocedades, pero curioso si no mas. Gracias por el enlace. :)'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('219', 'd6319b96a3', 'Argentina', 'En argentina un cantante melódico llamado Guillermo Guido hace una versión de "el Pianista"........y una cantante de amplia trayectoria y reputación en América latina...realiza una versión de The entreteiner...........ah...y modestamente......yo grabé una versión propia del Rio de los Sueños en mi portaestudio......eso si toque todos los instrumentos...pero el piano lo reemplaze por una guitarra......'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('220', 'b4de6fad34', '', 'Bienvenido Eguzki!! De momento creo que soy la única fémina del foro y como tal, te doy la bienvenida, valiente guerrero sioux norteño!! (Ala, como se me ha ido la pinza). Pues eso, que bienvenidos a todos los que no haya saludado (Pablo, etc...) y que vamos a ver si poco a poco formamos una gran familia, y aunque no se hable incluso de Billy Joel, pasemos un rato divertido :)'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('221', 'fd6bf5e2e4', 'Libros', '¡¡Hola chicos!! Como no sólo de música vive el ser humano, he pensado que sería una buena idea hacer un post con las recomendaciones literarias que se nos vayan ocurriendo. Concretamente yo soy una lectora voraz, y he creído que a lo mejor a alguno de vosotros también le gusta leer. Voy a empezar yo, poniendo una pequeña sinopsis del libro que estoy leyendo actualmente. Es el segundo tomo de una saga de fantasía (es curioso porque a mí el género fantástico no me gusta, pero esta saga en concreto me está apasionando) y se llama [i:fd6bf5e2e4][b:fd6bf5e2e4]Canción de Hielo y Fuego. Tomo dos: Choque de reyes. [/b:fd6bf5e2e4][/i:fd6bf5e2e4] Os dejo una pequeña sinopsis sacada de la wikipedia: [i:fd6bf5e2e4]La saga de Canción de Hielo y Fuego transcurre principalmente en los Siete Reinos de Poniente, con una antigua historia que se remonta 12000 años atrás. La historia cuenta cómo siete reinos acabaron dominando este continente, y después cómo estas naciones fueron unificadas por Aegon el Conquistador. Doscientos ochenta y tres años después de la conquista de Aegon, los Targaryen fueron derrocados por Robert Baratheon en una guerra civil. Robert Baratheon accedió al Trono de Hierro tras vencer en singular combate a Raeghar de la Casa Tagaryen y gracias al respaldo de su amigo Lord Eddard Stark, de su padre adoptivo Lord Jon Arryn y de la traición al rey Targaryen. Las novelas, que comienzan quince años después, siguen las consecuencias de este evento a través de tres arcos argumentales principales...[/i:fd6bf5e2e4] ... de los cuales no os voy a contar nada más, por si alguno de vosotros se anima. El primer tomo está en edición de bolsillo, pero los otros 4 (de momento hay 4 publicados de una saga de 7) sólo están en edición rústica y son unas 1100 páginas por libro (entretiene un rato :wink: ). ¿Alguien más se anima? :?:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('222', '7047f60382', 'Jim Bosse', 'La verdadera identidad de JAMES es [size=18:7047f60382][b:7047f60382][url=http://www.jimbosse.com/]JIM BOSSE[/url][/b:7047f60382][/size:7047f60382] [img:7047f60382]http://www.jimbosse.com/My_Homepage_Files/IMG_15.jpg[/img:7047f60382] Este CD presenta canciones populares de la leyenda del Rock Billy Joel, bellamente organizado y realizado en la guitarra clásica de Jim Bosse que Ex-guitarrista de "The lost souls" uno de los primeros grupos de Joel allá por los años 60. En la década del 70, Billy Joel escribió una canción llamada "James", que da consejo a un amigo cercano, que parecía tomar su propio camino. Joel formó una nueva banda y su guitarrista principal, James, decidió proseguir su educación. Veinticinco años más tarde, estos dos amigos se reunieron después de que Joel tocara en Denver, Colorado. Inspirado en la reunión, recordando viejos tiempos, el guitarrista Jim Bosse decidió organizar esta hermosa canción sobre su juventud en solitario para guitarra clásica. tocó con Joel seis meses más tarde en la casa de Billy en Long Island. A Joel le gustaba el acuerdo y pidió que Bosse reunira una colección de canciones, con arreglos de esta forma para guitarra clásica. El libro de solo, dúo, trío y cuarteto de guitarra arreglos ha sido publicado por Hal Leonard Corp, y está disponible en tiendas de música de Estados Unidos. (La Colección Billy Joel / guitarra clásica ISBN # 9-7935-8992-4) Este CD se presenta la colección entera con arreglista Jim Bosse ejecución de todos los solos de todas las partes y para el conjunto de las selecciones. Billy Joel escribió un prólogo para la reunión que incluye la siguiente cita: "Mi antiguo amigo, Jim Bosse, que es un talentoso músico, ha reunico y arreglado varias de mis piezas para guitarra clásica. Los arreglos de Jim son a la vez sinceros y elaborados ingeniosamente. Esperamos que disfrute de ellos." [img:7047f60382]http://www.jimbosse.com/My_Homepage_Files/IMG_34.jpg[/img:7047f60382] Después de muchos años formando parte de bandas de rock, Jim Bosse se interesó y declinó gradualmente por la música clásica. Jim ha estudiado en privado con la mayoría de los mejores guitarristas de Colorado, incluidos Charles Wolzein, David Honig, Ricardo Iznaola, Masa Ito, Alex y Komodore. Ha participado en más de 30 clases magistrales con muchos de los más grandes guitarristas del mundo. En 1986, fundó el sur de Colorado Sociedad de la guitarra clásica y sirvió como su primer presidente. Jim Adams enseña guitarra en State College en Alamosa desde 1995-1997 y en la Universidad del Sur de Colorado en Pueblo desde 1997-2000. Jim realiza con frecuencia conciertos en la región de las Montañas Rocosas y regresó recientemente de la Argentina, donde realizó conciertos de presentación de sus propias composiciones y los arreglos de este CD. Mientras que en América del Sur, Jim se presentó en un programa de televisión "Universidad y Sociedad" realizaba sus arreglos de las canciones de Joel con la guitarra delante de los profesores de la Universidad Nacional de San Juan. El Cuarteto de Guitarra Santa Fe (de Santa Fe, Argentina), ha realizado los arreglos y Jim dijo esto acerca de ellos: "la colección Jim Bosse de canciones de Billy Joel ha aportado a nuestra Cuarteto una nueva dimensión. Jim Bosse disposne del hecho fácil de cruzar el mundo de la guitarra clásica con las canciones de Billy Joel, su música sigue siendo fiel en estas nueva clave y el espíritu de su música es fácil de transmitir a la audiencia. " http://cdbaby.com/cd/bosse2 http://www.jimbosse.com/ [url=http://www.jimbosse.com/]JIM BOSSE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('223', 'b300db76fd', 'Me voy a los extremos', 'ME VOY A LOS EXTREMOS (I go to extremes) Llámame bufón, llámame tonto. En este momento estoy totalmente bien claro como el cristal, afilado como un cuchillo siento como si estuviera en la plenitud de mi vida. A veces siento que voy muy rápido. No se cuando durará este sentimiento, tal vez es solo esta noche Querida, no se porque me voy a los extremos. Muy alto o muy bajo, no hay intermedios. Y si permanezco o caigo, es todo o nada Querida, no se porque me voy a los extremos. A veces estoy cansado, a veces soy como un disparo, a veces no se cuanto mas tengo. Tal vez ya estoy en la cima de la colina, tal vez estoy preparado para matar. Dime cuanto mas puedes tomar hasta que tu corazon comience a romperse. A veces siento que pasará Querida, no se porque me voy a los extremos. Muy alto o muy bajo, no hay intermedios Puedes estar segura que cuando me vaya no estaré fuera mucho tiempo Querida, no se porque me voy a los extremos. Fuera de la oscuridad, dentro de la luz. Dejando la escena del crimen. Como sea estoy equivocado o perfectamente correcto cada vez. A veces permanezco despierto, noche tras noche rasgandome las costuras, ansioso por complacer, listo para pelear. Por qué voy a los extremos? Y si permanezco o caigo es todo o nada. Querida, no se porque me voy a los extremos. No, no sé porque me voy a los extremos. Muy alto o muy bajo, no hay intermedios. [url=http://berilio.wordpress.com/2008/01/04/i-go-to-the-extremes/#comment-257[url]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('224', 'a8c247dc83', 'Tal como eres', 'Tal como eres (Just the way you are) No cambies, para intentar hacerme sentir bien Nunca me has decepcionado No imagines que eres muy familiar Y no te veo nunca más No te dejaría en momentos difíciles Nunca podríamos haber llegado tan lejos Tomo los buenos tiempos , tomo los malos tiempos Te tomo tal como eres No trates de imponerte una nueva moda No cambies el color de tu cabello Tú siempre tendrás mi pasión silenciosa Aunque parezca que no me importa No quiero una conversación inteligente Nunca quise trabajar tan duro Sólo quiero a alguien para hablar Te quiero tal como eres Necesito saber que serás la Misma que conocí Cuanto te tomará creer en mí De la misma manera que yo creo en ti Dije que te amo, y eso es para siempre Y esto, lo prometo desde mi corazón No podría amarte de una mejor forma Te amo tal como eres [url=http://rolastraducidas.metropoliglobal.com/1/justwayyouare.htm]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('225', '46af2e7c71', 'Mañana es hoy', 'Mañana es hoy (Tomorrow is Today) Cold spring Harbour He estado viviendo el momento Pero simplemente, no puedo salirme con la mía Y me asusta ir a dormir Por que mañana es hoy La gente me dice, la vida es más dulce Pero no oigo lo que dicen Nada llega para cambiar mi vida Por eso mañana es hoy No me importa saber la hora Porque está transcurriendo de cualquier manera No tengo que ver el mañana. Por que lo vi ayer. Así que oigo una respuesta Pero el sentimiento permanece Y que sentido tiene soñar siempre Si mañana es hoy, oh A pesar de eso estoy esperando la mañana Pero se siente tan lejana Y tu no necesitas el amor que estoy dándote Así que mañana es hoy “estoy yendo al río” voy a pasear y el Señor me traerá Haré mi cama, voy a descansar en ella Si tu no llegas, estoy seguro voy a morir en ella. Demasiado tarde. Tanto he dado He visto mucho de la vida y estoy harto de vivirla sigo esperando que pases por mi rumbo y algún día si tus sueños están dejándote, seguiré creyendo en ti A pesar de que sigo viviendo y cantando Y a pesar de que mis manos todavía tocan muy pronto todo habrá terminado, porque mañana es hoy. [url=http://rolastraducidas.metropoliglobal.com/1j.htm]FUENTE[/url]'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('229', '3abd62fee7', '', 'Hola Leyna. Gracias por tu calurosa bienvenida. Seguro que nos vemos por aquí habitualmente!'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('230', 'f5426015d2', 'Baby, we were born to run', 'Observo que se me ha nombrado moderador de este apartado, con lo cual estoy obliigado a hacer apología de este elemento. Si conoceis quién es Billy Joel, con más razón se supone que debeis conocer a Springsteen. La vida y milagros de Bruce son aireados continuamente por la prensa. Para mi, ambos son elementos paralelos. Son mis dos referentes musicales. Billy Joel simboliza la melodía y el eclecticismo musical. Bruce simboliza el rock´n´roll puro, la energía en el rock, el derroche y la honestidad en el escenario. Ambos tienen reconocida fama de ser autores que comunican sentimientos vitales. Comunicadores con letras más allá de la banalidad habitual en el rock. Sus carreras son paralelas en el tiempo, comparten discográfica e incluso su habitat vital y musical ha crecido cercano. No sé por dónde empezar, así que os reto a que pregunteis por lo que os pueda interesar. En la medida de lo posible satisfaré las curiosades que se me planteen. Señoras y señores....queda inaugurado este apartado.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('570', '9efcf45c58', '', 'Para mi puede ser: Scenes from an Italian Restaurant River of dreams Uptown Girl Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('571', '675abf1c4b', '', 'Pues esperemos que Billy llegue pronto a casa... Osea que el es James el de la cancion del Turnstiles???... wow no lo sabia. Pablo :idea:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('572', '7d302af74d', '', 'Songs in the Attic Stranger Nylon Curtain'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('573', '185645a0f1', '', 'Pues aunque no venga a cuento porque no es el tema del post, yo tampoco trabajaría más si las rentas me dieran para vivir como le tienen que dar a Joel, qué queréis que os diga. Con lo a gustico que se tiene que estar con tu lanchita y tu casita y tan tranquilo... nada nada, a vivir la vida. Y no offtopiqueemos más de la cuenta, que voy a tener que empezar a moderar (toooooma) :lol:'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('236', '6e841e05b0', 'The Catcher in the Rye', 'Pues ahora ya no leo tanto como antes con esto del ordenador, pero un buen libro del que guardo un buen recuerdo es "El guardían entre el Centeno" del Nobel J.D.Salinger... también "El Castillo" de Kafka me gustó mucho. Gracias por tu sugerencia, me suena al nuevo señor de los anillos.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('235', '48c879602e', '', 'La versión original es mejor......para mi gusto'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('237', '70c3cd37af', '', 'Por suerte o por desgracia, mi época de leer libros pasó hace muchos años. Recuerdo aquellos tiempos en los que cogía un libro y hasta que no lo acababa o llegaba el alba y caía rendido no lo soltaba. Mis dos últimos libros quedaron inacabados y no creo que los llegue a acabar nunca. Allá a finales de los 80 dejé al pobre hobbit Bilbo Bolsón colgado de un árbol, con los lobos esperándole debajo. Supongo que a estas alturas los lobos se habrán marchado y Bilbo andará por mejores lugares fumando en pipa. Algo parecido me sucedió con el On the Road, de Kerouak. Sin embargo, actualmente estoy leyendo un libro y esto sí que es noticia: no el que lea, ya que soy lector empedernido de prensa, revistas y toda clase de noticias y artículos que se tercien por internet. El libro que estoy leyendo se llama "El mundo de los sueños lúcidos" de Stephen Laberge. Si no sabeis lo que son los sueños lúcidos, echadle una ojeada y descubriréis un mundo nuevo interesante y excitante. Y si quereis algo más divertido os aconsejo mi autor favorito, Enrique Jardiel Poncela, nunca suficientemente bien ponderado.'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_text) VALUES('238', '3715529b75', 'Turnstiles', 'Cuando me registré en este foro se me dio la posibilidad de poner una firma. Lógicamente pensé en la frase en la que piensa todo el mundo y me supuse que estaba ya tomada. Así fue, el admin del foro la había ocupado, malvado él... Pero no sólo eso. Se apoderó de uno de los mejores discos del de Hicksville. Turnstiles es como un pozo donde beber cuando tienes sed, dentro de su discografía. Algunas de sus canciones adquirieron la dimensión que merecían en las canciones del Atico, pero Turnstiles tiene un aura única. La atmósfera intimista, los mensajes desnudos en las canciones. Afortunadamente, la versión española del disco vino acompañada de las letras. De vez en cuando, rebusco en mi ático particular y me encuentro con cuadernos llenos de letras de canciones y sus correspondientes traducciones de discos como éste. Hubiese sido un detalle que viniesen en castellano, como sucedía con el Born to Run y su traducción por parte de Diego Manrique, pero eso no fue obstáculo para pasar horas y horas en compañía del diccionario para aclarar las palabras que desconocía. Al fin y al cabo, estas letras tenían sentido. Peor era meterse a traducir cosas como Close to the borderline.... Summer, highland falls, I´ve loved these days, NY state of mind, James.... They say that these are not the best of times.....'); INSERT INTO phpbb_posts_text (post_id, bbcode_uid, post_subject, post_tex