# backupDB() v1.1.28 (http://www.silisoftware.com)
# mySQL backup (July 31, 2005 11:55 pm)   Type = Complete

CREATE TABLE `swingornot2`.`platinum_admin` (
  `id` tinyint(4) NOT NULL auto_increment,
  `username` char(16) NOT NULL default '',
  `password` char(32) NOT NULL default '',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2;

CREATE TABLE `swingornot2`.`platinum_banner` (
  `id` int(11) NOT NULL auto_increment,
  `start_date` datetime NULL,
  `duration_month` int(11) NULL,
  `display_sec` int(11) NULL,
  `image_name` varchar(100) NULL,
  `url` varchar(200) NULL,
  `statistics` int(11) NULL,
  `comments` varchar(200) NULL,
  `banner_name` varchar(100) NULL,
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3;

CREATE TABLE `swingornot2`.`platinum_comment_threads` (
  `comment_id` int(11) unsigned NOT NULL default '0',
  `updated` timestamp(14) NULL,
  `timestamp` timestamp(14) NULL default '00000000000000',
  PRIMARY KEY (`comment_id`)
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_comment_views` (
  `comment_id` int(11) unsigned NOT NULL default '0',
  `ip` char(15) NOT NULL default '',
  PRIMARY KEY (`comment_id`,`ip`)
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_comments` (
  `id` int(7) unsigned NOT NULL auto_increment,
  `pid` int(11) unsigned NOT NULL default '0',
  `user_id` smallint(5) unsigned NOT NULL default '0',
  `subject` varchar(255) NOT NULL default '',
  `comment` text NOT NULL,
  `author_id` smallint(5) NOT NULL default '0',
  `author_ip` varchar(15) NOT NULL default '',
  `status` varchar(16) NOT NULL default 'waiting',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) TYPE=MyISAM AUTO_INCREMENT=10;

CREATE TABLE `swingornot2`.`platinum_cookies` (
  `userid` int(11) NOT NULL default '0',
  `cookie` char(32) NOT NULL default '',
  UNIQUE KEY `userid` (`userid`),
  KEY `cookie` (`cookie`)
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_email_templates` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `file_content` text NULL,
  `file_name` varchar(50) NOT NULL default '',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=4;

CREATE TABLE `swingornot2`.`platinum_favourites` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `user_id` smallint(5) NOT NULL default '0',
  `fav_user_id` smallint(5) NOT NULL default '0',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=43;

CREATE TABLE `swingornot2`.`platinum_featureduser` (
  `gender` char(1) NULL,
  `id` int(11) NULL
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_forums` (
  `forum_id` tinyint(4) unsigned NOT NULL auto_increment,
  `forum_pid` tinyint(4) NOT NULL default '0',
  `order_by` tinyint(4) NOT NULL default '0',
  `forum` varchar(128) NOT NULL default '',
  `description` text NOT NULL,
  `forum_lock` char(1) NULL default 'n',
  `user_ids` text NULL,
  PRIMARY KEY (`forum_id`)
) TYPE=MyISAM AUTO_INCREMENT=4;

CREATE TABLE `swingornot2`.`platinum_image_types` (
  `id` tinyint(3) unsigned NOT NULL auto_increment,
  `ext` char(4) NOT NULL default '',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=13;

CREATE TABLE `swingornot2`.`platinum_newest_pictures` (
  `id` int(9) NOT NULL auto_increment,
  `user_id` int(5) NULL,
  `image_number` int(3) NULL,
  `upload_time` datetime NULL,
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=60;

CREATE TABLE `swingornot2`.`platinum_news` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `uid` mediumint(8) unsigned NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  `news` mediumtext NOT NULL,
  `description` mediumtext NOT NULL,
  `link` varchar(120) NOT NULL default '',
  `date` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2;

CREATE TABLE `swingornot2`.`platinum_paypal_transaction_log` (
  `id` bigint(20) NOT NULL auto_increment,
  `date_addded` datetime NOT NULL default '0000-00-00 00:00:00',
  `ip` varchar(15) NULL,
  `user_id` bigint(20) NOT NULL default '0',
  `txn_id` varchar(50) NULL,
  `payer_email` varchar(150) NULL,
  `payment_date` varchar(30) NULL,
  `payment_gross` double(50,5) NULL,
  `payment_fee` double(50,5) NULL,
  `payment_status` varchar(20) NULL,
  `memo` text NULL,
  `paypal_response` varchar(20) NULL,
  `paypal_post_vars` text NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=28;

CREATE TABLE `swingornot2`.`platinum_platinum_temp` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `ts` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1;

CREATE TABLE `swingornot2`.`platinum_pms` (
  `id` int(7) unsigned NOT NULL auto_increment,
  `user_id` smallint(5) unsigned NOT NULL default '0',
  `subject` varchar(50) NOT NULL default '',
  `message` text NOT NULL,
  `author_id` smallint(5) NOT NULL default '0',
  `author_ip` varchar(15) NOT NULL default '',
  `pm_status` varchar(16) NOT NULL default 'unread',
  `timestamp` timestamp(14) NULL,
  `readornot` char(1) NULL,
  PRIMARY KEY (`id`),
  KEY `timestamp` (`timestamp`),
  KEY `user_id` (`user_id`),
  KEY `pm_status` (`pm_status`)
) TYPE=MyISAM AUTO_INCREMENT=150;

CREATE TABLE `swingornot2`.`platinum_posts` (
  `post_id` int(11) unsigned NOT NULL auto_increment,
  `thread_id` int(11) unsigned NOT NULL default '0',
  `subject` varchar(255) NOT NULL default '',
  `post` text NOT NULL,
  `userid` int(11) unsigned NOT NULL default '0',
  `updated` timestamp(14) NULL,
  `timestamp` timestamp(14) NULL default '00000000000000',
  `notify` char(1) NULL default 'n',
  `emoticons` char(1) NULL default 'n',
  PRIMARY KEY (`post_id`)
) TYPE=MyISAM AUTO_INCREMENT=1;

CREATE TABLE `swingornot2`.`platinum_ratings` (
  `id` int(7) unsigned NOT NULL auto_increment,
  `user_id` smallint(5) unsigned NOT NULL default '0',
  `rating` tinyint(1) unsigned NOT NULL default '0',
  `rater_id` smallint(5) NOT NULL default '0',
  `rater_ip` char(15) NOT NULL default '',
  `timestamp` timestamp(14) NULL,
  `image_number` smallint(5) NULL,
  PRIMARY KEY (`id`),
  KEY `timestamp` (`timestamp`),
  KEY `user_id` (`user_id`)
) TYPE=MyISAM AUTO_INCREMENT=11820;

CREATE TABLE `swingornot2`.`platinum_sessions` (
  `id` varchar(32) NOT NULL default '',
  `data` text NOT NULL,
  `expire` int(11) unsigned NOT NULL default '0',
  PRIMARY KEY (`id`)
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_signup` (
  `id` int(11) NOT NULL auto_increment,
  `s_fields` varchar(50) NOT NULL default '',
  `s_enable` enum('y','n') NOT NULL default 'n',
  `s_editable` enum('y','n') NOT NULL default 'n',
  `s_primary` enum('y','n') NOT NULL default 'n',
  `s_default` char(1) NULL,
  `s_value` text NULL,
  `s_length` int(5) NULL,
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=13;

CREATE TABLE `swingornot2`.`platinum_smilies` (
  `smilies_id` smallint(5) unsigned NOT NULL auto_increment,
  `code` varchar(50) NULL,
  `smile_url` varchar(100) NULL,
  `emoticon` varchar(75) NULL,
  PRIMARY KEY (`smilies_id`)
) TYPE=MyISAM AUTO_INCREMENT=44;

CREATE TABLE `swingornot2`.`platinum_temp` (
  `uid` int(11) NOT NULL default '0',
  `ts` int(11) NOT NULL default '0'
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_templates` (
  `id` int(10) NOT NULL auto_increment,
  `file_name` varchar(50) NOT NULL default '',
  `file_content` text NOT NULL,
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=11;

CREATE TABLE `swingornot2`.`platinum_thread_views` (
  `thread_id` int(11) unsigned NOT NULL default '0',
  `ip` char(15) NOT NULL default '',
  PRIMARY KEY (`thread_id`,`ip`)
) TYPE=MyISAM;

CREATE TABLE `swingornot2`.`platinum_threads` (
  `thread_id` int(11) unsigned NOT NULL auto_increment,
  `forum_id` tinyint(4) NOT NULL default '0',
  `timestamp` timestamp(14) NULL,
  PRIMARY KEY (`thread_id`)
) TYPE=MyISAM AUTO_INCREMENT=1;

CREATE TABLE `swingornot2`.`platinum_upload_image_details` (
  `id` int(9) NOT NULL auto_increment,
  `user_id` bigint(7) NOT NULL default '0',
  `total_file_count` int(5) NOT NULL default '0',
  `main` enum('y','n') NOT NULL default 'y',
  `description` text NOT NULL,
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=76;

CREATE TABLE `swingornot2`.`platinum_user_types` (
  `id` tinyint(3) unsigned NOT NULL auto_increment,
  `user_type` varchar(255) NOT NULL default '',
  `gender` enum('m','f') NOT NULL default 'm',
  `order_by` tinyint(3) NOT NULL default '0',
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=9;

CREATE TABLE `swingornot2`.`platinum_users` (
  `id` smallint(5) unsigned NOT NULL auto_increment,
  `username` varchar(16) NOT NULL default '',
  `password` varchar(16) NOT NULL default '',
  `hint` varchar(100) NOT NULL default '',
  `realname` varchar(48) NOT NULL default '',
  `description` text NOT NULL,
  `age` tinyint(2) unsigned NOT NULL default '0',
  `user_type` tinyint(3) unsigned NOT NULL default '0',
  `state` varchar(32) NOT NULL default '',
  `country` varchar(32) NOT NULL default 'United_States.gif',
  `email` varchar(48) NOT NULL default '',
  `url` varchar(255) NOT NULL default '',
  `quote` varchar(255) NOT NULL default '',
  `image` enum('here','there') NOT NULL default 'there',
  `image_url` varchar(144) NOT NULL default '',
  `image_ext` varchar(4) NOT NULL default '',
  `image_status` enum('enabled','disabled','queued','approved') NOT NULL default 'enabled',
  `total_ratings` smallint(5) unsigned NOT NULL default '0',
  `total_points` mediumint(9) unsigned NOT NULL default '0',
  `average_rating` decimal(6,4) NOT NULL default '0.0000',
  `total_comments` int(10) unsigned NOT NULL default '0',
  `subscribed` enum('yes','no') NOT NULL default 'yes',
  `md5key` varchar(32) NOT NULL default '',
  `signup` varchar(14) NOT NULL default '',
  `timestamp` timestamp(14) NULL,
  `is_approved` enum('0','1') NOT NULL default '1',
  `total_files` smallint(6) NOT NULL default '0',
  `last_logged` datetime NOT NULL default '0000-00-00 00:00:00',
  `birthdate` varchar(8) NOT NULL default '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `md5key` (`md5key`),
  KEY `sex` (`user_type`),
  KEY `timestamp` (`timestamp`),
  KEY `signup` (`signup`),
  KEY `username` (`username`),
  KEY `email` (`email`),
  KEY `subscribed` (`subscribed`)
) TYPE=MyISAM AUTO_INCREMENT=625;

CREATE TABLE `swingornot2`.`platinum_users_blocked` (
  `block_id` smallint(10) unsigned NOT NULL auto_increment,
  `user_id` smallint(10) NOT NULL default '0',
  `blocked_user` smallint(10) NOT NULL default '0',
  PRIMARY KEY (`block_id`)
) TYPE=MyISAM AUTO_INCREMENT=3;

CREATE TABLE `swingornot2`.`platinum_visit_logs` (
  `id` smallint(8) NOT NULL auto_increment,
  `username` varchar(16) NOT NULL default '',
  `userid` smallint(5) NOT NULL default '0',
  `logdate` datetime NOT NULL default '0000-00-00 00:00:00',
  `ip` varchar(15) NULL,
  PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=197;


# dumping data for swingornot2.platinum_admin
INSERT INTO `platinum_admin` (`id`, `username`, `password`) VALUES ('1', 'admin', '2cc6b3e6c0d251abbe0b098b15038bb9');


# dumping data for swingornot2.platinum_banner
INSERT INTO `platinum_banner` (`id`, `start_date`, `duration_month`, `display_sec`, `image_name`, `url`, `statistics`, `comments`, `banner_name`) VALUES ('2', '2005-03-29 00:00:00', '2', '15', '2.gif', 'http://condomringvibrator.com/', NULL, NULL, 'CONDOM RING VIBRATOR');


# dumping data for swingornot2.platinum_comment_threads
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('1', '20030906233722', '20030906232749');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('2', '20050318162143', '20050318162143');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('3', '20050327012342', '20050327012342');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('4', '20050420201258', '20050420201258');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('5', '20050421024541', '20050421024541');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('6', '20050701162656', '20050701162656');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('7', '20050701165323', '20050701165323');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('8', '20050730111359', '20050730111359');
INSERT INTO `platinum_comment_threads` (`comment_id`, `updated`, `timestamp`) VALUES ('9', '20050730111608', '20050730111608');


# dumping data for swingornot2.platinum_comment_views
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('1', '24.61.233.133');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('1', '68.114.198.142');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '12.108.99.30');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '12.203.241.26');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.216');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.217');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.224');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.238');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.44');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.79');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.81');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.68.9');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.69.130');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '130.13.69.222');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '172.163.127.16');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '207.119.231.242');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '207.68.146.40');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '208.61.8.3');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '209.237.238.178');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '216.19.43.91');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '24.12.161.241');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '24.120.217.242');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '24.125.186.191');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '24.148.52.129');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '24.203.221.164');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '24.54.175.162');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '63.148.99.234');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '63.148.99.237');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '64.12.116.130');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '64.12.186.201');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '64.151.111.116');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '64.242.88.10');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.19.150.228');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.19.150.229');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.19.150.248');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.19.169.232');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.54.188.16');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.54.188.17');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '65.94.8.231');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '66.150.55.230');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '66.176.204.232');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '66.249.65.165');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '67.106.246.19');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '67.173.146.139');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '68.142.250.122');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '68.142.251.26');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '68.187.141.68');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '69.142.170.200');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '69.150.83.12');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('3', '69.179.168.181');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '130.13.68.238');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '130.13.68.9');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '130.13.69.130');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '130.13.69.222');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '24.203.221.164');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '64.12.116.130');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '64.151.111.116');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '65.19.150.228');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '65.19.150.229');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '65.19.150.248');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '65.54.188.16');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '65.54.188.17');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('4', '66.249.66.66');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '12.203.241.26');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '130.13.68.238');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '130.13.68.9');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '130.13.69.130');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '130.13.69.222');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '208.218.38.12');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '24.203.221.164');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '38.118.42.35');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '63.148.99.239');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '64.12.116.130');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '64.151.111.116');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '65.19.150.228');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '65.19.150.229');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '65.19.150.248');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '65.54.188.16');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '65.54.188.17');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('5', '66.249.66.66');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('6', '130.13.69.222');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('6', '65.54.188.17');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('7', '130.13.69.222');
INSERT INTO `platinum_comment_views` (`comment_id`, `ip`) VALUES ('7', '65.54.188.17');


# dumping data for swingornot2.platinum_comments
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('4', '0', '565', 'Anyone in St Louis metro area?', '....I love to meet new people....I travel alot, especially down I-64 and down to Paducah, Ky....would like to make some new friends!', '565', '69.179.168.181', 'approved');
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('3', '0', '424', 'Your Eyes', 'Are very Hipnotic', '564', '68.107.38.13', 'approved');
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('5', '0', '424', 'HOT', 'Love what I see', '579', '24.54.175.162', 'approved');
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('6', '0', '521', 'hi love what I saw', 'we would love to get to know ya', '609', '70.249.212.21', 'approved');
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('7', '0', '609', 'you a couple?', 'if so drop us a line   slowridexxx4u@yahoo.com\r\n', '609', '70.249.212.21', 'approved');
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('8', '0', '16', 'Hello', 'You have a great smile, gorgeous eyes, But I really like your sexy legs. ', '623', '68.13.199.3', 'queued');
INSERT INTO `platinum_comments` (`id`, `pid`, `user_id`, `subject`, `comment`, `author_id`, `author_ip`, `status`) VALUES ('9', '0', '470', 'wow', 'Cute pups but your eye are gorgeous', '623', '68.13.199.3', 'queued');


# dumping data for swingornot2.platinum_cookies
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('12', 'f960fa7a3a3173a7e97a2fddd250b7c0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('5', '4b9c02f2ec3e38395703e588a217618f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('6', '935244e01d3d2583ffc480ffb6afd65b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('7', '40f5fbc7b28014bbb9ad1071970358b6');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('352', '615426771ee36ebd188ba56f54b5c32d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('14', '07d6c115c4df63524cd2801421977809');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('15', 'eed0b8f89f8b1861ef82285cb7bd36e2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('534', 'a07c9becc8b4b0e43ea5f9076fe8fb7f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('81', '3266e03c128a746b811bef59b037f296');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('19', '7efc185b091da1793dbb60e79d38691b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('20', '17db929bf3e70de76b933e712a2bff1e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('21', '4353c58997776cdbd99895ee394cf12f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('18', 'e1190e39b1ac6c78651f97feebda95cb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('22', 'd7b13891e97057f6a4a7d8848090d95c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('23', '7d9f1ede728fc550d47ab9f96bdf7df7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('24', '1825246afb4e090041ec0b270f614cda');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('25', '73afd86fcdb93cf1f9df91a640f2e65f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('27', '1a455701940938e0f330db9b0194ec4a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('29', '99da74d9e2dec48e6972b757321f20af');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('30', '12bbdfa588e378bcb22f16421fbd3bf7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('33', 'd341448a70dc63b130173c416fadae30');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('34', '43f1a8ae576c0dba33d42269aad2bfc9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('35', '5d35aea54940bc5adeb507405f71e3a8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('36', '437d4ed44ba2781b1a8e5ec0b4769520');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('42', 'd866a47ea0e170da156c19b5096980c2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('40', 'db21a16fb21f526e212535aed78fce5d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('41', '323dedd5a9791708eb5ccd8a381aa282');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('11', 'd5dbca272b5c0011529d3c4acad869e7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('43', 'f7aa065c7a95e28b51645b7ef2e7d95d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('439', '70c8052d0acf6219be3dca804ff78971');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('45', 'd9fc1164f0ae7147e976ce15cb9587f2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('46', 'de58c71339e1984bee6e18faad006749');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('47', '534a1b4ccd6c86985f0553daffce35ef');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('48', '5687f10b92ba69da65470a45f0ac7188');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('49', 'dc7f13b49cbb3e2c2df648ec456e3154');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('50', '94505206d12659c925a262489748d59d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('51', 'b60e156cec9d30b318223ca4ddee52c8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('52', '3273a728db9f1bdfc3e7f9b741967083');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('54', '4e208244baff3e4689737982f743e391');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('76', '790fd16fc634498925ff143dfa2d707e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('61', '664ce2e6b4232c6bbd623fffee39d5e3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('62', '5bcfec6b99dfe71d3771a2fda136c465');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('63', '713f5b549d7ec32bf1ea53c3d0e16863');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('64', '5d9ecfc7f58a97c5e9a2b72f062ef401');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('92', 'a877b16b18ad0f90b9f303f845b55145');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('67', '9b35340e594bd7243443232c14437e8a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('83', 'db902c5efbb2e77ded30865f072ba348');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('70', 'aeb75de708aecfa207cbe490c1d234e0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('71', 'ad52368129e65eb97e40d2435bd20d94');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('389', 'dc338c6b9b54bb8982b21e2c03a1ecea');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('74', 'b944b8f92c6de575ef046ff13c68978f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('77', 'f1bf503f79795bd5fea0f7650b05f397');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('78', 'cfcdc18c88ef15369905579d2e236567');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('84', '3dcd519f0db7223588b68d2d813b2df6');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('85', '13f03e37f63fa693a55329ddcddde41b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('88', 'f6d4930b42783f6e9d587937f6b2bdae');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('90', 'c0d14c0b62209f243c93283995a42898');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('91', '61b5ee6146808dfcfe9bc2bf6ca81020');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('93', 'e75197e66e0bb4aa33dcbd5baacb9aa3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('94', '93973281f1eff187ac472f686fbbe6fb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('95', 'ae880da7607cac2a39d9432a6644f051');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('96', '9d7da7a88abe47c74d612f6377cc9ba3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('98', 'abdc223ae939ff79d2259e93d2706c1a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('75', '3c80f04c4785640d35f148c6ff8e937a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('101', '40c54e055093b9f599971532164c2d9e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('103', '025e393339308dddb34e8a0aa204dc58');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('106', 'abde5c4e9c47833a4bcf0aed3da95344');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('109', 'f6f38a96b5c6c13b5ebfb93cd87d5292');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('110', '37ac2449d4f5aceb1e06a570aa02318c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('111', 'e58139f29311d86028aeb34398f57d6c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('113', '3fe1e37e58bce526c124bf139b75c7f4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('114', '1dac054288211f031dd2c55a823c68da');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('119', '7507c76aad66c2fea35c0df791ac82ee');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('124', '3995c88d6233d6904ba7eb9401e0b291');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('126', 'f0d9d4372a3cb33e2b142338cf685e80');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('127', 'c0a68e799f76e3e416d50bec30811e06');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('128', 'cbef4c99cfbf98ccb106aeeca2fd51da');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('129', '828654dfa161cef70d256086794796d8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('130', '5bc193c945386b29fe89c62b2c79fcf4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('131', '1f80a3a78b41868f5405c1e9fd851b20');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('132', '25dabf8a92326733f8e1d4966291b3b4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('136', 'bed05e4c5254339facf1e9e2ae7127c1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('138', '73e7be499d72f932feaacd1f40bd4111');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('139', 'ca2048d88c6bacd52d4ba4e565e561b9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('141', '74bbc7c618ca828365868581d0af6318');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('142', '8756227026d674bcffcd0642dbdd656d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('145', '8b35c03bbb455f5a71d8d226a18195de');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('146', '93d7ad2dfe76ed5ba864f45361320979');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('148', 'de3862c982a8660857063cf8afa43452');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('149', '3bb1700f1bcb90bdd6427b63156afb66');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('150', 'babbcb516403d3c9b143d489c18dbc05');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('152', '0915f7b76c5d3abd00ff17d2f3ff03a7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('153', 'b97a9d75286800c07c965c43ff099e93');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('154', '0d606222c97c4eb7703f5effaa5753f8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('155', '26ce933f9a2949e02732a4e7857ed931');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('156', 'de507768a47c057b7d3147502b6cb0b1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('157', 'e7462aa47af577f2be73bdb5e28d403a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('158', '8d86cb97e24ecc6b15938e1201f6fcb7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('159', 'd11f97957d0b9c668e04a38481ae43cb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('160', '3fa33f15d17f5dde44f764a86f2404c8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('161', 'da7e5ef7fd8a4e275e576c3baa5a0370');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('162', '5f934d48728e3a021a3d24a376e56b8b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('163', '4bc4c9b2667b0cb8914122c2c2f9c1b0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('164', '734dccdca7ff9dd4b2276bd971dec593');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('167', 'a5087815686d089b455610a152a922ee');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('168', '8e9ed85ef8ba890ce165f8d7f0170e69');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('170', 'c2774bac2513a6d9b6983b4506ec7e2c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('172', '4ce34a1703417d768d1c11c069eab02b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('173', '86095efb4ac0aed1d71f421e9772df46');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('174', '6b4dd9ea12ab5da92243108f601583f2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('175', '3d79e489255fa7c9b34b697e265f560f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('176', '31946ce0b6bcaecb2106de59ecea7768');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('179', 'dafae8bb20e2ef35c8bd484e7c682211');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('180', '477554c9621b0f80c77ea50e21455b75');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('181', 'a1cbad11c42baada35569773078579f5');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('182', 'b5c912759912bf5522325b32883918b3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('183', 'c26280bb62ca37c08e939696bad0ca6a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('185', '3fe11ad4d44fd200043380605308f6bf');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('187', '1da71a6a4badea7d251e6c822a05663f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('66', '5a82b580a5bcbae6034f422849ef11b2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('188', 'b3b07812a61f9604a5f2fa6fb651cc1b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('190', '947dd5cc907e36cf89b36514597b512d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('191', '5db5c534f46fe5f93245b78cc6900631');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('192', 'cbff9cf6b7e06e2cb4354084dcc6fdf9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('193', '26a7d661c346bb2ada307444fbff42e7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('194', '26cde7853b72ea72aa4bd9cbd902cd1c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('195', 'ccdf74c2d4bc21fa349e5f265221912b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('196', '96d6ecd62847524c5ddd7169649604e9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('197', '0b155ef933cfec706175dfc48c6dbe0e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('199', 'b124a40d486449a5de29002189819c16');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('200', '37fefa80e06cc71e849f915c20190744');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('201', 'd146bf5369e1ded5bbca7746de837f30');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('205', 'b1990a2cfd48f494b3b35e72e3cb5b29');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('206', '98a59256fd72ee96d00b1496b4c810c0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('209', '910accb9ba3b75ab65e02d2a95737626');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('210', 'c589e1aa67d17fe9a5828b4e3de52d9e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('211', 'ab135a0144744429c1a9ae51538a5dee');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('212', '757b7147931917879eef94a4cbc074fd');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('213', '0ae5b9058623d109e0be7fa72f015b48');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('216', '52e6e8f0670a8c43e4b0527c59304cc8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('217', '74d2fe12d7028feb2a590c557bb926c3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('218', '36ba745683c79e5a64fd2894f458653d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('223', 'e57154d9f9986fc191540ecae6387c56');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('224', '3d59c7870c361c80fe49801008c53ab4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('225', '84ef1fe478fc63bb9b5187cec7b831fa');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('226', 'fc15531bfb21f3e5f63c13bcd28b503d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('228', 'cc5caadee529dcd7f1f76592009af59e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('229', 'cda5e8c1726e70bd6a5998e890ce3b58');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('230', '60d45fc5237b52c01112c7676485ef82');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('232', 'c41eccbe1b8d425790a4e5296d1fc7a6');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('233', '4a18aafe685d2a14f99d6557180e62c1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('235', 'aadfecafc6c5f3a7f91eeb40d1af6328');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('237', '936f8eeec0f3f90ff231cda214835c94');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('238', '46b9a9eee4ae24a72580cae410596025');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('239', 'e054ce94adad30505043c970be4df7ce');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('240', '1511670f7b94e14437cf64b6a2444ce9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('242', '42c077d839a5c26f400ffae6a27dfda6');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('243', '97d40297c436891d590856e2dd67b8cb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('244', '9e0d5060b0d93f0fa21ef79a701866a9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('245', 'ffc2a50539c35668e4dfb79bdec8b216');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('246', '6cb2aef4dcb120c880b33e14ce14d6f0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('247', '5e0caaf5415ee9649d717bdefec9be9c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('248', 'a5fb78aecd17f6f5ecf9e32925e57ffb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('249', '622ca55be32d30136214f68617a81057');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('250', '88affcb6d37667e7d61b852e1f88b65c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('251', '3452d67be248de2eaecc51423d4d2058');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('252', 'c8ce61e3a3ce11822798f12d299c179a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('253', '7afaeeb76fb507408a60ba8708f602aa');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('254', 'cede72e9db2dc7f8b66a3afc5583ec40');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('256', '8c27c86b6d1069163d92c94c493b35f8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('257', '62bd6c06184a58fc3d446401d6caa042');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('258', '6cbc96c60f1080cda6820a5fe6fd7447');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('260', '68a914170c54b4f1fdfb57e3c61615ab');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('261', '77acbc50f722211aa1ce4bc587770412');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('262', 'ec6c0a813c9aca6fe81c51cac7fd125a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('263', '375c0b71fa5a3a5b75dafebc0e541eb5');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('264', '1dc4624d1ad7ab14b71e868a686b462f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('266', '83b54a898c172213d4d0eb187c8e0b84');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('269', 'a851e537398f803a6f94fe55d89a60c3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('272', 'bd23095bf8ca37bf8e14edda4c662bc7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('273', '7a99d507225b2658b7cbe0ae8a48afe4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('274', 'cd8e21e8bfffd963af43bdc6908592ee');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('275', 'c65471fb26e311e5a2c07f0d2f76e7ef');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('276', '723964c4f0453cf5c025d840aacf5b5c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('278', 'dfdd8723c2c7965f1fd65660942c06c0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('279', '5801d940dffa0c29c8d0a0103bf2609b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('280', 'f07760a9c2d94d6fb3110f818d87a01f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('283', '151391bd95feb67396278f40882f4e9b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('285', '1316dcbb0bca3e060e3db101d97bf9d7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('286', '6693a69aaff20d54dd808ffef09ae5ea');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('287', '9572f8bff347b16b5cedce84e6432bde');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('289', '66d47e9134d41eef4e24b48ebb07e9d0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('290', 'bfcbeedff264babfddbc1a32312c9a6b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('291', '88fd9231c22643d7dd9d991da83cfb5e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('292', '474832a398d1a125cce108e11047f0dc');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('293', 'd4c3715cc622c01d4b7378a919ef2d53');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('294', 'e26d071a46dd466de453356296749b21');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('296', '5adc1b1093f8cbf6d9c384f50f949684');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('298', '981cd37caf4cd2bf3be69c19bae2d1a3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('488', 'f2630d7438b06b5dca3464c1be5729e1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('301', 'e53db4847071a45145d7dc76057e918b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('303', 'b379394f9e58856b4f3836f43a48d7c3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('304', '7b0a894fdfec579f81a300053b8acd7d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('306', '1ce4386fd27fa8988a640d0493a34a45');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('308', '4c2571b558c2b13b42dccf0bd795a78f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('310', '4944046471511ec52226a560c3312b41');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('314', '4c3c4ce59016648be2b61ed5e8e922e5');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('315', '26aa74cb10a767eeac547bceaa042980');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('317', 'e59efd956e7b7c87f364b9e00127ae6e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('580', '84d1e2731f26fe0496c2bc163dc259e3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('319', '50dfe643451b86c290801b8233de3b3c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('321', '0c13ee46d373dde7f34dd2802f923e4c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('323', '308c51f009577006c3f5e505c841ed06');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('324', 'a1be932f3c6fb7bd84ffbfe4e8a1b322');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('326', 'f92710d82eb86a2294b9ecb85a3b80e2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('327', 'd19a8513ab6137ff2abf00edd4e01078');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('328', '7c6777d4940b4ad028fb383c737a98ec');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('329', '104954b6f7a7624fae387b7431d38dc4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('330', 'f5e09d0d53de0834d4bf0d565ff4a57c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('331', '4cea60330281ba5052929c56c88a8f0d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('332', 'ee8612b3eb3c17b782fa1b8157e099d7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('334', 'c908706fd1a5a8adb28edb66ca5fd797');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('335', '71c81118d1d76db603101a4de52287f0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('336', '2fed1f15c06812a783be46f0d54ed275');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('337', '1d510f11fe6773373d81589b47921cec');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('338', '556afdda173ba89b657561ba613db431');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('339', '110bbf9ecbb485e7085f59ae5f823a5f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('340', '5a8efe78e648571fdaeaeb9513e9c8ed');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('354', 'a10e3a4484b16f60791b10f2a2d39ae4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('343', '935f616262b4ef9a86ff2dc30646ff3e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('344', 'a00e21fd80f681fd3deee1a98f6671ec');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('345', '8a352f97713d8f8430ffd91005af8f80');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('346', 'd337efde3e2b8731a71bcbdaeecbb804');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('348', '66b166e26eaa254668c7439e8faf6daf');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('349', '8ad3cf62c11810a41d3241feeed36149');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('356', 'e3458af31e4d9031a029b93a234d630f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('357', '5401b76b2bd6c8b39153b02d45e7673b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('390', '5b5d98f0b9660d2fd7b0421b476e374a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('359', '3d46f1cf40d2289aa8bf36a1e0d5fc02');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('360', '7a08b0424896a9a73cf9ad32883b4cef');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('361', '3f151bc3dfe3a98c7404ceda14e5dac5');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('362', '6e10a3d645e5ff01569c8e862c5ccee1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('363', 'cfed547d0f1d9c295fc1687e447fa29d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('364', 'ff63d2624325106691528b96b92e4966');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('365', 'a3bd3c0be4daf3913f9a3248b8e6b30c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('366', '475df5787ebc49298fe1e381abeb28a8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('367', 'cae56f64711b22f8a13250e6862fb9cd');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('368', 'ad1d1512b61867f63baf10c1ecc9f7e0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('369', '3aafb44ff27e3a6306bfa02274f9bc75');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('370', '9a37787a12983b9ddc4c44f989d44d21');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('371', 'dd586973717238b3041741a45d16e025');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('466', '7f8650fc924d6e0fe6be92774c88e167');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('342', '0ed618f298471dceb91ac79ef43f63ac');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('374', '354d31150ae55fa87c5e9c753be5283a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('376', '6b877e90a56c9a2e0784c5272ecd70aa');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('378', '1e05f2c8f5a3c1a964a4f1f46bd94437');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('379', '514487a9ca4ea5279c295499286dd757');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('386', '28e0c88ec5be47e443986f4e52f08bde');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('382', 'a2594dc3ad194b79cf23741d85ace094');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('398', '123ff2456359eb6bc986052fadfc4619');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('391', '0b4234c8d0abdd28cbca56303f710571');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('392', '9a33954b9f530c28210d3f5c2bd73394');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('394', '8774f251eaf640a90f47e0161443009f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('395', 'de4b69059397f40c2ff075521c72651b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('397', '63585cfa3b18d21f2e302f796005d4ad');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('399', 'e76cd9a664e0d7c00fed47295c072f6d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('400', '087058280df677a34f70b9e891a5e185');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('401', 'fa41a8f9b6f1a3af1196d7920ef6af77');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('402', '7e68d7c9ea948db36e890ec9deb5c87a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('73', 'f0b01732d973622a79486e26c39a19e4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('403', 'd3d94b03548688a4273ea26ab3090336');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('407', '05cd9abe7fc0596a287d1ba9dfd43e11');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('412', '604cdb818621893291a6db76cb72bacc');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('413', '0e4fece239a894d6f34fdb999e433a75');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('418', 'bd437468857552a2d32207892b971d81');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('419', '9e1d1a4958fc8a82b0a856ef45ca5cbb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('420', '1be99c767a5b9284512f0cb15595c54d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('422', 'de1b561583013ed121abef338d595734');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('423', 'd252de8fd3f0dc8a73b0723be8bae5c1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('505', '6348c0f895761214907eae6bc7ef66ec');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('558', '059eb2d0ab73cb65441a3a3c8c3bb9bf');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('427', 'a63798c0bcd29481718ea7ceb53a3e80');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('437', 'a8e7d3985ecb7f48da9b5aaf9203d94b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('430', '320e6b52595f2c2d6a5de5a831caff28');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('431', '1f13a9574c5b12b84931d25d71d5ac6d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('432', '2beb34819ce0f604e0fdf91a2208b469');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('433', 'b82cbc3f8bf3a9355b3a1f6baf6b9024');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('434', 'ace41d148ef6da849eda5f36276115bf');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('435', '64badd8f5200edf0459baa51247804ab');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('438', '578e4afafb47e59f64fe44a5fb2afcbd');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('373', '3d3701a218ed3c9c717013ac613ee1c1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('440', 'f1a387899c115287880dfedeb8ae0a40');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('441', 'f22b9c67713fcef44102f452b0ff686f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('444', 'e6c552787614c8fc111e9e3a0cf78625');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('445', '398d5d59c2b3be289a76f39344e7e4c4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('448', '166772b415ca1aa34f567b5e8778b361');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('449', '021524c717f134067980da5a04ba38d9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('450', '61f74340ccd22d29b5cc0054553ac2b4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('452', 'f75f9ef3dc87653db9eb667ab8f460cf');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('454', '69603e1d1dff4e9a7b3ad1c1750b0088');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('551', 'bdea1daa4a220df9a84ae6c786e33eb6');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('456', '39ff9ada2eb85fbdaae316faa13a01b7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('457', '2c447b162d3ea728f7cb2df74a055446');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('458', '5edeb414336ccf8756d1f4b2dfe19b64');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('459', '9ae7a5e287429f7f094bf3c0b289815a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('461', '2d1703be283f547f382fbee237c1e4b0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('463', 'c02b543c1e6d4fbab73a5ec6446ba8fa');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('464', 'e819a9e4ec23e458747b4f1f600c0c15');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('467', '1591a114eee0bfb4cc7f19377fd6831a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('468', 'f8c06d3132be6700bf92927d8274061b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('560', '93a6da2aa6f0833cda198b30f8b5ad75');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('478', '20359a2a17f069456cb368023eee95a8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('474', '144f6c3f0e41ff03fd52ab643179346a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('476', '48fa8870074c44358bea0b4c6e5d4ceb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('475', 'e62bd77411571b6b517f10d873a4eafc');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('477', 'b044f073c3d231abef3c9a74addb6315');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('480', 'b19ab39ae130f8c544d2b28ed7625dac');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('481', 'c5062a6ec339b709b2db3a6a7ebdb79f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('482', '755e9757584ef3ccbcfe9e2fad41fb07');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('484', 'd985d0fe9ccaf293c3473892d3bcd5e3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('486', '476e56d92ab353e9819a8935016afcb1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('487', 'fa0c8b15f071d262b986efe9a0939cb7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('489', 'b29f3682ea21b54a313c4aa002c1cee9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('491', '08bb0f0a22bf3d08793c30b92bee37eb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('492', 'a0fd5fce56f17c9487e4df58c9e02a84');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('493', '008c881c8848adb10f46bc9dc6c8ab23');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('495', '2338dfc07801f8bb694c4ac5c93073e9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('496', '75e7b9e79facec1f471b1bab8cce64aa');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('497', 'b57e3d833f871843d4994dfc68662b6b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('498', '969591fc4738694044c8ced387e47b63');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('415', '71cccf0823196ced8bc17ea3d79cadce');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('500', '03d3747e49ff19f1cfe3f1611a71568e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('501', '82ab43d2c122022d656a39a4b1bea584');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('509', 'ab57c7d9468fb488151fe87ecbbf6dca');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('507', '3a83fa6f5b82ffae31a8079dad19cf42');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('510', 'b0eec8857d42ad9fc5b407a68a7d85c5');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('511', '54f8e36af83e7a0fdcbe6a3b9e67e945');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('506', 'c7e69e6774a05dfd035a192cc06fd0b2');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('512', '2113811c26453c8c78e1d35c434979ce');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('513', 'da1ca6a9e828b00cfedf4336a995c0ad');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('465', '43f3a6fab0c5f64f6bb22d06f3c74f0a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('424', '6a4f43eb2c1eccc11f354869682d5307');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('518', 'a970752b24eb48421ff6cb6c7047b762');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('521', 'e8eaa3ef2effd759b5eedd4d925ed11e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('603', '7c7b5d30ac56fbe262ad8b8f90e98c02');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('514', '607cce9769d5dc48592c4c740fee1257');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('525', '4d5b8ec2c2cfcb045976889ac5b7cad1');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('527', '9bcc866b5b88d6900f0801475e5a5199');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('528', '0d3d4cea081c67856e111e575500d1c8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('600', '6e014c4f20c13960adcc6a6df8701bf4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('531', '60a5fae0013bd4527a6037adcd4cd89d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('537', '2e052ac7a0caac7be1f6fb946642d1e3');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('539', '066a0d3faebd53bfcf91107179947c5c');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('540', 'f2d1668d12002632d5f01af8516157b0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('542', 'eed24db8fce926e32e38034cc4ee5bf4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('545', '4cdb017ddffa7b0b63fdf4950fe372dd');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('546', 'e236dd28264dc8db136648cf15aa23e5');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('548', '672b6414ed0f845a17ed575e6af2ebf0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('552', '40af7339699568dfdaca1cf24636589a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('556', 'ef7e906fac94b9947287052107416622');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('555', '1beeaa7de925a0958b69abe7f91ec3eb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('564', '4c2743925e1907d9519656e7c36193eb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('559', '15ad66f5ba559961ca3577d8a91ea082');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('561', '2395774ac3105636bb8ad0fda800e902');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('566', '59edef1109d8332b87c2ac7de2086015');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('567', '1a994f20a7095de7567ba5fc8f1ca217');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('568', '7c7f87fc1601b4b445a1595622346d10');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('569', '3db0d3b32748d59b1b0a16de98580929');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('571', '294345d8e73122c0f3253d4e439776e0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('572', 'aca6e4115a397b86d12cf4bf58330ca9');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('573', '3e24fabe7ee3222befd7a2ccdd80c86a');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('574', '7ad3f32d969656f170218c4a9f4a4dae');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('576', '5af2dcf2554cef7a101a764980dd08c6');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('577', 'ae3c8551b02df43758dad3e8d9eebd86');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('619', 'f4fe809f55e1c252f1bcec1d417b5beb');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('579', '6d2a92dd79abca14dfbba11070571433');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('584', 'cf5e3329f535ecf634e2ea7591ad1e69');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('586', 'e53ae219eed534852c0c9bdbcebc0e9f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('588', '48060d569ee3fdb4212565a4184b0052');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('589', '2a72d92ae320cf8f64cce0b74dd22862');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('591', '098034055ac4c95ced4c684564b0139e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('593', '13dfd971dbfabc1d993ec7975c00a18f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('594', 'a8410c84814d3e6fc2ea8866eb2d2697');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('595', '3e5b179c4f1468c68682786acfdf6079');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('596', '144ee22c67f5348aee509d084c16b07d');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('597', 'efdc7a597f378f71754c8b88ba15b9a4');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('598', '9f9bd6d1d825caeb36eee2f8db78a1fe');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('599', 'ad000f731307b47c248e675fbe85feb0');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('604', '8601c0b886073c17f3eaa4d9a769e24b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('606', '557ca94339f621a267963c022273bd3b');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('607', '9c128d18a8f568c545fa7cac414c0999');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('608', 'f32ad8f9da5265350cccac51bb9694b8');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('609', '0b9be034f9fddf4ebf24e595c05bde57');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('611', '0170f5586362d9fa1ce0faa82fa0c9c7');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('612', '2e93be1854d5d1fb2fb55ca3a2d1cfbc');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('614', '6b3616ae8aa21ead07fc042799ccb59e');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('615', '9a2246d4c866890988afaef4d0b54e23');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('618', 'f25a56d4b19743f01b3f32362200729f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('620', '165af0f3b479a2b29c33492f08d0be07');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('621', 'b9ea60bd6c657abba5d3f4cac895cb51');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('622', 'eaabe5955550d3e98ea4c4f89e18314f');
INSERT INTO `platinum_cookies` (`userid`, `cookie`) VALUES ('623', 'bc0fd7a1bfcf26b4ea2ae2b1029c41fc');


# dumping data for swingornot2.platinum_email_templates
INSERT INTO `platinum_email_templates` (`id`, `file_content`, `file_name`) VALUES ('1', 'Dear <<REALNAME>>, <br><br>\r\nThanks for signing up and welcome!  Here is what you submitted:<br><br>\r\nUsername:  <<USERNAME>> <br>\r\nPassword:  <<PASSWORD>> <br><br>\r\nYou will need your Username and Password to login to the site, so be sure and save this email somewhere safe.<br><br>\r\nWe take security and privacy very seriously.  Your password is encrypted using one-way encryption, therefore we cannot send it to you on request.  If you forget your password, we can only provide you with your chosen password hint. For more information, please read our sites privacy policy.<br><br>\r\nYour password hint is: <<SIGNUP_HINT>> <br><br>\r\nYou may now proceed to  <<BASE_URL>>   and update your picture and other details in your profile.<br><br>\r\nThanks,<br>\r\n<<OWNER_NAME>> <br>\r\n<<OWNER_EMAIL>> <br>\r\n', 'signup_email');
INSERT INTO `platinum_email_templates` (`id`, `file_content`, `file_name`) VALUES ('2', 'New image added to <<BASE_URL>>\r\n<b>User Details :</b> <br><br>\r\nUsername : <<USERNAME>> <br>\r\nUsertype   : <<USERTYPE>><br><br>\r\nImage : <img src=\"<<IMAGE_SRC>>\" border=1 >\r\n', 'new_image_notification');
INSERT INTO `platinum_email_templates` (`id`, `file_content`, `file_name`) VALUES ('3', 'Dear <<TO_USERNAME>> <br><br>\r\nYou have received a Private Message entitled \" <<USER_SUBJECT>> \" from the following user<br><br>\r\n<b>User Details :</b> <br><br>\r\nUsername : <<FROM_USERNAME>> <br>\r\nUsertype   : <<FROM_USERTYPE>><br><br>\r\nRegards,<br>\r\nAdmin <br>\r\n<<BASE_URL>>', 'private_message_notification');


# dumping data for swingornot2.platinum_favourites
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('5', '564', '506');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('3', '73', '424');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('6', '564', '531');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('7', '398', '299');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('8', '398', '532');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('9', '565', '16');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('10', '568', '470');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('11', '529', '558');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('12', '529', '557');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('13', '529', '532');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('14', '529', '531');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('15', '529', '521');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('16', '529', '506');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('17', '529', '453');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('18', '529', '439');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('19', '529', '424');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('20', '529', '423');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('21', '529', '372');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('22', '529', '364');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('23', '529', '345');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('24', '529', '73');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('25', '529', '67');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('26', '529', '54');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('27', '565', '439');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('29', '565', '470');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('30', '581', '359');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('31', '592', '355');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('32', '597', '571');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('33', '529', '524');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('34', '513', '571');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('35', '514', '239');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('36', '606', '579');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('37', '606', '462');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('38', '612', '524');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('39', '453', '506');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('40', '453', '16');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('41', '532', '570');
INSERT INTO `platinum_favourites` (`id`, `user_id`, `fav_user_id`) VALUES ('42', '623', '16');


# dumping data for swingornot2.platinum_featureduser
INSERT INTO `platinum_featureduser` (`gender`, `id`) VALUES ('m', '479');
INSERT INTO `platinum_featureduser` (`gender`, `id`) VALUES ('f', '424');


# dumping data for swingornot2.platinum_forums
INSERT INTO `platinum_forums` (`forum_id`, `forum_pid`, `order_by`, `forum`, `description`, `forum_lock`, `user_ids`) VALUES ('1', '0', '0', 'General Discussion', 'Any and everything', 'n', NULL);
INSERT INTO `platinum_forums` (`forum_id`, `forum_pid`, `order_by`, `forum`, `description`, `forum_lock`, `user_ids`) VALUES ('2', '0', '0', 'Want to party?', 'Get together discussions', 'n', NULL);
INSERT INTO `platinum_forums` (`forum_id`, `forum_pid`, `order_by`, `forum`, `description`, `forum_lock`, `user_ids`) VALUES ('3', '0', '0', 'Swing Or Not News', 'News and Information from Swing Or Not', 'n', NULL);


# dumping data for swingornot2.platinum_image_types
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('1', 'jpg');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('2', 'JPG');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('3', 'jpeg');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('4', 'JPEG');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('5', 'png');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('6', 'PNG');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('7', 'GIF');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('8', 'gif');
INSERT INTO `platinum_image_types` (`id`, `ext`) VALUES ('9', 'bmp');


# dumping data for swingornot2.platinum_newest_pictures
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('1', '554', '1', '2005-03-18 15:29:08');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('2', '555', '1', '2005-03-19 18:47:27');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('3', '557', '1', '2005-03-21 06:37:02');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('4', '557', '2', '2005-03-21 06:40:22');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('5', '308', '1', '2005-03-21 23:27:46');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('6', '558', '1', '2005-03-22 03:56:48');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('7', '558', '2', '2005-03-22 03:57:16');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('18', '466', '5', '2005-03-30 10:08:38');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('9', '466', '3', '2005-03-22 16:09:15');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('10', '466', '4', '2005-03-22 16:09:29');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('11', '470', '1', '2005-03-24 10:28:16');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('12', '561', '1', '2005-03-25 01:40:33');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('14', '561', '2', '2005-03-25 01:41:12');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('15', '561', '3', '2005-03-25 01:41:54');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('16', '564', '1', '2005-03-27 01:17:28');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('17', '565', '1', '2005-03-29 16:07:33');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('19', '466', '6', '2005-03-30 10:08:56');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('20', '466', '7', '2005-03-30 10:09:09');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('21', '566', '1', '2005-03-30 18:01:14');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('22', '569', '1', '2005-04-03 23:43:28');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('23', '570', '1', '2005-04-04 22:18:59');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('24', '571', '1', '2005-04-07 22:37:39');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('25', '575', '1', '2005-04-14 00:13:43');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('26', '575', '2', '2005-04-14 00:14:01');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('27', '575', '3', '2005-04-14 00:14:21');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('28', '575', '4', '2005-04-14 00:15:40');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('29', '529', '1', '2005-04-15 16:47:31');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('30', '578', '1', '2005-04-20 19:03:44');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('31', '579', '1', '2005-04-21 02:38:42');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('32', '579', '2', '2005-04-21 02:40:07');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('33', '579', '3', '2005-04-21 02:40:29');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('35', '395', '1', '2005-04-23 17:43:36');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('36', '585', '1', '2005-04-28 21:57:28');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('37', '587', '1', '2005-04-29 19:58:07');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('38', '587', '2', '2005-04-29 19:57:43');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('39', '588', '1', '2005-04-30 12:22:20');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('40', '592', '1', '2005-05-13 14:22:45');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('41', '592', '2', '2005-05-13 14:23:00');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('42', '261', '1', '2005-05-26 09:19:47');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('43', '598', '1', '2005-05-26 17:39:11');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('44', '424', '1', '2005-06-14 18:00:27');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('45', '604', '1', '2005-06-18 02:46:39');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('46', '607', '1', '2005-06-27 17:55:34');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('47', '607', '2', '2005-06-27 17:52:22');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('49', '607', '3', '2005-06-27 17:56:32');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('50', '609', '1', '2005-07-01 16:22:56');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('51', '609', '2', '2005-07-01 16:30:53');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('52', '609', '3', '2005-07-01 16:32:19');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('53', '613', '1', '2005-07-10 11:24:26');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('54', '615', '1', '2005-07-17 21:20:17');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('55', '615', '2', '2005-07-17 21:20:32');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('56', '615', '3', '2005-07-17 21:20:47');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('57', '619', '1', '2005-07-21 01:09:40');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('58', '621', '1', '2005-07-24 22:46:27');
INSERT INTO `platinum_newest_pictures` (`id`, `user_id`, `image_number`, `upload_time`) VALUES ('59', '623', '1', '2005-07-30 11:06:50');


# dumping data for swingornot2.platinum_news
INSERT INTO `platinum_news` (`id`, `uid`, `title`, `news`, `description`, `link`, `date`) VALUES ('1', '0', 'SWINGORNOT.COM is UNDER GRAPHIC CONSTRUCTION', 'YOU CAN STILL RATE AND MEET PEOPLE, WE ARE JUST WORKING ON THE GRAPHICS AND TWEAKING THE SITE!', '', 'http://', '1111124907');


# dumping data for swingornot2.platinum_paypal_transaction_log
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('1', '2004-02-13 05:58:15', '64.4.241.140', '101', '', 'naturian@netvisao.pt', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_signup&subscr_id=S-5XJ162023W934820C&last_name=Martins&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&address_street=Rua+de+Brancanes%0D%0An21+2esq&recurring=1&verify_sign=A3rAO6SKhGScPfvxqxOXAwSeXbJSA3iDHUy0qdQUqm7jFF0GiFnZ6K8R&payer_status=unverified&payer_email=naturian%40netvisao.pt&address_status=unconfirmed&first_name=Andre&receiver_email=geniuspay%40geniusfx.com&payer_id=LTGZHJET8QAZN&address_city=Setubal&reattempt=1&item_number=101&address_state=Setubal&subscr_date=03%3A58%3A10+Feb+13%2C+2004+PST&address_zip=2900-284&notify_version=1.6&period3=3+M&address_country=Portugal&address_name=Andre+Martins&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('2', '2004-02-13 05:58:15', '64.4.241.140', '101', '3PV89811RU8377831', 'naturian@netvisao.pt', '03:58:13 Feb 13, 2004 PST', '9.95000', '0.69000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=03%3A58%3A13+Feb+13%2C+2004+PST&subscr_id=S-5XJ162023W934820C&last_name=Martins&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&payment_type=instant&address_street=Rua+de+Brancanes%0D%0An21+2esq&verify_sign=AFNmdpNlS1xEGoHr3V5XcMnX0-jZAmAyzqypCqYzf02zWlOFxNmkFI2P&payer_status=unverified&payer_email=naturian%40netvisao.pt&txn_id=3PV89811RU8377831&address_status=unconfirmed&first_name=Andre&receiver_email=geniuspay%40geniusfx.com&payer_id=LTGZHJET8QAZN&receiver_id=QFGDAHZ2LSBEG&address_city=Setubal&item_number=101&address_state=Setubal&payment_status=Completed&mc_fee=0.69&payment_fee=0.69&mc_gross=9.95&address_zip=2900-284&notify_version=1.6&address_country=Portugal&address_name=Andre+Martins');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('3', '2004-02-13 08:56:10', '64.4.241.140', '101', '', 'naturian@netvisao.pt', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_cancel&subscr_id=S-5XJ162023W934820C&last_name=Martins&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&address_street=Rua+de+Brancanes%0D%0An21+2esq&recurring=1&verify_sign=ABf-IIgJQFqGbyJbiXuW8XfHKlc-A8Os1D3JkpgKpGrGi3KNaar16WZw&payer_status=unverified&payer_email=naturian%40netvisao.pt&address_status=unconfirmed&first_name=Andre&receiver_email=geniuspay%40geniusfx.com&payer_id=LTGZHJET8QAZN&address_city=Setubal&reattempt=1&item_number=101&address_state=Setubal&subscr_date=06%3A56%3A08+Feb+13%2C+2004+PST&address_zip=2900-284&notify_version=1.6&period3=3+M&address_country=Portugal&address_name=Andre+Martins&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('4', '2004-02-18 11:43:24', '64.4.241.140', '106', '', 'henryvb3@niu.edu', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_signup&subscr_id=S-7RE198327F9279501&last_name=van+bogaert&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&recurring=1&verify_sign=AqvyOPKlUVMZAgLTFj6H2fcOV-IBAt13epo71mYB5K.rTRMjibCn9fz-&payer_status=verified&payer_email=henryvb3%40niu.edu&first_name=henry&receiver_email=geniuspay%40geniusfx.com&payer_id=C4ZGYYM2BENYY&reattempt=1&item_number=106&subscr_date=09%3A43%3A20+Feb+18%2C+2004+PST&notify_version=1.6&period3=3+M&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('5', '2004-02-18 11:43:24', '64.4.241.140', '106', '7E26593220304283U', 'henryvb3@niu.edu', '09:43:21 Feb 18, 2004 PST', '9.95000', '0.59000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=09%3A43%3A21+Feb+18%2C+2004+PST&subscr_id=S-7RE198327F9279501&last_name=van+bogaert&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&payment_type=instant&verify_sign=A2-sSZ35.Erv11A2hZ6NvnxGPSGMAnCzKuzocdBrLgpXT2cfpA4RvOea&payer_status=verified&payer_email=henryvb3%40niu.edu&txn_id=7E26593220304283U&first_name=henry&receiver_email=geniuspay%40geniusfx.com&payer_id=C4ZGYYM2BENYY&receiver_id=QFGDAHZ2LSBEG&item_number=106&payment_status=Completed&mc_fee=0.59&payment_fee=0.59&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('6', '2004-02-22 04:53:08', '64.4.241.140', '113', '', 'shannon.woodrum@us.army.mil', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_signup&subscr_id=S-3YK56745BW6270811&last_name=woodrum&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&recurring=1&payer_status=verified&verify_sign=AUYJKzDOqD.40W9o4LkXSNlanw9vA20vVWkSD.8sNlimxJz9n-zigJyB&payer_email=shannon.woodrum%40us.army.mil&first_name=shannon&receiver_email=geniuspay%40geniusfx.com&payer_id=AQDLWHULMVMUS&reattempt=1&item_number=113&subscr_date=02%3A53%3A06+Feb+22%2C+2004+PST&notify_version=1.6&period3=3+M&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('7', '2004-02-22 04:53:08', '64.4.241.140', '113', '4F788248E7094645R', 'shannon.woodrum@us.army.mil', '02:53:06 Feb 22, 2004 PST', '9.95000', '0.59000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=02%3A53%3A06+Feb+22%2C+2004+PST&subscr_id=S-3YK56745BW6270811&last_name=woodrum&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&payment_type=instant&payer_status=verified&verify_sign=ACuKkifml74pWSN7F44QLHGqjQgOA3GhInlLVm3SfGOjinrg.bfi91G2&payer_email=shannon.woodrum%40us.army.mil&txn_id=4F788248E7094645R&first_name=shannon&receiver_email=geniuspay%40geniusfx.com&payer_id=AQDLWHULMVMUS&receiver_id=QFGDAHZ2LSBEG&item_number=113&payment_status=Completed&mc_fee=0.59&payment_fee=0.59&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('8', '2004-03-31 10:13:33', '64.4.241.140', '106', '', 'henryvb3@niu.edu', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_cancel&subscr_id=S-7RE198327F9279501&last_name=van+bogaert&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&recurring=1&payer_status=verified&verify_sign=Ak-cgopClHTkweHe-qYvvDTqRFogAr78clbUH8f2vhwm-ttEK9.9Wruv&payer_email=henryvb3%40niu.edu&first_name=henry&receiver_email=geniuspay%40geniusfx.com&payer_id=C4ZGYYM2BENYY&reattempt=1&item_number=106&subscr_date=08%3A13%3A30+Mar+31%2C+2004+PST&notify_version=1.6&period3=3+M&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('9', '2004-05-13 04:04:53', '64.4.241.140', '101', '', 'naturian@netvisao.pt', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&receiver_email=geniuspay%40geniusfx.com&mc_currency=USD&first_name=Andre&txn_type=subscr_eot&notify_version=1.6&payer_email=naturian%40netvisao.pt&last_name=Martins&item_name=S.O.N.+Membership&subscr_id=S-5XJ162023W934820C&verify_sign=ACxJuCX17QaYtHvvca3-f8auHhGoAFjOGR5nLVOHDeJr7nxTDirXWrj5&payer_status=verified&payer_id=LTGZHJET8QAZN&item_number=101');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('10', '2004-05-18 04:03:20', '64.4.241.140', '106', '', 'henryvb3@niu.edu', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&receiver_email=geniuspay%40geniusfx.com&mc_currency=USD&first_name=henry&txn_type=subscr_eot&notify_version=1.6&payer_email=henryvb3%40niu.edu&last_name=van+bogaert&item_name=S.O.N.+Membership&subscr_id=S-7RE198327F9279501&verify_sign=ApuZBplXwU1YU6quN6zP9p6b3IkdAswi3HihsNNVd2VI9yvZVn6d5-qq&payer_status=verified&payer_id=C4ZGYYM2BENYY&item_number=106');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('11', '2004-05-22 04:02:28', '64.4.241.140', '113', '3PK88707NM393620X', 'shannon.woodrum@us.army.mil', '02:02:24 May 22, 2004 PDT', '9.95000', '0.00000', 'Pending', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=02%3A02%3A24+May+22%2C+2004+PDT&subscr_id=S-3YK56745BW6270811&last_name=woodrum&pending_reason=echeck&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&business=geniuspay%40geniusfx.com&payment_type=echeck&payer_status=verified&verify_sign=ABU6kt6y2ck4-EQLDflrZ3L3oB7IAXEK5d9CisZKevV6hWyFnFrg1M3W&payer_email=shannon.woodrum%40us.army.mil&txn_id=3PK88707NM393620X&receiver_email=geniuspay%40geniusfx.com&first_name=shannon&payer_id=AQDLWHULMVMUS&receiver_id=QFGDAHZ2LSBEG&item_number=113&payment_status=Pending&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('12', '2004-05-27 00:54:58', '64.4.241.140', '113', '3PK88707NM393620X', 'shannon.woodrum@us.army.mil', '02:02:24 May 22, 2004 PDT', '9.95000', '0.59000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=02%3A02%3A24+May+22%2C+2004+PDT&subscr_id=S-3YK56745BW6270811&last_name=woodrum&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&business=geniuspay%40geniusfx.com&payment_type=echeck&payer_status=verified&verify_sign=A3WBa2PwlBO2l1nW2vzoWaJ.vIiaAY5h9httUjse8xXRb888pCvbwCKZ&payer_email=shannon.woodrum%40us.army.mil&txn_id=3PK88707NM393620X&receiver_email=geniuspay%40geniusfx.com&first_name=shannon&payer_id=AQDLWHULMVMUS&receiver_id=QFGDAHZ2LSBEG&item_number=113&payment_status=Completed&mc_fee=0.59&payment_fee=0.59&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('13', '2004-08-22 04:02:09', '216.113.188.202', '113', '95A24007HK974445K', 'shaneleewoodrum@aol.com', '02:01:59 Aug 22, 2004 PDT', '9.95000', '0.00000', 'Pending', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=02%3A01%3A59+Aug+22%2C+2004+PDT&subscr_id=S-3YK56745BW6270811&last_name=woodrum&pending_reason=echeck&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&business=payment%40hollywoodrebels.com&payment_type=echeck&payer_status=verified&verify_sign=AsBp6EEJSM9G5kzT9d6pEWpNA6irAeeVONu4svvbVLCqB.pX82kPGR.1&payer_email=shaneleewoodrum%40aol.com&txn_id=95A24007HK974445K&receiver_email=payment%40hollywoodrebels.com&first_name=shannon&payer_id=AQDLWHULMVMUS&receiver_id=QFGDAHZ2LSBEG&item_number=113&payment_status=Pending&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('14', '2004-09-01 07:11:40', '216.113.188.202', '113', '', 'shaneleewoodrum@aol.com', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_cancel&subscr_id=S-3YK56745BW6270811&last_name=woodrum&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&recurring=1&payer_status=verified&verify_sign=AQ1bTMkiQykBQEdCypN7pCW8RK6VAYefNWki2ouW0Iz9EvY7zKRt1wHf&payer_email=shaneleewoodrum%40aol.com&first_name=shannon&receiver_email=payment%40hollywoodrebels.com&payer_id=AQDLWHULMVMUS&reattempt=1&item_number=113&subscr_date=05%3A11%3A38+Sep+01%2C+2004+PDT&notify_version=1.6&period3=3+M&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('15', '2004-09-01 07:11:40', '216.113.188.202', '113', '', 'shaneleewoodrum@aol.com', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&receiver_email=payment%40hollywoodrebels.com&mc_currency=USD&first_name=shannon&txn_type=subscr_eot&notify_version=1.6&payer_email=shaneleewoodrum%40aol.com&last_name=woodrum&item_name=S.O.N.+Membership&subscr_id=S-3YK56745BW6270811&verify_sign=A-NuDSs5RosOxStFkPwTUYr4GH4IAGeOro5HeR1Ikq89kP8vG.Cbhk7s&payer_status=verified&payer_id=AQDLWHULMVMUS&item_number=113');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('16', '2004-09-01 12:01:28', '216.113.188.202', '113', '95A24007HK974445K', 'shaneleewoodrum@aol.com', '02:01:59 Aug 22, 2004 PDT', '9.95000', '0.00000', 'Failed', '', 'Connection timed out', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=02%3A01%3A59+Aug+22%2C+2004+PDT&subscr_id=S-3YK56745BW6270811&last_name=woodrum&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&business=payment%40hollywoodrebels.com&payment_type=echeck&payer_status=verified&verify_sign=AsFTo7Ov0MtFg9fCSUdxo957a6OTAC6IqxUIOMu0uuBtsKC-1FoXuzUL&payer_email=shaneleewoodrum%40aol.com&txn_id=95A24007HK974445K&receiver_email=payment%40hollywoodrebels.com&first_name=shannon&payer_id=AQDLWHULMVMUS&receiver_id=QFGDAHZ2LSBEG&item_number=113&payment_status=Failed&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('17', '2004-12-10 11:22:36', '216.113.188.202', '314', '', 'andeljow@siu.edu', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_signup&subscr_id=S-9T929203BF9922719&last_name=jowers&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&address_street=P.O.+Box+1725&recurring=1&payer_status=unverified&verify_sign=Ain8waYYc4LHmNuw1hHW6RGhp6u7ABdCnp1VjcwqVCudOcw.6vGZPBgZ&payer_email=andeljow%40siu.edu&address_status=confirmed&first_name=andel&receiver_email=payment%40hollywoodrebels.com&payer_id=URK67QF967L4Y&address_city=Marietta&reattempt=1&item_number=314&address_state=GA&subscr_date=09%3A21%3A23+Dec+10%2C+2004+PST&address_zip=30061&notify_version=1.6&period3=3+M&address_country=United+States&address_name=andel+jowers&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('18', '2004-12-10 11:22:36', '216.113.188.202', '314', '3DY26063NR679453L', 'andeljow@siu.edu', '09:21:28 Dec 10, 2004 PST', '9.95000', '0.59000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=09%3A21%3A28+Dec+10%2C+2004+PST&last_name=jowers&subscr_id=S-9T929203BF9922719&payment_gross=9.95&mc_currency=USD&item_name=S.O.N.+Membership&payment_type=instant&business=payment%40hollywoodrebels.com&address_street=P.O.+Box+1725&verify_sign=ASZ88gcmbOZUMLLl3NUkXgztYNK3AeEecL4yizsbcrSfZFffU9OPJziW&payer_status=unverified&txn_id=3DY26063NR679453L&payer_email=andeljow%40siu.edu&receiver_email=payment%40hollywoodrebels.com&address_status=confirmed&first_name=andel&payer_id=URK67QF967L4Y&receiver_id=QFGDAHZ2LSBEG&address_city=Marietta&item_number=314&address_state=GA&payment_status=Completed&payment_fee=0.59&mc_fee=0.59&mc_gross=9.95&address_zip=30061&notify_version=1.6&address_country=United+States&address_name=andel+jowers');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('19', '2004-12-31 14:59:25', '216.113.188.202', '328', '', 'gonedeaf85@aol.com', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_signup&subscr_id=S-0XP97404GY8419150&last_name=Weber&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&recurring=1&payer_status=verified&verify_sign=Az3MZ9C-xn4725rWy6SOAVM8hTVEAvNFLsXjHs6xpkAzay9Mo0jC3TD9&payer_email=gonedeaf85%40aol.com&first_name=Eric&receiver_email=payment%40hollywoodrebels.com&payer_id=TYQX92CCRG9RQ&reattempt=1&payer_business_name=Exotic+DMC&item_number=328&subscr_date=12%3A59%3A23+Dec+31%2C+2004+PST&notify_version=1.6&period3=3+M&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('20', '2004-12-31 14:59:25', '216.113.188.202', '328', '4JF99701VU903474Y', 'gonedeaf85@aol.com', '12:59:23 Dec 31, 2004 PST', '9.95000', '0.59000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=12%3A59%3A23+Dec+31%2C+2004+PST&subscr_id=S-0XP97404GY8419150&last_name=Weber&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&business=payment%40hollywoodrebels.com&payment_type=instant&payer_status=verified&verify_sign=AVh3Y8008GU6K97HomyBdyT0teaDAdH7W65G8gpvGVRampG0zC23i41e&payer_email=gonedeaf85%40aol.com&txn_id=4JF99701VU903474Y&first_name=Eric&receiver_email=payment%40hollywoodrebels.com&payer_id=TYQX92CCRG9RQ&receiver_id=QFGDAHZ2LSBEG&payer_business_name=Exotic+DMC&item_number=328&payment_status=Completed&mc_fee=0.59&payment_fee=0.59&mc_gross=9.95&notify_version=1.6');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('21', '2005-01-03 11:33:49', '216.113.188.202', '328', '', 'gonedeaf85@aol.com', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_cancel&subscr_id=S-0XP97404GY8419150&last_name=Weber&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&recurring=1&payer_status=verified&verify_sign=A89TqtKRUAtVTyJXe1TKKr7nznbGAvx3jdTszJPeGyGi.6gA6IMbH1L8&payer_email=gonedeaf85%40aol.com&first_name=Eric&receiver_email=payment%40hollywoodrebels.com&payer_id=TYQX92CCRG9RQ&reattempt=1&payer_business_name=Exotic+DMC&item_number=328&subscr_date=09%3A33%3A46+Jan+03%2C+2005+PST&notify_version=1.6&period3=3+M&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('22', '2005-03-10 04:05:41', '216.113.188.202', '314', '99T6355157871041P', 'andeljow@siu.edu', '02:05:38 Mar 10, 2005 PST', '9.95000', '0.59000', 'Completed', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_payment&payment_date=02%3A05%3A38+Mar+10%2C+2005+PST&last_name=jowers&subscr_id=S-9T929203BF9922719&payment_gross=9.95&mc_currency=USD&item_name=S.O.N.+Membership&payment_type=instant&business=payment%40hollywoodrebels.com&address_street=P.O.+Box+1725&verify_sign=ABHX8VK2ORcbEPfrEm7LLYXFeEAvAcHwU21Fd6NkOPQ9ZbJBkwsFca7k&payer_status=unverified&txn_id=99T6355157871041P&payer_email=andeljow%40siu.edu&receiver_email=payment%40hollywoodrebels.com&address_status=confirmed&first_name=andel&payer_id=URK67QF967L4Y&receiver_id=QFGDAHZ2LSBEG&address_city=Marietta&item_number=314&address_state=GA&payment_status=Completed&payment_fee=0.59&mc_fee=0.59&mc_gross=9.95&address_zip=30061&notify_version=1.6&address_country=United+States&address_name=andel+jowers');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('23', '2005-03-31 04:07:24', '216.113.188.202', '328', '', 'gonedeaf85@aol.com', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&payer_business_name=Exotic+DMC&receiver_email=payment%40hollywoodrebels.com&mc_currency=USD&first_name=Eric&txn_type=subscr_eot&notify_version=1.6&payer_email=gonedeaf85%40aol.com&last_name=Weber&item_name=S.O.N.+Membership&subscr_id=S-0XP97404GY8419150&verify_sign=AiPC9BjkCyDFQXbSkoZcgqH3hpacAQblGSZpqbsladQ6AvmpaoF9aDYG&payer_status=verified&payer_id=TYQX92CCRG9RQ&item_number=328');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('24', '2005-06-10 04:00:39', '216.113.188.202', '314', '', 'andeljow@siu.edu', '', '9.95000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_failed&subscr_id=S-9T929203BF9922719&last_name=jowers&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&payer_status=unverified&verify_sign=AcTHCSL6qe4ugMF7JjRoVrV30l.3AbOxshKZX5IKvEa6rCoKZsh28U9v&payer_email=andeljow%40siu.edu&first_name=andel&receiver_email=payment%40hollywoodrebels.com&payer_id=URK67QF967L4Y&retry_at=02%3A00%3A37+Jun+13%2C+2005+PDT&item_number=314&mc_gross=9.95&notify_version=1.7');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('25', '2005-06-13 04:36:08', '216.113.188.202', '314', '', 'andeljow@siu.edu', '', '9.95000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_failed&subscr_id=S-9T929203BF9922719&last_name=jowers&item_name=S.O.N.+Membership&payment_gross=9.95&mc_currency=USD&payer_status=unverified&verify_sign=AF3jlXSAFM2ATZQquyR30Q4P88UPAFiJhVtz5rTa--cKwH9u35tpVphG&payer_email=andeljow%40siu.edu&first_name=andel&receiver_email=payment%40hollywoodrebels.com&payer_id=URK67QF967L4Y&retry_at=02%3A36%3A05+Jun+18%2C+2005+PDT&item_number=314&mc_gross=9.95&notify_version=1.7');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('26', '2005-06-18 04:36:21', '216.113.188.202', '314', '', 'andeljow@siu.edu', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&txn_type=subscr_cancel&subscr_id=S-9T929203BF9922719&last_name=jowers&item_name=S.O.N.+Membership&mc_currency=USD&amount3=9.95&address_street=P.O.+Box+1725&recurring=1&payer_status=unverified&verify_sign=A864TroC5dPJBfhmolhrVMG6JyZsA19MlHCt5hY5q2Ytwrhu3e0ajPh-&payer_email=andeljow%40siu.edu&address_status=confirmed&first_name=andel&receiver_email=payment%40hollywoodrebels.com&address_country_code=US&payer_id=URK67QF967L4Y&address_city=Marietta&reattempt=1&item_number=314&address_state=GA&subscr_date=02%3A36%3A18+Jun+18%2C+2005+PDT&address_zip=30061&charset=windows-1252&notify_version=1.7&period3=3+M&address_country=United+States&address_name=andel+jowers&mc_amount3=9.95');
INSERT INTO `platinum_paypal_transaction_log` (`id`, `date_addded`, `ip`, `user_id`, `txn_id`, `payer_email`, `payment_date`, `payment_gross`, `payment_fee`, `payment_status`, `memo`, `paypal_response`, `paypal_post_vars`) VALUES ('27', '2005-06-18 04:36:43', '216.113.188.202', '314', '', 'andeljow@siu.edu', '', '0.00000', '0.00000', '', '', 'VERIFIED', 'cmd=_notify-validate&receiver_email=payment%40hollywoodrebels.com&mc_currency=USD&first_name=andel&txn_type=subscr_eot&notify_version=1.7&charset=windows-1252&payer_email=andeljow%40siu.edu&last_name=jowers&item_name=S.O.N.+Membership&subscr_id=S-9T929203BF9922719&verify_sign=AG2TcRVUkW.Y4gsuBjm32V0Oczu7Alxwf9smu-RZMkjkFgqka8nIa5Qy&payer_status=unverified&payer_id=URK67QF967L4Y&item_number=314');




# dumping data for swingornot2.platinum_pms
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('1', '2', 'what\'s up', 'this is bob and lisa private message test', '9', '68.114.198.142', 'inbox', '20030909144158', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('36', '61', 'r u a couple or a female', 'whatever u r, u r just buetiful.', '342', '129.120.6.186', 'inbox', '20050121130607', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('31', '9', 'RE: RE: where do you live', 'hello yes im looking for a cpl to play with  i live in springfield illinois you may e-mail me at potheadjoe2003@warpnet.net  that is my radio name    thanks joe', '59', '68.76.166.165', 'inbox', '20041116122123', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('18', '41', 'great profile', 'Would love to chat with you sometime.', '61', '12.216.238.51', 'inbox', '20031128201130', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('4', '9', 'Hi', 'Great pic.  You are a very attractive couple :)\r\n\r\ncharls\r\n', '22', '12.145.231.14', 'trash', '20030930201707', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('37', '16', 'LOOKING GOOD', 'LETS PARTY', '343', '64.12.117.9', 'inbox', '20050404191317', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('8', '20', 'damn!!', 'what up lets chat sometime!!\r\nyou look fucking hot', '30', '12.215.64.123', 'inbox', '20030929181457', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('38', '337', 'hey there', 'Great abs, just thought i would say hi.\r\n\r\nMarc', '349', '4.60.81.255', 'trash', '20050206224053', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('10', '9', 'im from iowa!!', 'im just a single guy, but maybe your husband and i could take tuns??  I dont know, just wanted to tell ya i lived in iowa if you are interesed', '9', '12.215.64.123', 'trash', '20030930201651', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('11', '25', 'RE: Hi!', 'i live in southwest iowa, are you a male or female??', '16', '12.215.64.123', 'inbox', '20030929221834', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('29', '59', 'RE: where do you live', '> Hi , Brandy and Ron here, are you looking for a couple to play with as> well. Give us a yell. hugs and kisses, Brandy.', '9', '152.163.101.13', 'trash', '20041116122504', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('27', '55', 'RE: whats up', '> where you from wanna chat e-mail me at bigdave461@hotmail.com', '55', '205.188.209.171', 'trash', '20040215015528', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('28', '9', 'READY 2 PARTY ?', 'WHATS U SAY ABOUT US GETTING TOGETHER  AND HAVE A FREAK FOR ALL!!!E-MAIL US AT THEYSAID2HAVEFUN@AOL.COM', '9', '152.163.101.10', 'saved', '20041029033601', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('26', '55', 'whats up', 'where you from wanna chat e-mail me at bigdave461@hotmail.com', '55', '205.188.209.141', 'trash', '20040215015525', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('17', '9', 'where do you live', 'Hi , Brandy and Ron here, are you looking for a couple to play with as well. Give us a yell. hugs and kisses, Brandy.', '59', '64.12.97.7', 'saved', '20041029033932', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('19', '59', 'RE: where do you live', '> Hi , Brandy and Ron here, are you looking for a couple to play with as> well. Give us a yell. hugs and kisses, Brandy.', '9', '12.216.238.51', 'trash', '20041116122519', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('20', '59', 'RE: where do you live', '> Hi , Brandy and Ron here, are you looking for a couple to play with as> well. Give us a yell. hugs and kisses, Brandy.\r\n\r\nHi there,\r\nWe live in Columbia', '9', '12.216.238.51', 'trash', '20041116122537', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('21', '41', 'HI', 'I was wondering if you are looking for some fun tonight.\r\nCarlos,', '63', '206.149.64.80', 'inbox', '20031129135523', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('22', '20', 'Hi', 'I use to live in St.Louis I live in California now my name is GLENN.', '70', '66.120.156.104', 'trash', '20040215014529', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('23', '55', 'your fine self!!!', 'you look very good!! tastefull!!! i would like 2 chat with you some time!i dont have a picture right now cuz my scanner is broken!,but you can check me out on my website at www.djnk.com or e-mail me at www.listo12172@sbcglobal.net', '76', '68.75.64.31', 'trash', '20050225123652', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('24', '54', 'hi', 'write back to us at strtsx@msn.com:)', '54', '207.223.242.35', 'inbox', '20040104003735', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('25', '65', 'You  look fine', 'I would like to meet you here is my e-mail   gmcstl@sbcglobal.net\r\n       Home phone 909-514-0589.  My name is Glenn.', '65', '64.161.226.206', 'trash', '20040107181402', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('32', '16', 'hooking up', 'hello just wondered what you guys was looking for', '16', '68.76.166.165', 'trash', '20041116123531', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('33', '16', 'hooking up', 'was wondering what you two were looking for', '16', '68.76.166.165', 'trash', '20041116124054', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('34', '16', 'hooking up', 'hello 33/m/spfld just wondering what you looking for?', '73', '68.76.167.65', 'inbox', '20050404191231', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('35', '16', 'Hello', 'Hi. I see you have not been on in a while. In Missouri here.', '16', '69.152.32.208', 'inbox', '20050404191305', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('39', '54', 'hi', 'hihihihihihihihihihihi', '360', '64.12.117.9', 'inbox', '20050210013256', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('40', '363', 'Tulsa traveling couple', 'Would like to see your photos and maybe meet you sometime soon', '362', '172.145.38.139', 'inbox', '20050210050252', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('41', '9', 'Hey, love to meet you', 'Hello, hope to see you soon,.......', '9', '172.145.38.139', 'inbox', '20050210051250', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('79', '439', 'Meeting', 'Do you allow single men?', '439', '12.221.1.9', 'inbox', '20050303103446', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('43', '364', 'Hi Honey...', '   44 year old w/m, nice looking from Florida, will send pix if I hear from you, love yours.... contact:  theboz61@hotmail.com', '364', '68.204.152.45', 'inbox', '20050223101159', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('80', '424', 'nice', 'Damn girl you are hot. curved7inch@yahoo.com if you want to trdae pics.', '526', '68.228.31.225', 'trash', '20050311123437', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('45', '429', 'hey cutie!', 'well i just wanted to say that i thought yah were cute!', '429', '205.188.117.9', 'inbox', '20050223145546', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('46', '428', 'hottie', 'you live to far away to just up and bone:(\r\n          Charity', '428', '64.12.117.9', 'inbox', '20050224043323', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('48', '423', 'wow', 'wow your hottt mmm r u single sexy', '452', '24.211.113.57', 'trash', '20050226192636', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('73', '384', 'ooo la la', 'Come here and give me some.. DAMN UR FUCKING HOT.. Come play with me love!', '384', '4.244.190.45', 'trash', '20050227193948', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('50', '437', 'hey', 'u are absolutley gorgeous ;)', '437', '65.100.85.196', 'saved', '20050225061909', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('51', '455', 'hungy eyes huh?', 'Well, you got hungry eyes and I wanna eat you hmm there is food for thought....lol To bad you live way way to far away...\r\n       ~~*mistress erotica*~~', '455', '64.12.117.9', 'inbox', '20050225025434', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('52', '455', 'RE: hungy eyes huh?', '> Well, you got hungry eyes and I wanna eat you hmm there is food for> thought....lol To bad you live way way to far away...      > ~~*mistress erotica*~~ so you sent me the message i sent you back? do you have yahoo messenger or AIM??????', '455', '64.12.113.143', 'inbox', '20050225030325', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('53', '439', 'hey', 'private message testing', '358', '68.187.141.68', 'trash', '20050225065226', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('54', '437', 'RE: hey', 'Well, thank you hun you are very hot yourself:) DO you have AIM or yahoo messanger? I would like to chat with you it is kinda funny I was just looking at your pro-file when I got your message to bad you live to far away:(         ~~*Mistress Erotica*~~', '437', '152.163.101.13', 'inbox', '20050225061755', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('55', '76', 'RE: your fine self!!!', '> you look very good!! tastefull!!! i would like 2 chat with you some> time!i dont have a picture right now cuz my scanner is broken!,but you> can check me out on my website at www.djnk.com or e-mail me at> www.listo12172@sbcglobal.net', '55', '205.188.117.13', 'inbox', '20050225123605', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('72', '424', 'hi', 'i want to  fuck  you', '424', '24.99.164.2', 'trash', '20050311124003', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('57', '437', 'RE: RE: hey', 'I have yahoo dogzroc82 and have a cam   you have a cam?', '437', '128.23.128.96', 'inbox', '20050225131035', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('71', '9', 'hello', 'hey i am from missouri you all shoudl come to club erotica:) it would be a lot of fun......cute couple.....mistress erotica', '439', '205.188.117.10', 'inbox', '20050227044925', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('65', '55', 'RE: Hello!', '> Nice photo!\r\nThanks!  I can\'t get to your profile, though.', '55', '71.33.208.222', 'inbox', '20050225181553', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('60', '55', 'Hello!', 'Nice photo!\r\n', '55', '68.62.171.77', 'inbox', '20050225160713', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('61', '371', '...', 'nice pic of u in lingerie.. that dick i could have dealt without seeing tho lol', '482', '66.185.85.78', 'inbox', '20050225174146', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('62', '349', 'RE: hey there', 'im from toronto', '373', '66.185.85.78', 'inbox', '20050225174720', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('63', '382', 'RE: your a hot looking lady', 'im a guy :S', '373', '66.185.85.78', 'inbox', '20050225174748', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('64', '472', 'RE: OMG', 'thanx ', '373', '66.185.85.78', 'inbox', '20050225174804', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('74', '424', 'hi', ' u r very hott u should ge ahold of me :)', '511', '68.41.246.140', 'saved', '20050311124016', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('75', '506', 'hi', 'tooooooo sexy', '511', '68.41.246.140', 'trash', '20050228183734', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('76', '424', 'RE: hi', '> i want to  fuck  you\r\n\r\nsounds good to me', '424', '24.121.86.50', 'saved', '20050311124019', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('77', '424', 'hi', 'sounds good to me sexy', '424', '24.121.86.50', 'trash', '20050311123431', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('78', '360', 'wow', 'ok i saw your pic and all i have to say is WOW!!!!You should plan a road trip to KCMO i would fuck ya:)\r\n              ~~*mistress erotica~~*', '360', '64.12.117.9', 'inbox', '20050303055407', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('69', '423', 'secy', 'hey your cute ', '486', '67.165.238.231', 'trash', '20050226192637', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('70', '452', 'RE: wow', 'ya im not gay so leave me alone', '423', '24.14.6.173', 'inbox', '20050226192617', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('68', '379', 'hi', 'you are SOOO hot, very sexy :)', '379', '68.184.66.174', 'inbox', '20050225190219', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('81', '55', 'nice', 'Damn girl you are hot!!!! curved7inch@yahoo.com if you want to trade pics.', '55', '68.228.31.225', 'inbox', '20050308163644', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('82', '364', 'nice', 'Damn girl you are hot!!!! curved7inch@yahoo.com if you want to trade pics.', '55', '68.228.31.225', 'inbox', '20050308163759', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('83', '524', 'nice', 'Damn girl you are hot!!!! curved7inch@yahoo.com if you want to trade pics.', '55', '68.228.31.225', 'trash', '20050604142537', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('84', '439', 'nice', 'Damn girl you are hot!!!! curved7inch@yahoo.com if you want to trade pics.', '55', '68.228.31.225', 'inbox', '20050308164046', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('85', '372', 'nice', 'Damn girl you are hot!!!! curved7inch@yahoo.com if you want to trade pics.', '55', '68.228.31.225', 'inbox', '20050308164141', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('86', '371', 'hot', 'I like what I see! curved7inch@yahoo.com if you want to trade pics.', '55', '68.228.31.225', 'inbox', '20050308164223', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('87', '424', 'wow', 'love to meet', '424', '207.255.15.159', 'saved', '20050311124022', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('88', '372', 'Hi there,', 'I am in So Cal, what kind of action are you guys into? Lets play!', '372', '66.214.254.26', 'inbox', '20050308180557', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('89', '424', 'hey', 'very sexy!! love the bottoms ttyl', '538', '12.223.202.209', 'inbox', '20050324163851', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('90', '486', 'RE: secy', 'Thank you very much.', '423', '216.106.74.106', 'inbox', '20050308234736', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('91', '452', 'RE: wow', 'Thank you, and ya i\'m single', '423', '216.106.74.106', 'inbox', '20050308234816', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('109', '16', 'Hey luv....', '....am new to site....saw you are also from Mo.....I would love to chat/get to know each other.  You can email me if you like at dangeranger3@hotmail.com!  Look forward to hearing from you!', '565', '69.179.158.218', 'inbox', '20050404191350', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('108', '558', 'care to share', 'love to share you?', '564', '68.107.38.13', 'inbox', '20050327025408', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('107', '423', 'RE: Hello!', ' ?', '423', '216.106.74.198', 'trash', '20050326185926', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('95', '524', 'high', 'hi, how you doin?', '468', '67.181.64.24', 'trash', '20050614211700', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('96', '424', 'RE: hi', '> i want to  fuck  you too....lets play, email me at Espinlbc@hotmail and lets hook up!', '424', '66.214.254.26', 'inbox', '20050311123204', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('97', '511', 'RE: hi', '>  u r very hott u should ge ahold of me :) I would love to....email me a pic to Espinlbc@hotmail and lets play!', '424', '66.214.254.26', 'inbox', '20050311123327', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('98', '424', 'RE: wow', '> love to meet....Me too, I could lick that sexy body of yours for days!', '424', '66.214.254.26', 'trash', '20050311123958', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('99', '538', 'RE: hey', '> very sexy!! love the bottoms ttyl Email me at Espinlbc@hotmail and we can play!', '424', '66.214.254.26', 'inbox', '20050311123623', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('105', '524', 'Hello!', 'Nice photo!\r\n', '524', '68.62.171.77', 'trash', '20050604142044', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('101', '424', 'hey sexy', 'Would love to play......email me at Espinlbc@hotmail and wet can be naughty', '424', '66.214.254.26', 'inbox', '20050311124152', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('103', '424', 'Hello!', 'Nice photo!', '424', '68.62.171.77', 'inbox', '20050313200839', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('104', '423', 'Hello!', 'Nice photo!', '423', '68.62.171.77', 'trash', '20050326190035', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('110', '89', 'Hey luv....', '...I see you also are from Mo....would love to chat/get to know each other....you can email me if you like at dangeranger3@hotmail.com.....', '565', '69.179.158.218', 'inbox', '20050330061735', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('111', '9', '3rd time is a charm!', 'Tried to email you twice and keep getting syntax error.  Drop me a line at dangeranger3@hotmail.com and lets chat there....', '565', '69.179.158.218', 'inbox', '20050329163037', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('112', '395', 'I will be in Fredricksburgh, Va', 'April 3-9 on business.  Are you close enough that we could get together for drinks?  Email me at dangeranger3@hotmail.com and let me know if you are interested.', '565', '69.179.128.114', 'trash', '20050408172150', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('113', '424', 'Drinks?', 'I will be in Fredricksburg, Va April 3-9.  I suspect it is a bit of a drive, but I would love to buy you a drink and get to know you if possible. Let me know if you are interested.  dangeranger3@hotmail.com', '565', '69.179.128.114', 'inbox', '20050330143141', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('114', '67', 'just a quick intro', 'from a fellow Missourian.  I live in St Louis metro area.  Would love to find friends for drinks, concerts, and other pleasureable activities.  Email me at dangeranger3@hotmail.com and let me know a little about yourself(selves)?  ', '565', '69.179.128.114', 'inbox', '20050329214842', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('115', '565', 'RE: Hey luv....', ' > ...I see you also are from Mo....would love to chat/get to know each other....you can email me if you like at dangeranger3@hotmail.com.....', '89', '152.163.101.13', 'inbox', '20050420200213', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('116', '557', 'hi', 'do  you like  to  suck cock', '73', '24.99.164.2', 'inbox', '20050331063110', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('117', '73', 'RE: hooking up', ' > hello 33/m/spfld just wondering what you looking for?', '16', '12.214.90.63', 'inbox', '20050404191245', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('118', '73', 'RE: hooking up', ' > hello 33/m/spfld just wondering what you looking for?\r\n\r\nBi Females', '16', '12.214.90.63', 'inbox', '20050404191302', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('119', '439', 'Hey luv.....', '....where is Blue Springs?  I would love to drop in and sey \"hey\"......', '565', '69.179.168.181', 'inbox', '20050420200612', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('120', '16', 'Would love to chat...', '...I live in St Louis metro area, would love to get to know you.  Email me here if you like or at dangeranger3@hotmail.com', '565', '69.179.168.181', 'inbox', '20050421073106', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('121', '89', 'I recieved a reply to my email......', '...but it was a copy of my message to you?  Were you trying to contact me?  Would love to chat!  ', '565', '69.179.168.181', 'inbox', '20050421083122', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('122', '424', 'You are HOT', 'Damn!! I would like to be all up in there!!!!', '579', '24.54.175.162', 'inbox', '20050421024504', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('123', '557', 'HOT', 'I like what I see. hope you like my pics>>>', '579', '24.54.175.162', 'inbox', '20050421054225', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('124', '423', 'HoT', 'I like what I see. hope you like my pics>>>', '579', '24.54.175.162', 'inbox', '20050421152145', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('125', '558', 'HOT', 'I like what I see. hope you like my pics>>>', '579', '24.54.175.162', 'inbox', '20050609102508', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('126', '506', 'HOT', 'I like what I see. hope you like my pics>>>', '579', '24.54.175.162', 'inbox', '20050421025158', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('127', '453', 'hey sexy', 'Iwould loveto get to know you better I am a bifemale (married)located in south atlanta area. If you would like more photos just let me know My yahoo messanger id is lilsexybifemale69 ormy email  is haneyw@bellsouth.net', '588', '208.61.8.3', 'inbox', '20050719200806', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('128', '355', 'Your ad', 'We read your ad and was wanting to know if you would be intersted in us. We are looking for a female to fuck my boyfriend while I watch. If you would be intersted let us know please.', '592', '24.171.55.198', 'inbox', '20050513142942', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('129', '571', 'You Look Familiar...', 'Hello Evil Kitty....Is your first name Katie?  The reason that I am asking is because we are already communicating with one another on SexSearch.....and if your name is NOT Katie, then you most definitely have a clone somewhere in Chicago!  Either way, I would love to get to know you better....and see MORE of you,too...\r\n\r\nKisses,\r\nGail', '597', '69.208.211.201', 'inbox', '20050525173638', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('130', '524', 'whats up', 'hey', '529', '207.200.116.201', 'trash', '20050604142057', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('131', '529', 'RE: whats up', ' > hey tell me about ur self\r\n', '524', '68.89.11.60', 'inbox', '20050604142029', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('132', '468', 'RE: high', ' fine and u sorry i took so long to respond\r\n', '524', '68.89.11.60', 'inbox', '20050604142602', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('133', '424', 'hey trina', 'this is jake, we met a while ago on HON or Myspace, just wanted to say hi, and that you look better than ever.  drop me a line sometime, would love to hear that you are doing well.\r\n\r\njake\r\n', '513', '68.236.246.227', 'inbox', '20050610130702', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('134', '579', 'Damn Aafrican', 'Is that really yours.  Damn!  Where are you located?  Meaning what state are you from?  Do you swing as a couple.', '606', '69.209.239.80', 'inbox', '20050624211653', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('135', '67', 'hi love what I saw', 'iam from st.louis ck profile love to get to know ya\r\n', '609', '70.249.212.21', 'inbox', '20050701163414', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('136', '16', 'hi love what I saw', 'live ib st.louis ck profile drop me a line   slowridexxx4u@yahoo.com', '609', '70.249.212.21', 'inbox', '20050703084048', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('137', '89', 'hi', 'come on in the water fine   sloweridexxx4u@yahoo.com\r\n', '609', '70.249.212.21', 'inbox', '20050701164953', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('138', '40', 'we would love to chat', 'or can or poss whatever cums up  slowridexxx4u@yahoo.com', '609', '70.249.212.21', 'inbox', '20050701165143', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('139', '453', 'hey', 'hey just wondering if ya where interstared in a 1 on 1 thing with me if ya are add me to ya msn vl_chik_25@hotmail.com hope to hear from ya\r\n', '618', '211.28.144.46', 'inbox', '20050719200841', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('140', '16', 'hey there', 'damn... whats going on \r\nhit me up \r\nyahoo-shvdnthick', '453', '24.98.203.178', 'inbox', '20050729222543', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('141', '506', 'hey u', 'hey sexy...\r\nhit me up on yahoo... shvdnthick', '453', '24.98.203.178', 'inbox', '20050719201846', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('142', '570', 'hi', 'love to meet u', '532', '207.255.15.159', 'inbox', '20050720112322', 'N');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('143', '578', 'Your swingornot photo', 'Hi,\r\n\r\nMy name is Steve and I just discovered this site today.  You are the only one I found in Michigan, and you are close by it seems.  Nice photo.  you look very luscious.\r\n\r\nSteve', '619', '67.162.217.49', 'inbox', '20050721185122', 'Y');
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('144', '73', 'RE: hooking up', ' > hello 33/m/spfld just wondering what you looking for?\r\n\r\nBi females and couple with bi females and submissive hubbys', '16', '12.214.90.63', 'inbox', '20050729222134', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('145', '343', 'RE: LOOKING GOOD', ' > LETS PARTY\r\n\r\nkewl, tell us about her', '16', '12.214.90.63', 'inbox', '20050729222336', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('146', '73', 'RE: hooking up', ' > hello 33/m/spfld just wondering what you looking for?\r\n\r\nbi females', '16', '12.214.90.63', 'inbox', '20050729222350', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('147', '565', 'RE: Would love to chat...', ' > ...I live in St Louis metro area, would love to get to know you.  Email me here if you like or at dangeranger3@hotmail.com\r\n\r\nwe are south of KC', '16', '12.214.90.63', 'inbox', '20050729222428', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('148', '609', 'RE: hi love what I saw', ' > live ib st.louis ck profile drop me a line   slowridexxx4u@yahoo.com\r\n\r\ntngtease@yahoo.com   tell us about her', '16', '12.214.90.63', 'inbox', '20050729222528', NULL);
INSERT INTO `platinum_pms` (`id`, `user_id`, `subject`, `message`, `author_id`, `author_ip`, `pm_status`, `timestamp`, `readornot`) VALUES ('149', '453', 'RE: hey there', ' > damn... whats going on \r\nhit me up \r\nyahoo-shvdnthick\r\n\r\nwe are under  tng_tease,  would love to hear more about her', '16', '12.214.90.63', 'inbox', '20050729222625', NULL);




# dumping data for swingornot2.platinum_ratings
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10942', '424', '10', '0', '202.165.227.7', '20050621033725', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10943', '73', '9', '0', '202.165.227.7', '20050621033739', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10944', '443', '7', '0', '202.165.227.7', '20050621033754', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10945', '57', '8', '0', '202.165.227.7', '20050621033807', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10946', '242', '9', '0', '202.165.227.7', '20050621033821', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10947', '374', '8', '0', '202.165.227.7', '20050621033834', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10948', '359', '8', '0', '68.95.127.89', '20050621185604', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10949', '532', '1', '0', '65.69.69.62', '20050622113420', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10950', '571', '2', '0', '65.69.69.62', '20050622113425', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10951', '349', '3', '0', '65.69.69.62', '20050622113432', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10952', '361', '4', '0', '65.69.69.62', '20050622113436', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10953', '371', '6', '0', '65.69.69.62', '20050622113446', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10954', '28', '7', '0', '65.69.69.62', '20050622113450', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10955', '466', '8', '0', '65.69.69.62', '20050622113500', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10956', '440', '9', '0', '65.69.69.62', '20050622113504', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10957', '566', '10', '0', '65.69.69.62', '20050622113508', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10958', '571', '9', '514', '12.203.241.26', '20050622125456', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10959', '531', '9', '514', '12.203.241.26', '20050622125626', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10960', '453', '10', '0', '64.251.146.10', '20050622144128', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10961', '342', '9', '0', '64.251.146.10', '20050622144137', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10962', '462', '8', '0', '64.251.146.10', '20050622144142', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10963', '453', '8', '0', '12.216.247.90', '20050622184904', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10964', '521', '6', '0', '12.216.247.90', '20050622184920', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10965', '526', '3', '0', '12.216.247.90', '20050622184935', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10966', '29', '4', '0', '12.216.247.90', '20050622184937', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10967', '322', '4', '0', '12.216.247.90', '20050622184940', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10968', '450', '2', '0', '12.216.247.90', '20050622184947', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10969', '424', '1', '0', '66.73.194.65', '20050623202604', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10970', '54', '1', '0', '66.73.194.65', '20050623202610', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10971', '356', '1', '0', '66.73.194.65', '20050623202632', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10972', '538', '4', '0', '66.73.194.65', '20050623202639', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10973', '524', '6', '0', '66.73.194.65', '20050623202654', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10974', '588', '6', '0', '66.73.194.65', '20050623202712', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10975', '345', '8', '0', '66.73.194.65', '20050623202720', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10976', '60', '1', '0', '66.73.194.65', '20050623202726', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10977', '470', '6', '0', '66.73.194.65', '20050623202734', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10978', '432', '1', '0', '66.73.194.65', '20050623202743', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10979', '364', '5', '0', '66.73.194.65', '20050623202751', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10980', '606', '10', '0', '127.0.0.1', '20050624211247', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10981', '424', '2', '0', '12.223.55.6', '20050625012124', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10982', '521', '3', '0', '12.223.55.6', '20050625012128', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10983', '464', '4', '0', '12.223.55.6', '20050625012133', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10984', '578', '9', '0', '68.119.108.102', '20050625172152', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10985', '365', '1', '0', '68.119.108.102', '20050625172157', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10986', '524', '10', '0', '68.119.108.102', '20050625172246', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10987', '488', '8', '0', '68.119.108.102', '20050625172249', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10988', '19', '6', '0', '68.119.108.102', '20050625172254', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10989', '531', '5', '0', '68.119.108.102', '20050625172257', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10990', '422', '1', '0', '68.119.108.102', '20050625172304', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10991', '70', '2', '0', '68.119.108.102', '20050625172307', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10992', '453', '1', '0', '12.216.246.124', '20050625181102', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10993', '487', '2', '0', '12.216.246.124', '20050625181106', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10994', '429', '3', '0', '12.216.246.124', '20050625181110', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10995', '432', '4', '0', '12.216.246.124', '20050625181115', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10996', '42', '5', '0', '12.216.246.124', '20050625181118', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10997', '450', '6', '0', '12.216.246.124', '20050625181121', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10998', '538', '7', '0', '12.216.246.124', '20050625181125', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('10999', '349', '8', '0', '12.216.246.124', '20050625181128', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11000', '418', '9', '0', '12.216.246.124', '20050625181131', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11001', '350', '10', '0', '12.216.246.124', '20050625181133', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11002', '53', '10', '0', '68.75.182.134', '20050627010409', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11003', '462', '1', '0', '68.75.182.134', '20050627010413', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11004', '578', '7', '0', '68.75.182.134', '20050627010511', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11005', '607', '10', '0', '127.0.0.1', '20050627174802', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11006', '585', '10', '607', '68.112.7.41', '20050627180247', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11007', '359', '8', '607', '68.112.7.41', '20050627180251', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11008', '330', '1', '607', '68.112.7.41', '20050627180254', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11009', '77', '2', '607', '68.112.7.41', '20050627180257', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11010', '67', '3', '607', '68.112.7.41', '20050627180302', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11011', '508', '4', '607', '68.112.7.41', '20050627180306', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11012', '408', '5', '607', '68.112.7.41', '20050627180309', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11013', '54', '10', '607', '68.112.7.41', '20050627180319', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11014', '29', '4', '607', '68.112.7.41', '20050627180348', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11015', '480', '3', '607', '68.112.7.41', '20050627180353', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11016', '486', '7', '607', '68.112.7.41', '20050627180359', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11017', '538', '8', '607', '68.112.7.41', '20050627180403', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11018', '608', '10', '0', '127.0.0.1', '20050628132709', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11019', '521', '9', '608', '68.95.68.149', '20050628132958', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11020', '531', '6', '0', '64.215.250.170', '20050629142546', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11021', '490', '2', '0', '64.215.250.170', '20050629142604', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11022', '557', '8', '0', '64.215.250.170', '20050629142716', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11023', '308', '5', '0', '64.215.250.170', '20050629142740', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11024', '532', '6', '0', '64.215.250.170', '20050629142947', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11025', '478', '2', '0', '64.215.250.170', '20050629143012', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11026', '343', '1', '0', '64.215.250.170', '20050629143041', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11027', '16', '4', '0', '64.215.250.170', '20050629143105', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11028', '361', '1', '0', '64.215.250.170', '20050629143132', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11029', '75', '2', '0', '64.215.250.170', '20050629143146', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11030', '557', '10', '0', '66.166.198.115', '20050630134814', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11031', '578', '7', '0', '68.74.107.69', '20050630140152', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11032', '571', '1', '0', '68.74.107.69', '20050630140158', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11033', '269', '2', '0', '68.74.107.69', '20050630140203', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11034', '532', '9', '0', '216.214.206.207', '20050630235037', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11035', '119', '4', '0', '216.214.206.207', '20050630235055', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11036', '424', '10', '0', '67.71.81.118', '20050701122555', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11037', '495', '9', '0', '67.71.81.118', '20050701122558', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11038', '372', '8', '0', '67.71.81.118', '20050701122603', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11039', '428', '7', '0', '67.71.81.118', '20050701122607', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11040', '261', '6', '0', '67.71.81.118', '20050701122610', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11041', '440', '5', '0', '67.71.81.118', '20050701122612', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11042', '457', '4', '0', '67.71.81.118', '20050701122615', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11043', '272', '3', '0', '67.71.81.118', '20050701122617', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11044', '450', '2', '0', '67.71.81.118', '20050701122620', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11045', '500', '1', '0', '67.71.81.118', '20050701122623', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11046', '524', '6', '0', '67.162.95.156', '20050701133613', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11047', '261', '1', '0', '12.221.165.81', '20050701140248', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11048', '495', '2', '0', '12.221.165.81', '20050701140251', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11049', '339', '3', '0', '12.221.165.81', '20050701140255', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11050', '360', '4', '0', '12.221.165.81', '20050701140301', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11051', '356', '5', '0', '12.221.165.81', '20050701140304', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11052', '149', '6', '0', '12.221.165.81', '20050701140309', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11053', '75', '7', '0', '12.221.165.81', '20050701140312', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11054', '27', '8', '0', '12.221.165.81', '20050701140315', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11055', '19', '9', '0', '12.221.165.81', '20050701140321', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11056', '477', '10', '0', '12.221.165.81', '20050701140326', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11057', '609', '10', '0', '127.0.0.1', '20050701161824', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11058', '521', '5', '609', '70.249.212.21', '20050701162452', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11059', '480', '6', '609', '70.249.212.21', '20050701162456', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11060', '456', '7', '609', '70.249.212.21', '20050701162500', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11061', '575', '1', '609', '70.249.212.21', '20050701162510', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11062', '433', '2', '609', '70.249.212.21', '20050701162514', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11063', '236', '3', '609', '70.249.212.21', '20050701162519', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11064', '66', '4', '609', '70.249.212.21', '20050701162523', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11065', '457', '5', '609', '70.249.212.21', '20050701162526', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11066', '479', '6', '609', '70.249.212.21', '20050701162530', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11067', '54', '9', '609', '70.249.212.21', '20050701162539', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11068', '355', '10', '609', '70.249.212.21', '20050701162546', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11069', '532', '1', '609', '70.249.212.21', '20050701163432', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11070', '359', '7', '0', '68.52.102.255', '20050701181934', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11071', '504', '8', '0', '68.52.102.255', '20050701181937', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11072', '385', '9', '0', '68.52.102.255', '20050701181940', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11073', '9', '2', '0', '68.52.102.255', '20050701181948', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11074', '236', '3', '0', '68.52.102.255', '20050701181951', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11075', '366', '4', '0', '68.52.102.255', '20050701181954', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11076', '557', '6', '0', '68.52.102.255', '20050701182008', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11077', '469', '8', '0', '68.52.102.255', '20050701182012', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11078', '531', '2', '0', '68.52.102.255', '20050701182015', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11079', '429', '1', '0', '68.52.102.255', '20050701182018', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11080', '238', '10', '0', '68.52.102.255', '20050701182023', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11081', '610', '10', '0', '127.0.0.1', '20050702073536', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11082', '585', '10', '610', '68.115.25.168', '20050702073802', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11083', '9', '9', '610', '68.115.25.168', '20050702073804', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11084', '322', '8', '610', '68.115.25.168', '20050702073806', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11085', '366', '7', '610', '68.115.25.168', '20050702073808', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11086', '40', '2', '610', '68.115.25.168', '20050702073924', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11087', '66', '3', '610', '68.115.25.168', '20050702073927', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11088', '299', '4', '610', '68.115.25.168', '20050702073929', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11089', '350', '5', '610', '68.115.25.168', '20050702073930', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11090', '402', '6', '610', '68.115.25.168', '20050702073932', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11091', '440', '7', '610', '68.115.25.168', '20050702073934', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11092', '235', '8', '610', '68.115.25.168', '20050702073936', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11093', '272', '2', '610', '68.115.25.168', '20050702074009', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11094', '16', '3', '610', '68.115.25.168', '20050702074011', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11095', '73', '10', '0', '4.229.165.19', '20050702155919', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11096', '526', '8', '0', '4.229.165.19', '20050702160201', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11097', '479', '2', '0', '71.3.61.69', '20050703221520', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11098', '578', '3', '0', '71.3.61.69', '20050703221532', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11099', '82', '4', '0', '71.3.61.69', '20050703221540', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11100', '322', '5', '0', '71.3.61.69', '20050703221546', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11101', '454', '6', '0', '71.3.61.69', '20050703221551', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11102', '423', '7', '0', '71.3.61.69', '20050703221556', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11103', '10', '8', '0', '71.3.61.69', '20050703221607', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11104', '487', '10', '0', '71.3.61.69', '20050703221621', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11105', '453', '2', '0', '71.3.61.69', '20050703221650', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11106', '531', '1', '0', '71.3.61.69', '20050703222115', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11107', '479', '10', '0', '12.226.240.81', '20050704015205', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11108', '364', '9', '0', '12.226.240.81', '20050704015213', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11109', '464', '8', '0', '12.226.240.81', '20050704015217', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11110', '444', '7', '0', '12.226.240.81', '20050704015220', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11111', '461', '6', '0', '12.226.240.81', '20050704015223', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11112', '358', '5', '0', '12.226.240.81', '20050704015227', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11113', '73', '4', '0', '12.226.240.81', '20050704015232', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11114', '329', '3', '0', '12.226.240.81', '20050704015235', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11115', '432', '2', '0', '12.226.240.81', '20050704015239', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11116', '272', '1', '0', '12.226.240.81', '20050704015242', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11117', '423', '9', '0', '24.53.1.8', '20050704074845', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11118', '555', '8', '0', '24.53.1.8', '20050704074849', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11119', '179', '7', '0', '24.53.1.8', '20050704074858', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11120', '366', '6', '0', '24.53.1.8', '20050704074902', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11121', '535', '7', '0', '24.53.1.8', '20050704074910', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11122', '342', '5', '0', '24.53.1.8', '20050704074917', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11123', '238', '2', '0', '24.53.1.8', '20050704074927', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11124', '475', '1', '0', '24.53.1.8', '20050704074935', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11125', '470', '10', '0', '64.12.116.200', '20050704151928', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11126', '408', '9', '0', '64.12.116.200', '20050704151941', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11127', '418', '8', '0', '64.12.116.200', '20050704151953', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11128', '374', '7', '0', '64.12.116.200', '20050704152001', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11129', '270', '6', '0', '64.12.116.200', '20050704152012', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11130', '67', '9', '0', '141.158.242.32', '20050705142650', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11131', '463', '8', '0', '141.158.242.32', '20050705142653', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11132', '363', '7', '0', '141.158.242.32', '20050705142659', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11133', '366', '6', '0', '141.158.242.32', '20050705142703', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11134', '487', '5', '0', '141.158.242.32', '20050705142709', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11135', '532', '9', '0', '141.158.242.32', '20050705142739', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11136', '413', '10', '0', '141.158.242.32', '20050705142745', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11137', '588', '4', '0', '141.158.242.32', '20050705142748', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11138', '611', '10', '0', '127.0.0.1', '20050706000535', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11139', '578', '9', '0', '69.208.120.240', '20050706001810', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11140', '511', '8', '0', '69.208.120.240', '20050706001812', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11141', '588', '7', '0', '69.208.120.240', '20050706001815', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11142', '361', '6', '0', '69.208.120.240', '20050706001817', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11143', '484', '5', '0', '69.208.120.240', '20050706001819', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11144', '270', '4', '0', '69.208.120.240', '20050706001822', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11145', '461', '3', '0', '69.208.120.240', '20050706001825', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11146', '431', '2', '0', '69.208.120.240', '20050706001827', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11147', '530', '1', '0', '69.208.120.240', '20050706001829', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11148', '532', '10', '0', '69.208.120.240', '20050706001839', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11149', '598', '9', '0', '69.208.120.240', '20050706001843', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11150', '565', '8', '0', '69.208.120.240', '20050706001847', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11151', '531', '9', '0', '69.208.120.240', '20050706001924', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11152', '537', '7', '0', '69.208.120.240', '20050706001927', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11153', '360', '4', '0', '69.208.120.240', '20050706001936', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11154', '543', '2', '0', '69.208.120.240', '20050706001938', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11155', '339', '1', '0', '69.208.120.240', '20050706001941', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11156', '364', '9', '0', '69.208.120.240', '20050706001956', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11157', '377', '5', '0', '69.208.120.240', '20050706001958', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11158', '61', '2', '0', '69.208.120.240', '20050706002001', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11159', '329', '1', '0', '69.208.120.240', '20050706002005', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11160', '612', '10', '0', '127.0.0.1', '20050706002224', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11161', '424', '9', '612', '69.208.120.240', '20050706002254', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11162', '524', '8', '612', '69.208.120.240', '20050706002257', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11163', '239', '6', '612', '69.208.120.240', '20050706002301', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11164', '482', '4', '612', '69.208.120.240', '20050706002303', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11165', '585', '1', '0', '70.245.169.163', '20050706191354', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11166', '521', '2', '0', '70.245.169.163', '20050706191412', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11167', '29', '3', '0', '70.245.169.163', '20050706191416', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11168', '479', '1', '0', '222.234.93.163', '20050707125311', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11169', '500', '2', '0', '222.234.93.163', '20050707125318', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11170', '524', '3', '0', '222.234.93.163', '20050707125323', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11171', '354', '3', '0', '222.234.93.163', '20050707125332', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11172', '274', '4', '0', '222.234.93.163', '20050707125336', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11173', '66', '5', '0', '222.234.93.163', '20050707125344', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11174', '489', '6', '0', '222.234.93.163', '20050707125347', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11175', '270', '7', '0', '222.234.93.163', '20050707125355', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11176', '579', '9', '612', '69.209.156.48', '20050707215606', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11177', '454', '7', '612', '69.209.156.48', '20050707215608', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11178', '440', '5', '612', '69.209.156.48', '20050707215610', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11179', '535', '4', '612', '69.209.156.48', '20050707215613', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11180', '549', '3', '612', '69.209.156.48', '20050707215615', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11181', '119', '2', '612', '69.209.156.48', '20050707215618', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11182', '329', '1', '612', '69.209.156.48', '20050707215620', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11183', '565', '7', '612', '69.209.156.48', '20050707215636', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11184', '508', '5', '612', '69.209.156.48', '20050707215638', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11185', '453', '9', '612', '69.209.156.48', '20050707215700', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11186', '389', '9', '612', '69.209.156.48', '20050707215707', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11187', '377', '5', '612', '69.209.156.48', '20050707215709', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11188', '330', '5', '612', '69.209.156.48', '20050707215710', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11189', '558', '9', '0', '64.12.116.200', '20050708001753', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11190', '308', '10', '0', '64.12.116.200', '20050708001811', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11191', '179', '9', '0', '64.12.116.200', '20050708001823', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11192', '57', '8', '0', '64.12.116.200', '20050708001831', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11193', '106', '7', '0', '64.12.116.200', '20050708001842', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11194', '60', '6', '0', '64.12.116.200', '20050708001849', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11195', '299', '5', '0', '64.12.116.200', '20050708001912', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11196', '423', '6', '0', '64.12.116.200', '20050708001919', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11197', '29', '1', '0', '64.12.116.200', '20050708001930', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11198', '149', '2', '0', '64.12.116.200', '20050708001939', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11199', '269', '3', '0', '64.12.116.200', '20050708001945', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11200', '424', '10', '0', '65.94.48.47', '20050709072823', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11201', '505', '4', '0', '65.94.48.47', '20050709072827', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11202', '464', '3', '0', '65.94.48.47', '20050709072833', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11203', '9', '2', '0', '71.101.43.210', '20050709155147', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11204', '479', '7', '0', '71.101.43.210', '20050709155151', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11205', '269', '10', '0', '71.101.43.210', '20050709155157', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11206', '66', '9', '0', '71.101.43.210', '20050709155159', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11207', '558', '10', '0', '71.101.43.210', '20050709155215', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11208', '73', '9', '0', '71.101.43.210', '20050709155219', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11209', '274', '8', '0', '71.101.43.210', '20050709155222', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11210', '578', '7', '0', '71.101.43.210', '20050709155238', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11211', '57', '6', '0', '71.101.43.210', '20050709155242', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11212', '459', '5', '0', '71.101.43.210', '20050709155246', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11213', '505', '4', '0', '71.101.43.210', '20050709155251', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11214', '243', '3', '0', '71.101.43.210', '20050709155256', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11215', '460', '2', '0', '71.101.43.210', '20050709155300', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11216', '557', '1', '0', '71.101.43.210', '20050709155306', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11217', '424', '1', '0', '152.163.100.200', '20050710095241', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11218', '54', '2', '0', '152.163.100.200', '20050710095249', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11219', '497', '3', '0', '152.163.100.200', '20050710095303', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11220', '585', '2', '0', '152.163.100.200', '20050710095403', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11221', '359', '3', '0', '152.163.100.200', '20050710095423', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11222', '355', '4', '0', '152.163.100.200', '20050710095502', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11223', '613', '10', '0', '127.0.0.1', '20050710111615', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11224', '453', '1', '613', '84.170.240.24', '20050710112852', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11225', '470', '2', '613', '84.170.240.24', '20050710112857', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11226', '570', '3', '613', '84.170.240.24', '20050710112902', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11227', '106', '4', '613', '84.170.240.24', '20050710112910', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11228', '535', '5', '613', '84.170.240.24', '20050710112914', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11229', '29', '6', '613', '84.170.240.24', '20050710112917', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11230', '77', '7', '613', '84.170.240.24', '20050710112921', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11231', '468', '8', '613', '84.170.240.24', '20050710112925', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11232', '475', '9', '613', '84.170.240.24', '20050710112928', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11233', '479', '10', '0', '24.99.64.35', '20050710122145', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11234', '524', '2', '0', '84.170.240.24', '20050710152833', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11235', '385', '3', '0', '84.170.240.24', '20050710152837', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11236', '67', '6', '0', '217.187.124.5', '20050710174919', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11237', '578', '7', '0', '217.187.124.5', '20050710174946', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11238', '82', '3', '0', '217.187.124.5', '20050710175014', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11239', '488', '5', '0', '217.187.124.5', '20050710175021', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11240', '67', '1', '0', '24.15.120.161', '20050712094837', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11241', '497', '2', '0', '24.15.120.161', '20050712094839', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11242', '477', '3', '0', '24.15.120.161', '20050712094841', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11243', '530', '4', '0', '24.15.120.161', '20050712094846', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11244', '57', '5', '0', '24.15.120.161', '20050712094848', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11245', '358', '6', '0', '24.15.120.161', '20050712094852', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11246', '541', '7', '0', '24.15.120.161', '20050712094854', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11247', '235', '8', '0', '24.15.120.161', '20050712094858', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11248', '70', '9', '0', '24.15.120.161', '20050712094901', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11249', '28', '10', '0', '24.15.120.161', '20050712094904', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11250', '371', '10', '0', '24.15.120.161', '20050712095129', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11251', '424', '1', '0', '152.163.100.200', '20050712102631', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11252', '478', '2', '0', '152.163.100.200', '20050712102635', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11253', '329', '3', '0', '152.163.100.200', '20050712102638', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11254', '423', '5', '0', '152.163.100.200', '20050712102649', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11255', '366', '6', '0', '152.163.100.200', '20050712102714', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11256', '564', '9', '0', '152.163.100.200', '20050712102721', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11257', '377', '8', '0', '152.163.100.200', '20050712102726', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11258', '47', '6', '0', '152.163.100.200', '20050712102734', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11259', '453', '2', '0', '152.163.100.200', '20050712102951', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11260', '553', '1', '0', '152.163.100.200', '20050712103210', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11261', '364', '2', '0', '152.163.100.200', '20050712103221', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11262', '274', '3', '0', '152.163.100.200', '20050712103228', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11263', '77', '4', '0', '152.163.100.200', '20050712103233', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11264', '456', '5', '0', '152.163.100.200', '20050712103238', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11265', '374', '6', '0', '152.163.100.200', '20050712103242', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11266', '413', '7', '0', '152.163.100.200', '20050712103249', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11267', '322', '8', '0', '152.163.100.200', '20050712103255', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11268', '454', '9', '0', '152.163.100.200', '20050712103301', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11269', '89', '1', '0', '152.163.100.200', '20050712104601', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11270', '41', '2', '0', '81.77.74.70', '20050713072803', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11271', '614', '10', '0', '127.0.0.1', '20050713203957', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11272', '598', '2', '0', '24.183.109.217', '20050713214457', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11273', '423', '1', '0', '202.185.196.1', '20050714015132', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11274', '469', '10', '0', '202.185.196.1', '20050714015219', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11275', '423', '3', '0', '66.198.41.15', '20050714131845', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11276', '578', '10', '0', '24.13.129.35', '20050715003226', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11277', '69', '9', '0', '24.13.129.35', '20050715003230', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11278', '456', '8', '0', '24.13.129.35', '20050715003232', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11279', '75', '7', '0', '24.13.129.35', '20050715003235', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11280', '374', '7', '0', '24.13.129.35', '20050715003237', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11281', '362', '6', '0', '24.13.129.35', '20050715003241', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11282', '77', '5', '0', '24.13.129.35', '20050715003244', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11283', '37', '4', '0', '24.13.129.35', '20050715003247', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11284', '371', '3', '0', '24.13.129.35', '20050715003250', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11285', '504', '2', '0', '24.13.129.35', '20050715003252', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11286', '433', '1', '0', '24.13.129.35', '20050715003256', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11287', '119', '1', '0', '24.13.129.35', '20050715003300', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11288', '557', '1', '0', '24.13.129.35', '20050715003331', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11289', '408', '2', '0', '24.13.129.35', '20050715003332', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11290', '482', '3', '0', '24.13.129.35', '20050715003334', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11291', '418', '4', '0', '24.13.129.35', '20050715003336', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11292', '588', '5', '0', '24.13.129.35', '20050715003338', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11293', '470', '6', '0', '24.13.129.35', '20050715003341', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11294', '46', '7', '0', '24.13.129.35', '20050715003343', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11295', '468', '8', '0', '24.13.129.35', '20050715003345', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11296', '444', '9', '0', '24.13.129.35', '20050715003347', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11297', '488', '10', '0', '24.13.129.35', '20050715003349', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11298', '359', '10', '0', '24.13.129.35', '20050715003408', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11299', '44', '9', '0', '24.13.129.35', '20050715003409', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11300', '565', '8', '0', '24.13.129.35', '20050715003411', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11301', '553', '7', '0', '24.13.129.35', '20050715003413', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11302', '423', '6', '0', '24.13.129.35', '20050715003415', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11303', '446', '5', '0', '24.13.129.35', '20050715003416', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11304', '409', '4', '0', '24.13.129.35', '20050715003419', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11305', '475', '3', '0', '24.13.129.35', '20050715003422', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11306', '179', '2', '0', '24.13.129.35', '20050715003425', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11307', '239', '1', '0', '24.13.129.35', '20050715003431', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11308', '355', '10', '0', '24.13.129.35', '20050715083818', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11309', '342', '9', '0', '24.13.129.35', '20050715083826', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11310', '22', '8', '0', '24.13.129.35', '20050715083836', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11311', '500', '8', '0', '24.13.129.35', '20050715083841', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11312', '477', '7', '0', '24.13.129.35', '20050715083846', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11313', '540', '6', '0', '24.13.129.35', '20050715083849', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11314', '575', '5', '0', '24.13.129.35', '20050715083854', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11315', '585', '5', '0', '24.13.129.35', '20050715083926', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11316', '61', '4', '0', '24.13.129.35', '20050715083936', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11317', '441', '3', '0', '24.13.129.35', '20050715083940', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11318', '274', '2', '0', '24.13.129.35', '20050715083944', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11319', '47', '3', '0', '24.13.129.35', '20050715083946', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11320', '350', '2', '0', '24.13.129.35', '20050715083948', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11321', '541', '1', '0', '24.13.129.35', '20050715083952', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11322', '558', '10', '0', '24.13.129.35', '20050715084042', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11323', '356', '9', '0', '24.13.129.35', '20050715084044', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11324', '598', '8', '0', '24.13.129.35', '20050715084049', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11325', '530', '7', '0', '24.13.129.35', '20050715084051', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11326', '592', '6', '0', '24.13.129.35', '20050715084054', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11327', '322', '5', '0', '24.13.129.35', '20050715084057', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11328', '380', '4', '0', '24.13.129.35', '20050715084100', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11329', '330', '3', '0', '24.13.129.35', '20050715084103', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11330', '66', '2', '0', '24.13.129.35', '20050715084106', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11331', '469', '1', '0', '24.13.129.35', '20050715084109', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11332', '16', '9', '0', '143.182.124.4', '20050715111005', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11333', '270', '8', '0', '143.182.124.4', '20050715111014', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11334', '524', '1', '0', '67.133.42.134', '20050715122851', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11335', '453', '2', '0', '67.133.42.134', '20050715122855', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11336', '470', '3', '0', '67.133.42.134', '20050715122900', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11337', '67', '4', '0', '67.133.42.134', '20050715122905', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11338', '558', '5', '0', '67.133.42.134', '20050715122909', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11339', '53', '7', '0', '67.133.42.134', '20050715122931', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11340', '40', '8', '0', '67.133.42.134', '20050715122935', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11341', '270', '9', '0', '67.133.42.134', '20050715122938', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11342', '42', '10', '0', '67.133.42.134', '20050715122941', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11343', '359', '1', '0', '67.133.42.134', '20050715123003', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11344', '463', '2', '0', '67.133.42.134', '20050715123008', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11345', '19', '4', '0', '67.133.42.134', '20050715123020', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11346', '518', '5', '0', '67.133.42.134', '20050715123023', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11347', '457', '6', '0', '67.133.42.134', '20050715123026', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11348', '540', '7', '0', '67.133.42.134', '20050715123029', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11349', '578', '1', '0', '67.133.42.134', '20050715123040', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11350', '502', '2', '0', '67.133.42.134', '20050715123045', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11351', '361', '3', '0', '67.133.42.134', '20050715123049', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11352', '570', '4', '0', '67.133.42.134', '20050715123052', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11353', '413', '5', '0', '67.133.42.134', '20050715123055', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11354', '119', '6', '0', '67.133.42.134', '20050715123059', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11355', '14', '7', '0', '67.133.42.134', '20050715123102', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11356', '47', '8', '0', '67.133.42.134', '20050715123105', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11357', '299', '9', '0', '67.133.42.134', '20050715123109', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11358', '561', '10', '0', '67.133.42.134', '20050715123113', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11359', '423', '1', '0', '67.133.42.134', '20050715123125', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11360', '308', '2', '0', '67.133.42.134', '20050715123129', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11361', '505', '3', '0', '67.133.42.134', '20050715123133', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11362', '408', '4', '0', '67.133.42.134', '20050715123136', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11363', '424', '10', '0', '64.12.116.200', '20050715162343', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11364', '484', '1', '0', '64.12.116.200', '20050715162349', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11365', '67', '10', '0', '151.203.78.42', '20050715224815', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11366', '432', '9', '0', '151.203.78.42', '20050715224820', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11367', '538', '8', '0', '151.203.78.42', '20050715224824', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11368', '464', '6', '0', '151.203.78.42', '20050715224829', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11369', '366', '4', '0', '151.203.78.42', '20050715224834', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11370', '57', '3', '0', '151.203.78.42', '20050715224837', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11371', '450', '2', '0', '151.203.78.42', '20050715224841', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11372', '42', '1', '0', '151.203.78.42', '20050715224846', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11373', '67', '9', '0', '68.21.12.243', '20050716223126', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11374', '16', '8', '0', '68.21.12.243', '20050716223130', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11375', '60', '7', '0', '68.21.12.243', '20050716223134', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11376', '457', '8', '0', '68.21.12.243', '20050716223137', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11377', '490', '9', '0', '68.21.12.243', '20050716223140', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11378', '322', '5', '0', '68.21.12.243', '20050716223144', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11379', '561', '1', '0', '68.21.12.243', '20050716223149', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11380', '423', '10', '0', '68.21.12.243', '20050716223240', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11381', '443', '9', '0', '68.21.12.243', '20050716223242', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11382', '555', '6', '0', '68.21.12.243', '20050716223246', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11383', '364', '4', '0', '68.21.12.243', '20050716223250', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11384', '524', '9', '0', '68.21.12.243', '20050716223315', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11385', '340', '5', '0', '68.21.12.243', '20050716223320', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11386', '359', '4', '0', '68.21.12.243', '20050716223459', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11387', '28', '10', '0', '68.21.12.243', '20050716223504', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11388', '521', '9', '0', '67.190.126.221', '20050717154021', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11389', '615', '10', '0', '127.0.0.1', '20050717211807', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11390', '461', '7', '615', '24.196.100.117', '20050717212642', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11391', '566', '2', '615', '24.196.100.117', '20050717212732', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11392', '389', '1', '615', '24.196.100.117', '20050717212738', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11393', '511', '8', '615', '24.196.100.117', '20050717212915', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11394', '423', '8', '615', '24.196.100.117', '20050717212956', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11395', '261', '3', '615', '24.196.100.117', '20050717213031', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11396', '374', '4', '615', '24.196.100.117', '20050717213126', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11397', '67', '6', '615', '24.196.100.117', '20050717213131', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11398', '27', '5', '615', '24.196.100.117', '20050717213149', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11399', '61', '6', '615', '24.196.100.117', '20050717213412', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11400', '54', '7', '615', '24.196.100.117', '20050717213419', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11401', '14', '6', '615', '24.196.100.117', '20050717213423', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11402', '75', '2', '615', '24.196.100.117', '20050717213428', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11403', '459', '4', '615', '24.196.100.117', '20050717213444', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11404', '384', '5', '615', '24.196.100.117', '20050717213447', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11405', '561', '4', '615', '24.196.100.117', '20050717213452', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11406', '500', '6', '615', '24.196.100.117', '20050717213502', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11407', '490', '5', '615', '24.196.100.117', '20050717213508', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11408', '571', '8', '615', '24.196.100.117', '20050717213512', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11409', '588', '8', '615', '24.196.100.117', '20050717213540', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11410', '345', '3', '615', '24.196.100.117', '20050717213549', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11411', '372', '6', '615', '24.196.100.117', '20050717213554', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11412', '504', '3', '615', '24.196.100.117', '20050717213557', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11413', '521', '8', '615', '24.196.100.117', '20050717213606', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11414', '445', '7', '615', '24.196.100.117', '20050717213614', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11415', '66', '4', '615', '24.196.100.117', '20050717213625', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11416', '433', '7', '615', '24.196.100.117', '20050717213652', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11417', '444', '3', '615', '24.196.100.117', '20050717213656', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11418', '456', '3', '615', '24.196.100.117', '20050717213700', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11419', '454', '9', '615', '24.196.100.117', '20050717213708', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11420', '518', '2', '615', '24.196.100.117', '20050717214117', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11421', '540', '2', '615', '24.196.100.117', '20050717214155', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11422', '489', '2', '615', '24.196.100.117', '20050717214159', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11423', '408', '2', '615', '24.196.100.117', '20050717214206', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11424', '402', '2', '615', '24.196.100.117', '20050717214211', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11425', '380', '8', '615', '24.196.100.117', '20050717214216', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11426', '41', '7', '615', '24.196.100.117', '20050717214255', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11427', '578', '3', '615', '24.196.100.117', '20050717214300', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11428', '450', '6', '615', '24.196.100.117', '20050717214303', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11429', '57', '4', '615', '24.196.100.117', '20050717214312', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11430', '441', '6', '615', '24.196.100.117', '20050717214322', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11431', '9', '4', '615', '24.196.100.117', '20050717214326', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11432', '360', '7', '615', '24.196.100.117', '20050717214356', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11433', '477', '7', '615', '24.196.100.117', '20050717214400', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11434', '28', '2', '615', '24.196.100.117', '20050717214404', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11435', '592', '2', '615', '24.196.100.117', '20050717214414', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11436', '46', '3', '615', '24.196.100.117', '20050717214420', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11437', '377', '2', '615', '24.196.100.117', '20050717214425', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11438', '570', '6', '615', '24.196.100.117', '20050717214432', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11439', '482', '4', '615', '24.196.100.117', '20050717214436', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11440', '506', '7', '615', '24.196.100.117', '20050717214443', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11441', '371', '7', '615', '24.196.100.117', '20050717214448', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11442', '385', '3', '615', '24.196.100.117', '20050717214456', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11443', '466', '7', '615', '24.196.100.117', '20050717214505', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11444', '464', '8', '615', '24.196.100.117', '20050717214520', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11445', '462', '2', '615', '24.196.100.117', '20050717214523', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11446', '543', '2', '615', '24.196.100.117', '20050717214527', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11447', '508', '8', '615', '24.196.100.117', '20050717214532', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11448', '505', '2', '615', '24.196.100.117', '20050717214539', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11449', '478', '2', '615', '24.196.100.117', '20050717214543', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11450', '479', '6', '615', '24.196.100.117', '20050717214548', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11451', '446', '6', '615', '24.196.100.117', '20050717214552', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11452', '82', '2', '615', '24.196.100.117', '20050717214559', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11453', '362', '7', '615', '24.196.100.117', '20050717214611', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11454', '44', '2', '615', '24.196.100.117', '20050717214615', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11455', '532', '8', '615', '24.196.100.117', '20050717214620', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11456', '463', '8', '615', '24.196.100.117', '20050717214624', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11457', '453', '8', '615', '24.196.100.117', '20050717214629', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11458', '488', '2', '615', '24.196.100.117', '20050717214633', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11459', '355', '2', '615', '24.196.100.117', '20050717214642', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11460', '558', '8', '615', '24.196.100.117', '20050717214653', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11461', '16', '7', '615', '24.196.100.117', '20050717214700', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11462', '428', '6', '615', '24.196.100.117', '20050717214706', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11463', '37', '2', '615', '24.196.100.117', '20050717214746', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11464', '10', '2', '615', '24.196.100.117', '20050717214751', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11465', '538', '7', '615', '24.196.100.117', '20050717214757', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11466', '440', '2', '615', '24.196.100.117', '20050717214803', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11467', '537', '2', '615', '24.196.100.117', '20050717214812', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11468', '514', '2', '615', '24.196.100.117', '20050717214825', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11469', '22', '9', '615', '24.196.100.117', '20050717214829', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11470', '579', '4', '615', '24.196.100.117', '20050717214833', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11471', '364', '7', '615', '24.196.100.117', '20050717214844', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11472', '497', '2', '615', '24.196.100.117', '20050717214848', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11473', '549', '4', '615', '24.196.100.117', '20050717214901', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11474', '575', '4', '615', '24.196.100.117', '20050717214920', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11475', '443', '6', '615', '24.196.100.117', '20050717214932', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11476', '413', '4', '615', '24.196.100.117', '20050717214937', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11477', '470', '7', '615', '24.196.100.117', '20050717214952', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11478', '457', '8', '615', '24.196.100.117', '20050717215001', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11479', '524', '8', '615', '24.196.100.117', '20050717215024', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11480', '564', '2', '615', '24.196.100.117', '20050717215028', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11481', '495', '2', '615', '24.196.100.117', '20050717215032', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11482', '17', '7', '615', '24.196.100.117', '20050717215036', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11483', '73', '6', '615', '24.196.100.117', '20050717215040', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11484', '487', '6', '615', '24.196.100.117', '20050717215046', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11485', '531', '9', '615', '24.196.100.117', '20050717215053', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11486', '69', '5', '615', '24.196.100.117', '20050717215104', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11487', '60', '5', '615', '24.196.100.117', '20050717215109', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11488', '77', '2', '615', '24.196.100.117', '20050717215112', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11489', '480', '7', '615', '24.196.100.117', '20050717215119', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11490', '449', '6', '615', '24.196.100.117', '20050717215146', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11491', '422', '2', '615', '24.196.100.117', '20050717215154', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11492', '429', '6', '615', '24.196.100.117', '20050717215159', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11493', '557', '9', '615', '24.196.100.117', '20050717215213', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11494', '555', '8', '615', '24.196.100.117', '20050717215231', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11495', '452', '8', '615', '24.196.100.117', '20050717215235', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11496', '439', '6', '615', '24.196.100.117', '20050717215241', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11497', '409', '4', '615', '24.196.100.117', '20050717215245', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11498', '598', '1', '615', '24.196.100.117', '20050717215258', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11499', '484', '8', '615', '24.196.100.117', '20050717215308', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11500', '587', '7', '615', '24.196.100.117', '20050717215313', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11501', '356', '6', '615', '24.196.100.117', '20050717215316', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11502', '460', '7', '615', '24.196.100.117', '20050717215320', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11503', '431', '7', '615', '24.196.100.117', '20050717215327', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11504', '565', '4', '615', '24.196.100.117', '20050717215335', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11505', '486', '4', '615', '24.196.100.117', '20050717215339', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11506', '468', '4', '615', '24.196.100.117', '20050717215343', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11507', '502', '2', '615', '24.196.100.117', '20050717215347', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11508', '469', '7', '615', '24.196.100.117', '20050717215352', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11509', '506', '7', '0', '67.174.6.154', '20050718114945', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11510', '424', '1', '0', '67.133.42.134', '20050718145023', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11511', '565', '2', '0', '67.133.42.134', '20050718145028', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11512', '384', '3', '0', '67.133.42.134', '20050718145031', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11513', '243', '4', '0', '67.133.42.134', '20050718145037', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11514', '571', '6', '0', '67.133.42.134', '20050718145058', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11515', '377', '7', '0', '67.133.42.134', '20050718145100', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11516', '66', '8', '0', '67.133.42.134', '20050718145104', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11517', '308', '9', '0', '67.133.42.134', '20050718145118', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11518', '312', '10', '0', '67.133.42.134', '20050718145121', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11519', '424', '1', '0', '24.181.192.108', '20050718215642', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11520', '518', '2', '0', '24.181.192.108', '20050718215650', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11521', '343', '3', '0', '24.181.192.108', '20050718215700', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11522', '466', '7', '0', '24.181.192.108', '20050718215705', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11523', '73', '7', '0', '24.181.192.108', '20050718215711', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11524', '359', '8', '0', '24.181.192.108', '20050718215715', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11525', '557', '9', '0', '24.181.192.108', '20050718215720', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11526', '408', '10', '0', '24.181.192.108', '20050718215725', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11527', '532', '9', '0', '24.181.192.108', '20050718215834', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11528', '54', '8', '0', '24.181.192.108', '20050718215851', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11529', '339', '4', '0', '24.181.192.108', '20050718215935', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11530', '616', '10', '0', '127.0.0.1', '20050718234415', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11531', '588', '3', '0', '195.96.66.66', '20050719075154', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11532', '308', '10', '0', '195.96.66.66', '20050719075200', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11533', '617', '10', '0', '127.0.0.1', '20050719134801', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11534', '558', '1', '617', '68.50.93.231', '20050719134942', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11535', '16', '2', '617', '68.50.93.231', '20050719134946', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11536', '339', '3', '617', '68.50.93.231', '20050719134950', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11537', '28', '4', '617', '68.50.93.231', '20050719134952', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11538', '358', '5', '617', '68.50.93.231', '20050719134954', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11539', '541', '6', '617', '68.50.93.231', '20050719134956', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11540', '19', '7', '617', '68.50.93.231', '20050719134958', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11541', '508', '8', '617', '68.50.93.231', '20050719135000', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11542', '424', '6', '0', '67.71.81.206', '20050719142145', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11543', '119', '1', '0', '67.71.81.206', '20050719142149', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11544', '506', '2', '0', '67.71.81.206', '20050719142159', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11545', '361', '3', '0', '67.71.81.206', '20050719142206', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11546', '37', '4', '0', '67.71.81.206', '20050719142214', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11547', '571', '4', '0', '67.71.81.206', '20050719142220', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11548', '538', '5', '0', '67.71.81.206', '20050719142227', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11549', '41', '6', '0', '67.71.81.206', '20050719142235', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11550', '389', '7', '0', '67.71.81.206', '20050719142249', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11551', '363', '8', '0', '67.71.81.206', '20050719142257', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11552', '445', '9', '0', '67.71.81.206', '20050719142304', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11553', '570', '10', '0', '67.71.81.206', '20050719142312', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11554', '588', '10', '0', '211.28.144.46', '20050719194414', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11555', '618', '10', '0', '127.0.0.1', '20050719194623', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11556', '570', '5', '532', '207.255.15.159', '20050720112242', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11557', '619', '10', '0', '127.0.0.1', '20050721003452', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11558', '578', '8', '619', '67.162.217.49', '20050721011357', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11559', '16', '9', '619', '67.162.217.49', '20050721011848', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11560', '531', '8', '619', '67.162.217.49', '20050721011953', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11561', '588', '2', '0', '69.193.103.82', '20050721083121', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11562', '424', '10', '0', '65.93.198.105', '20050721150847', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11563', '342', '5', '0', '65.93.198.105', '20050721150856', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11564', '529', '4', '0', '65.93.198.105', '20050721150859', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11565', '423', '1', '0', '65.93.198.105', '20050721150914', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11566', '9', '1', '0', '66.25.115.140', '20050721161812', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11567', '413', '1', '0', '66.25.115.140', '20050721161818', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11568', '274', '1', '0', '66.25.115.140', '20050721161822', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11569', '350', '1', '0', '66.25.115.140', '20050721161824', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11570', '446', '1', '0', '66.25.115.140', '20050721161827', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11571', '61', '1', '0', '66.25.115.140', '20050721161840', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11572', '502', '1', '0', '66.25.115.140', '20050721161845', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11573', '19', '1', '0', '66.25.115.140', '20050721161852', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11574', '490', '1', '0', '66.25.115.140', '20050721161855', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11575', '511', '1', '0', '66.25.115.140', '20050721161858', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11576', '468', '1', '0', '66.25.115.140', '20050721161902', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11577', '558', '1', '0', '66.25.115.140', '20050721161931', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11578', '521', '1', '0', '66.25.115.140', '20050721161940', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11579', '604', '10', '0', '66.25.115.140', '20050721162024', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11580', '453', '1', '0', '66.25.115.140', '20050721162029', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11581', '604', '2', '0', '201.133.171.52', '20050721172111', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11582', '371', '4', '0', '201.133.171.52', '20050721172124', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11583', '604', '1', '0', '209.100.183.176', '20050722113018', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11584', '543', '3', '0', '209.100.183.176', '20050722113024', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11585', '47', '4', '0', '209.100.183.176', '20050722113029', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11586', '53', '1', '0', '209.100.183.176', '20050722113236', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11587', '609', '9', '0', '64.12.116.200', '20050723000940', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11588', '450', '8', '0', '64.12.116.200', '20050723000944', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11589', '443', '7', '0', '64.12.116.200', '20050723000949', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11590', '418', '6', '0', '64.12.116.200', '20050723000955', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11591', '480', '5', '0', '64.12.116.200', '20050723000959', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11592', '385', '4', '0', '64.12.116.200', '20050723001004', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11593', '408', '3', '0', '64.12.116.200', '20050723001008', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11594', '409', '2', '0', '64.12.116.200', '20050723001014', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11595', '457', '1', '0', '64.12.116.200', '20050723001018', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11596', '424', '9', '0', '64.12.116.200', '20050723001032', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11597', '239', '8', '0', '64.12.116.200', '20050723001035', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11598', '429', '7', '0', '64.12.116.200', '20050723001039', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11599', '604', '6', '0', '64.12.116.200', '20050723001046', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11600', '46', '5', '0', '64.12.116.200', '20050723001049', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11601', '60', '4', '0', '64.12.116.200', '20050723001051', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11602', '330', '3', '0', '64.12.116.200', '20050723001054', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11603', '61', '2', '0', '64.12.116.200', '20050723001100', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11604', '75', '1', '0', '64.12.116.200', '20050723001103', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11605', '9', '9', '0', '64.12.116.200', '20050723001149', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11606', '236', '8', '0', '64.12.116.200', '20050723001152', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11607', '339', '7', '0', '64.12.116.200', '20050723001154', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11608', '508', '6', '0', '64.12.116.200', '20050723001156', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11609', '359', '5', '0', '64.12.116.200', '20050723001158', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11610', '77', '4', '0', '64.12.116.200', '20050723001201', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11611', '487', '3', '0', '64.12.116.200', '20050723001203', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11612', '365', '2', '0', '64.12.116.200', '20050723001209', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11613', '566', '1', '0', '64.12.116.200', '20050723001213', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11614', '423', '10', '0', '67.23.126.40', '20050723133345', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11615', '424', '1', '0', '67.101.242.156', '20050724041737', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11616', '511', '2', '0', '67.101.242.156', '20050724041740', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11617', '312', '3', '0', '67.101.242.156', '20050724041743', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11618', '466', '4', '0', '67.101.242.156', '20050724041745', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11619', '585', '5', '0', '67.101.242.156', '20050724041748', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11620', '380', '10', '0', '67.101.242.156', '20050724041752', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11621', '566', '9', '0', '67.101.242.156', '20050724041755', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11622', '457', '8', '0', '67.101.242.156', '20050724041759', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11623', '620', '10', '0', '127.0.0.1', '20050724103105', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11624', '424', '9', '0', '141.151.145.150', '20050724143959', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11625', '16', '8', '0', '141.151.145.150', '20050724144012', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11626', '409', '7', '0', '141.151.145.150', '20050724144015', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11627', '454', '6', '0', '141.151.145.150', '20050724144018', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11628', '418', '5', '0', '141.151.145.150', '20050724144021', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11629', '75', '4', '0', '141.151.145.150', '20050724144023', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11630', '466', '3', '0', '141.151.145.150', '20050724144026', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11631', '269', '2', '0', '141.151.145.150', '20050724144029', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11632', '402', '1', '0', '141.151.145.150', '20050724144031', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11633', '524', '9', '0', '141.151.145.150', '20050724144047', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11634', '342', '10', '0', '141.151.145.150', '20050724144049', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11635', '558', '7', '0', '141.151.145.150', '20050724144056', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11636', '470', '9', '0', '141.151.145.150', '20050724144238', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11637', '449', '8', '0', '141.151.145.150', '20050724144241', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11638', '308', '7', '0', '141.151.145.150', '20050724144245', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11639', '609', '6', '0', '141.151.145.150', '20050724144251', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11640', '495', '5', '0', '141.151.145.150', '20050724144254', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11641', '459', '4', '0', '141.151.145.150', '20050724144256', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11642', '345', '3', '0', '141.151.145.150', '20050724144258', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11643', '276', '2', '0', '141.151.145.150', '20050724144301', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11644', '500', '1', '0', '141.151.145.150', '20050724144304', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11645', '621', '10', '0', '127.0.0.1', '20050724224420', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11646', '9', '10', '0', '68.187.141.68', '20050725025201', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11647', '524', '1', '0', '216.190.71.63', '20050725142415', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11648', '453', '2', '0', '216.190.71.63', '20050725142443', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11649', '356', '3', '0', '216.190.71.63', '20050725142456', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11650', '470', '4', '0', '216.190.71.63', '20050725142545', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11651', '60', '5', '0', '216.190.71.63', '20050725142612', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11652', '77', '6', '0', '216.190.71.63', '20050725142623', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11653', '424', '10', '0', '216.190.71.63', '20050725142741', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11654', '445', '9', '0', '216.190.71.63', '20050725142811', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11655', '592', '7', '0', '216.190.71.63', '20050725142904', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11656', '47', '6', '0', '216.190.71.63', '20050725142919', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11657', '598', '5', '0', '216.190.71.63', '20050725142947', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11658', '209', '4', '0', '216.190.71.63', '20050725143006', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11659', '342', '3', '0', '216.190.71.63', '20050725143034', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11660', '578', '10', '0', '216.190.71.63', '20050725143227', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11661', '431', '1', '0', '216.190.71.63', '20050725143248', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11662', '179', '2', '0', '216.190.71.63', '20050725143308', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11663', '504', '3', '0', '216.190.71.63', '20050725143331', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11664', '73', '4', '0', '216.190.71.63', '20050725143349', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11665', '487', '6', '0', '216.190.71.63', '20050725143419', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11666', '49', '7', '0', '216.190.71.63', '20050725143450', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11667', '360', '8', '0', '216.190.71.63', '20050725143459', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11668', '423', '10', '0', '216.190.71.63', '20050725143550', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11669', '424', '2', '0', '142.179.247.151', '20050725220941', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11670', '566', '3', '0', '142.179.247.151', '20050725220944', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11671', '571', '7', '0', '142.179.247.151', '20050725220946', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11672', '504', '9', '0', '142.179.247.151', '20050725220949', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11673', '424', '1', '0', '69.219.145.29', '20050726002145', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11674', '490', '2', '0', '69.219.145.29', '20050726002147', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11675', '330', '3', '0', '69.219.145.29', '20050726002148', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11676', '571', '4', '0', '69.219.145.29', '20050726002156', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11677', '478', '5', '0', '69.219.145.29', '20050726002158', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11678', '402', '6', '0', '69.219.145.29', '20050726002200', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11679', '428', '7', '0', '69.219.145.29', '20050726002202', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11680', '540', '8', '0', '69.219.145.29', '20050726002203', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11681', '372', '8', '0', '69.219.145.29', '20050726002212', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11682', '354', '9', '0', '69.219.145.29', '20050726002214', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11683', '532', '10', '0', '69.219.145.29', '20050726002217', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11684', '75', '9', '0', '69.219.145.29', '20050726002219', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11685', '479', '6', '0', '82.54.242.92', '20050726100053', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11686', '424', '7', '0', '68.249.88.88', '20050726152235', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11687', '524', '9', '0', '68.249.88.88', '20050726152254', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11688', '578', '10', '0', '68.249.88.88', '20050726152330', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11689', '578', '4', '0', '130.126.234.98', '20050726153024', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11690', '508', '1', '0', '130.126.234.98', '20050726153030', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11691', '524', '7', '0', '130.126.234.98', '20050726153049', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11692', '16', '6', '0', '130.126.234.98', '20050726153104', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11693', '423', '2', '0', '213.207.194.109', '20050727092820', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11694', '312', '3', '0', '213.207.194.109', '20050727092837', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11695', '538', '4', '0', '213.207.194.109', '20050727092856', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11696', '424', '10', '0', '198.80.208.2', '20050727201758', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11697', '340', '9', '0', '198.80.208.2', '20050727201802', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11698', '61', '8', '0', '198.80.208.2', '20050727201806', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11699', '149', '7', '0', '198.80.208.2', '20050727201809', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11700', '592', '1', '0', '198.80.208.2', '20050727201813', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11701', '433', '2', '0', '198.80.208.2', '20050727201817', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11702', '423', '9', '0', '195.93.21.71', '20050728100450', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11703', '521', '8', '0', '195.93.21.71', '20050728100511', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11704', '508', '6', '0', '195.93.21.71', '20050728100521', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11705', '209', '4', '0', '195.93.21.71', '20050728100548', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11706', '615', '4', '0', '195.93.21.71', '20050728100603', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11707', '549', '2', '0', '195.93.21.71', '20050728100612', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11708', '362', '1', '0', '195.93.21.71', '20050728100621', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11709', '604', '9', '0', '24.217.133.2', '20050728133624', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11710', '329', '8', '0', '24.217.133.2', '20050728133628', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11711', '353', '7', '0', '24.217.133.2', '20050728133632', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11712', '44', '6', '0', '24.217.133.2', '20050728133635', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11713', '275', '5', '0', '24.217.133.2', '20050728133642', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11714', '609', '2', '0', '24.217.133.2', '20050728133710', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11715', '70', '1', '0', '24.217.133.2', '20050728133714', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11716', '587', '3', '0', '24.217.133.2', '20050728133718', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11717', '540', '4', '0', '24.217.133.2', '20050728133722', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11718', '423', '10', '16', '12.214.90.63', '20050729222851', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11719', '558', '10', '16', '12.214.90.63', '20050729222859', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11720', '622', '10', '0', '127.0.0.1', '20050730083816', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11721', '423', '2', '0', '24.217.165.168', '20050730094518', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11722', '365', '3', '0', '24.217.165.168', '20050730094525', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11723', '431', '5', '0', '24.217.165.168', '20050730094528', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11724', '621', '10', '0', '68.13.199.3', '20050730105348', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11725', '454', '9', '0', '68.13.199.3', '20050730105350', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11726', '497', '8', '0', '68.13.199.3', '20050730105352', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11727', '312', '7', '0', '68.13.199.3', '20050730105355', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11728', '409', '6', '0', '68.13.199.3', '20050730105357', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11729', '360', '5', '0', '68.13.199.3', '20050730105401', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11730', '73', '4', '0', '68.13.199.3', '20050730105404', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11731', '385', '3', '0', '68.13.199.3', '20050730105407', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11732', '57', '2', '0', '68.13.199.3', '20050730105410', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11733', '541', '1', '0', '68.13.199.3', '20050730105413', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11734', '615', '1', '0', '68.13.199.3', '20050730105429', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11735', '561', '2', '0', '68.13.199.3', '20050730105431', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11736', '363', '3', '0', '68.13.199.3', '20050730105434', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11737', '374', '4', '0', '68.13.199.3', '20050730105436', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11738', '532', '5', '0', '68.13.199.3', '20050730105439', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11739', '70', '6', '0', '68.13.199.3', '20050730105442', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11740', '461', '7', '0', '68.13.199.3', '20050730105445', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11741', '413', '8', '0', '68.13.199.3', '20050730105448', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11742', '535', '9', '0', '68.13.199.3', '20050730105451', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11743', '408', '10', '0', '68.13.199.3', '20050730105454', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11744', '623', '10', '0', '127.0.0.1', '20050730105905', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11745', '424', '3', '623', '68.13.199.3', '20050730110144', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11746', '585', '4', '623', '68.13.199.3', '20050730110148', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11747', '453', '5', '623', '68.13.199.3', '20050730110151', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11748', '42', '6', '623', '68.13.199.3', '20050730110153', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11749', '489', '7', '623', '68.13.199.3', '20050730110156', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11750', '587', '8', '623', '68.13.199.3', '20050730110158', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11751', '578', '9', '623', '68.13.199.3', '20050730110201', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11752', '488', '10', '623', '68.13.199.3', '20050730110204', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11753', '9', '10', '623', '68.13.199.3', '20050730110216', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11754', '502', '9', '623', '68.13.199.3', '20050730110218', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11755', '27', '7', '623', '68.13.199.3', '20050730110222', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11756', '487', '6', '623', '68.13.199.3', '20050730110225', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11757', '560', '5', '623', '68.13.199.3', '20050730110228', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11758', '480', '4', '623', '68.13.199.3', '20050730110238', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11759', '482', '2', '623', '68.13.199.3', '20050730110240', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11760', '423', '1', '623', '68.13.199.3', '20050730110247', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11761', '433', '10', '623', '68.13.199.3', '20050730110338', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11762', '439', '9', '623', '68.13.199.3', '20050730110340', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11763', '543', '8', '623', '68.13.199.3', '20050730110343', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11764', '571', '7', '623', '68.13.199.3', '20050730110347', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11765', '495', '6', '623', '68.13.199.3', '20050730110350', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11766', '444', '5', '623', '68.13.199.3', '20050730110353', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11767', '28', '4', '623', '68.13.199.3', '20050730110358', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11768', '44', '3', '623', '68.13.199.3', '20050730110402', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11769', '588', '2', '623', '68.13.199.3', '20050730110406', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11770', '67', '1', '623', '68.13.199.3', '20050730110409', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11771', '609', '2', '623', '68.13.199.3', '20050730110433', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11772', '484', '3', '623', '68.13.199.3', '20050730110436', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11773', '570', '5', '623', '68.13.199.3', '20050730110446', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11774', '463', '5', '623', '68.13.199.3', '20050730110449', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11775', '506', '5', '623', '68.13.199.3', '20050730110452', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11776', '464', '5', '623', '68.13.199.3', '20050730110458', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11777', '119', '5', '623', '68.13.199.3', '20050730110504', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11778', '565', '1', '623', '68.13.199.3', '20050730110509', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11779', '621', '9', '623', '68.13.199.3', '20050730110533', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11780', '521', '9', '623', '68.13.199.3', '20050730110711', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11781', '604', '5', '623', '68.13.199.3', '20050730110746', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11782', '372', '8', '623', '68.13.199.3', '20050730110850', '2');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11783', '54', '9', '623', '68.13.199.3', '20050730110854', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11784', '558', '6', '623', '68.13.199.3', '20050730110935', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11785', '531', '9', '623', '68.13.199.3', '20050730111012', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11786', '364', '8', '623', '68.13.199.3', '20050730111027', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11787', '355', '5', '623', '68.13.199.3', '20050730111039', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11788', '359', '2', '623', '68.13.199.3', '20050730111052', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11789', '61', '9', '623', '68.13.199.3', '20050730111121', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11790', '530', '10', '623', '68.13.199.3', '20050730111146', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11791', '557', '9', '623', '68.13.199.3', '20050730111204', '2');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11792', '524', '9', '623', '68.13.199.3', '20050730111207', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11793', '60', '9', '623', '68.13.199.3', '20050730111212', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11794', '41', '8', '623', '68.13.199.3', '20050730111224', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11795', '16', '10', '623', '68.13.199.3', '20050730111406', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11796', '470', '10', '623', '68.13.199.3', '20050730111618', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11797', '524', '5', '0', '12.215.244.99', '20050730131637', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11798', '624', '10', '0', '127.0.0.1', '20050730191623', NULL);
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11799', '423', '9', '0', '80.84.154.86', '20050731024144', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11800', '16', '10', '0', '80.84.154.86', '20050731024158', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11801', '17', '8', '0', '80.84.154.86', '20050731024208', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11802', '450', '7', '0', '80.84.154.86', '20050731024216', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11803', '367', '6', '0', '80.84.154.86', '20050731024232', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11804', '578', '10', '622', '205.188.117.6', '20050731092215', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11805', '506', '9', '622', '205.188.117.6', '20050731092225', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11806', '456', '1', '622', '205.188.117.6', '20050731092237', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11807', '37', '7', '622', '205.188.117.6', '20050731092247', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11808', '538', '6', '622', '205.188.117.6', '20050731092252', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11809', '345', '5', '622', '205.188.117.6', '20050731092301', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11810', '619', '4', '622', '205.188.117.6', '20050731092307', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11811', '504', '3', '622', '205.188.117.6', '20050731092314', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11812', '354', '2', '622', '205.188.117.6', '20050731092325', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11813', '621', '9', '0', '65.113.210.254', '20050731160659', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11814', '566', '8', '0', '65.113.210.254', '20050731160703', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11815', '339', '7', '0', '65.113.210.254', '20050731160709', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11816', '342', '1', '0', '65.113.210.254', '20050731160715', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11817', '46', '2', '0', '65.113.210.254', '20050731160719', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11818', '450', '4', '0', '65.113.210.254', '20050731160725', '1');
INSERT INTO `platinum_ratings` (`id`, `user_id`, `rating`, `rater_id`, `rater_ip`, `timestamp`, `image_number`) VALUES ('11819', '308', '7', '0', '65.113.210.254', '20050731160729', '1');


# dumping data for swingornot2.platinum_sessions
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('d678136a58a773e5075af23643341b5b', '', '1122874154');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('42cabaf954dd2e3f82dd1b19e4f7e727', '', '1122874235');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('ce0ae1ed006d2abad331b01b13b508dd', '', '1122873760');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('2b42e3959b9689f793394caaf99d8ec4', '', '1122873765');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('c8fea5909e059091677d761f52e686ce', '', '1122873320');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('2058d6387751512e5d536de265bc7fc8', '', '1122872791');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('54b7598bb4c29c166adc217e233d602c', '', '1122872885');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('18735e0f978548618d13a63cb4dde01e', '', '1122872562');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('0061a6ae173fb00cb875f2b3a7ec33c3', '', '1122872599');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('828c7955134f8875a98d0a6144195329', '', '1122872584');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('b453d7ab2c88a9a7eddc07213973792e', '', '1122872768');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('ff84582f6dbac4e683c0606c97168666', '', '1122872512');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('b3a70da33e04afc557e6cf98eef55f2a', '', '1122872512');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('6211708783667ea0acce7fe5d9d7ac5c', '', '1122872334');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('0a20017346af0b2297932bfa8ed6cec4', '', '1122871869');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('6a948cdaef3fd16c7cef5847849d4ed2', '', '1122871932');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('27921c10bb54edaa934cb1b4aae75103', '', '1122872034');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('5a8e1e15fa2ccb79a785bf0fcc6635a8', '', '1122872084');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('33f50c759744c17201dbf3309cc4f0a0', '', '1122872081');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('c596cab09bb211bb3fd54704e297e243', '', '1122872110');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('04d77624a8aef22a9af7fd8dd85a7634', '', '1122872228');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('5bfe464263b7c118ed635eb04a9c254b', '', '1122874217');
INSERT INTO `platinum_sessions` (`id`, `data`, `expire`) VALUES ('09b71f820c5d1352791ccdcf8a46042e', '', '1122874065');


# dumping data for swingornot2.platinum_signup
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('1', 'username', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('2', 'password', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('3', 'hint', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('4', 'realname', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('5', 'description', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('6', 'age', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('7', 'user_type', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('8', 'state', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('9', 'country', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('10', 'email', 'y', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('11', 'url', 'n', 'n', 'y', NULL, NULL, NULL);
INSERT INTO `platinum_signup` (`id`, `s_fields`, `s_enable`, `s_editable`, `s_primary`, `s_default`, `s_value`, `s_length`) VALUES ('12', 'quote', 'y', 'n', 'y', NULL, NULL, NULL);


# dumping data for swingornot2.platinum_smilies
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('1', ':D', 'icon_biggrin.gif', 'Very Happy');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('2', ':-D', 'icon_biggrin.gif', 'Very Happy');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('3', ':grin:', 'icon_biggrin.gif', 'Very Happy');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('4', ':)', 'icon_smile.gif', 'Smile');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('5', ':-)', 'icon_smile.gif', 'Smile');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('6', ':smile:', 'icon_smile.gif', 'Smile');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('7', ':(', 'icon_sad.gif', 'Sad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('8', ':-(', 'icon_sad.gif', 'Sad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('9', ':sad:', 'icon_sad.gif', 'Sad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('10', ':o', 'icon_surprised.gif', 'Surprised');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('11', ':-o', 'icon_surprised.gif', 'Surprised');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('12', ':eek:', 'icon_surprised.gif', 'Surprised');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('13', ':shock:', 'icon_eek.gif', 'Shocked');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('14', ':?', 'icon_confused.gif', 'Confused');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('15', ':-?', 'icon_confused.gif', 'Confused');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('16', ':???:', 'icon_confused.gif', 'Confused');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('17', '8)', 'icon_cool.gif', 'Cool');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('18', '8-)', 'icon_cool.gif', 'Cool');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('19', ':cool:', 'icon_cool.gif', 'Cool');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('20', ':lol:', 'icon_lol.gif', 'Laughing');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('21', ':x', 'icon_mad.gif', 'Mad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('22', ':-x', 'icon_mad.gif', 'Mad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('23', ':mad:', 'icon_mad.gif', 'Mad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('24', ':P', 'icon_razz.gif', 'Razz');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('25', ':-P', 'icon_razz.gif', 'Razz');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('26', ':razz:', 'icon_razz.gif', 'Razz');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('27', ':oops:', 'icon_redface.gif', 'Embarassed');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('28', ':cry:', 'icon_cry.gif', 'Crying or Very sad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('29', ':evil:', 'icon_evil.gif', 'Evil or Very Mad');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('30', ':twisted:', 'icon_twisted.gif', 'Twisted Evil');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('31', ':roll:', 'icon_rolleyes.gif', 'Rolling Eyes');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('32', ':wink:', 'icon_wink.gif', 'Wink');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('33', ';)', 'icon_wink.gif', 'Wink');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('34', ';-)', 'icon_wink.gif', 'Wink');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('35', ':!:', 'icon_exclaim.gif', 'Exclamation');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('36', ':?:', 'icon_question.gif', 'Question');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('37', ':idea:', 'icon_idea.gif', 'Idea');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('39', ':|', 'icon_neutral.gif', 'Neutral');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('40', ':-|', 'icon_neutral.gif', 'Neutral');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('41', ':neutral:', 'icon_neutral.gif', 'Neutral');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('42', ':mrgreen:', 'icon_mrgreen.gif', 'Mr. Green');
INSERT INTO `platinum_smilies` (`smilies_id`, `code`, `smile_url`, `emoticon`) VALUES ('43', ':arrow:', 'icon_arrow.gif', 'Arrow Down');


# dumping data for swingornot2.platinum_temp
INSERT INTO `platinum_temp` (`uid`, `ts`) VALUES ('564', '1122181200');
INSERT INTO `platinum_temp` (`uid`, `ts`) VALUES ('605', '1121835600');


# dumping data for swingornot2.platinum_templates
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('1', 'main_text', '<tr class=\"alt1\"><td class=\"s10\" align=\"left\" width=\"100%\" CELLPADDING=\"4\"><br><b><center>Welcome to SWINGORNOT.COM </center></b><br>Here you can upload your picture and have others view it and rate it. Its a great way to meet new people too. Not only can you rate other members pictures, you can also leave private messages and comments too! Best of all, membership is totally Free! <a href=\"signup.php\"> Signup now</a> and join the fun! <br><br><span class=\"bold\">How it works:</span> You signup and become a member. Once signed up you can upload your image. You may also link to your image if you already have it on another server. Once your image is approved by us, it will begin to appear on the site. Visitors will view your image and rate it depending on their own personal opinion. Visitors may also leave public comments about you, and some may even\r\ndecide to leave you a private message.<br><br><span class=\"bold\">Rules:</span> No porn allowed! This means no \"Penetration pictures\" allowed. All images are approved by us before being shown on the site. If you upload porn we will delete it. If you link to porn we will delete it. This is an \"Adult\" site so you must be 18 or older to be here! If you are under 18 YOU MUST LEAVE NOW! EXIT CLICK HERE To keep the site as fast as possible, all images must be smaller than 1024 bytes in filesize.<br /><br /><br><a href=\"signup.php\"><b><center>CLICK HERE TO SIGNUP NOW!</center><br></td></tr><tr><td><br></td></tr>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('2', 'copyrights', '<table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tr><td class=\"smallregular\" align=\"center\">Copyright © 2002 <a class=\"small\" href=\"http://www.swingornot.com/index.php?=\"  target=\"_top\">Your site name</a> - All Rights Reserved<br />Site powered by <a class=\"small\" href=\"http://www.i-rater.com\" target=\"_blank\">I-RATER</a></td></tr></table>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('3', 'loggedin', '<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">  <tr>     <form method=\"post\" action=\"http://www.swingornot.com/login.php\">      <td class=\"bold\">username:         <input class=\"input\" type=\"text\" name=\"UN\" size=\"10\" value=\"\">        password:         <input class=\"input\" type=\"password\" name=\"PW\" size=\"10\" value=\"\"> <input class=\"button\" type=\"submit\" name=\"login\" value=\"Login\"></td>    </form>  </tr>  <tr>     <td class=\"bold\"><div align=\"center\"><a class=\"bold\" href=\"http://www.swingornot.com/signup.php\">         Sign Up Now!</a></div></td>  </tr></table>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('4', 'lostpassword', '<br><br><table border=\"0\" cellpadding=\"3\" cellspacing=\"0\" width=\"100%\">\r\n<tr>\r\n	<td width=\"100%\" class=\"bold\" align=\"center\"><br>Enter your username or email and your password<br>hint will be sent to your registered email address.<br><br></td>\r\n</tr>\r\n<tr>\r\n	<td width=\"100%\" class=\"regular\" align=\"center\">\r\n	<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\">\r\n	<tr><form method=\"post\" action=\"http://www.swingornot.com/lost.php?search=1\">\r\n		<td class=\"bold\" align=\"right\">username:</td>\r\n		<td class=\"regular\"><input class=\"input\" type=\"text\" name=\"search_username\" size=\"24\" value=\"\"></td>\r\n		<td class=\"regular\"><input class=\"button\" type=\"submit\" name=\"lost_username\" value=\"Search ->\"></td>\r\n	</form></tr>\r\n	<tr><form method=\"post\" action=\"http://www.swingornot.com/lost.php?search=1\">\r\n		<td class=\"bold\" align=\"right\">email:</td>\r\n		<td class=\"regular\"><input class=\"input\" type=\"lost_email\" name=\"search_email\" size=\"24\" value=\"\"></td>\r\n		<td class=\"regular\"><input class=\"button\" type=\"submit\" name=\"lost_email\" value=\"Search ->\"></td>\r\n	</tr>\r\n	</table>\r\n	</td>\r\n</tr>\r\n</form>\r\n</table><br><br><br><br><br>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('5', 'faq', '<table cellpadding=\"2\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tr><td class=\"bold\"> <a class=\"bold\" href=\"http://www.swingornot.com\">SWINGORNOT.COM</a> >> FAQ</td></tr></table><table cellpadding=\"5\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tr><td class=\"regular\"><br><span class=\"bold\">Q.</span> Is posting a picture necessary in order for me to sign up?<br><blockquote><i><span class=\"bold\">A.</span></i>No, but you will not be able to use and participate in some of the sites great features. </blockquote><br><span class=\"bold\">Q.</span>Will posting a picture result in it remaining on your site forever?<br><blockquote><i><span class=\"bold\">A.</span></i>No, deleting is permitted at any time.</blockquote><br><span class=\"bold\">Q.</span>How can I remove any of my images once they are uploaded?<br><blockquote><i><span class=\"bold\">A.</span></i>There is a link named \"upload picture\" in the member menu, and, upon clicking it, youll get a button for deleting your picture.</blockquote><br><span class=\"bold\">Q.</span>Why are the ratings not an arithmetic average?<br><blockquote><i><span class=\"bold\">A.</span></i>A large amount of people give \"1\" ratings to everyone, and therefore a straight average isnt appropriate. The method we use for countering this wave of \"1\"s is making the overall rating a root meean square. To put it simply, we compute the square root of the averages of the squares of your ratings. A more detailed explanation is available through most major search engines :)A simple example would go something like this: Somebody rates you a 2, somebody else a 10.A 6 ranking would be the result. By using our method, you get a 7,2, by squaring 2, squaring 10, (4 and 100, respectively) and averaging the results, which would give a final result of 52, which, upon extracting the square root, gives 7,2.</blockquote><br><span class=\"bold\">Q.</span>What does \"Queued\" mean, when talking about my pictures status?<br><blockquote><i><span class=\"bold\">A.</span></i>That means your picture is still waiting for approval/rejection</blockquote><br><span class=\"bold\">Q.</span>What does \"Disabled\" mean, when talking about my pictures status?<br><blockquote><i><span class=\"bold\">A.</span></i>That means that your picture has been rejected as it does not follow our image rules</blockquote><br><span class=\"bold\">Q.</span>Why has my picture been rejected?<br><blockquote><i><span class=\"bold\">A.</span></i>See the upload picture page for the latest rules. If you comply to all those rules but it still cant get approval, then probably its under the suspicion of being a stolen/ otherwisenot legit picture. contact us in order to clarify things. Include a usernameand user ID.</blockquote><br><span class=\"bold\">Q.</span>Someone has stolen my picture! What can I do?<br><blockquote><i><span class=\"bold\">A.</span></i>Please use the \"report image\" link below the picture to send a notification to the admin.</blockquote><span class=\"bold\"><br><br></td></tr><tr><td class=\"regular\"></td>\r\n</tr></table>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('6', 'style', '<style type=\"text/css\">\r\nbody {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\n.dc {\r\n	font-family: sans-serif;\r\n	font-size: ;\r\n	font-weight: bold;\r\n	color: #f6f9ff;\r\n}\r\na {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\na:active {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\na:visited {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\na:hover {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: yellow;\r\n	background-color: ;\r\n}\r\na.bold {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\na:active.bold {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\na:visited.bold {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\na:hover.bold {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: yellow;\r\n	background-color: ;\r\n}\r\na.small {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\na:active.small {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\na:visited.small {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\na:hover.small {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: normal;\r\n	color: yellow;\r\n	background-color: ;\r\n}\r\na.smallbold {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\na:active.smallbold {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\na:visited.smallbold {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\na:hover.smallbold {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: bold;\r\n	color: yellow;\r\n	background-color: ;\r\n}\r\na:il.hover {\r\n	background-color: transparent;\r\n}\r\n.alt1 {\r\n	background-color: #ffffff;\r\n}\r\n.alt2 {\r\n	background-color: #eeeeee;\r\n}\r\n.title {\r\n	font-family: sans-serif;\r\n	font-size: ;\r\n	font-weight: bold;\r\n	color: #f6f9ff;\r\n}\r\n.regular {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n\r\n	color: black;\r\n}\r\n.selectedNav {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: yellow;\r\n	background: ;\r\n}\r\n.bold {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\n.bold-rv {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: #f6f9ff;\r\n	background-color: ;\r\n}\r\n.smallbold {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: bold;\r\n	color: black;\r\n}\r\n.smallregular {\r\n	font-family: sans-serif;\r\n	font-size:9px;\r\n	font-weight: normal;\r\n	color: black;\r\n}\r\n.error {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: red;\r\n}\r\n.input {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: normal;\r\n	color: \"#000000\";\r\n	background-color: \"#CCCCCC\";\r\n}\r\n.button {\r\n	font-family: sans-serif;\r\n	font-size: 11px;\r\n	font-weight: bold;\r\n	color: black;\r\n	background-color: #ffffff;\r\n}\r\n.clearbgtext {\r\n	font-family: sans-serif;\r\n	font-size: 13px;\r\n	font-weight: normal;\r\n	color: black;\r\n	background-color: transparent;\r\n}\r\n</style>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('7', 'site_stats', '<table cellpadding=\"3\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n	<tr>\r\n		<td width=\"300\">\r\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n  <tr> \r\n    <td width=\"13\" height=\"18\"><img alt=\"\" border=0 height=18 \r\n src=\"http://www.swingornot.com/images/blue_top_left.gif\" \r\n                      width=13></td>\r\n    <td height=\"18\" background=\"http://www.swingornot.com/images/blue_top_middle.gif\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></td>\r\n    <td width=\"13\" height=\"18\"><img alt=\"\" border=0 height=18 \r\n                        src=\"http://www.swingornot.com/images/blue_top_right.gif\" \r\n                      width=13></td>\r\n  </tr>\r\n  <tr> \r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_left_body.gif\"></td>\r\n    <td bgcolor=\"#dcdcdc\" align=\"middle\">Statistics</td>\r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_right_body.gif\"></td>\r\n  </tr>\r\n  <tr> \r\n    <td width=\"13\" height=\"1\" background=\"http://www.swingornot.com/images/blue_left_middle.gif\"><a href=\"http://plat\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></a></td>\r\n    <td valign=\"middle\"><img alt=\"\" border=0 height=1 \r\n                        src=\"http://www.swingornot.com/images/blue_middle_fill.gif\" \r\n                        width=\"100%\"></td>\r\n    <td width=\"13\" height=\"1\" background=\"http://www.swingornot.com/images/blue_right_middle.gif\"><a href=\"http://plat\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></a></td>\r\n  </tr>\r\n  <tr> \r\n    <td background=\"http://www.swingornot.com/images/blue_left_body.gif\"></td>\r\n    <td>\r\n	<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"bold\" colspan=\"2\">Past 24 Hours:</td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Points Today:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Ratings Today:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Comments Today:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Signups Today:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"bold\" colspan=\"2\">Past Week:</td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Points this Week:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Ratings this Week:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Comments this Week:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Signups this Week:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"bold\" colspan=\"2\">Past Month:</td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Points this Month:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Ratings this Month:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Comments this Month:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Signups this Month:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n</table>\r\n</td>\r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_right_body.gif\"></td>\r\n  </tr>\r\n  <tr> \r\n    <td height=\"13\"><img src=\"http://www.swingornot.com/images/blue_bottom_left.gif\" width=\"13\" height=\"13\"></td>\r\n    <td height=\"13\" background=\"http://www.swingornot.com/images/blue_bottom_middle.gif\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></td>\r\n    <td height=\"13\"><img alt=\"\" border=0 height=13 \r\n                        src=\"http://www.swingornot.com/images/blue_bottom_right.gif\" \r\n                        width=13></td>\r\n  </tr>\r\n</table></td><td valign=\"top\" width=\"300\">\r\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n  <tr> \r\n    <td width=\"13\" height=\"18\"><img alt=\"\" border=0 height=18 \r\n                        src=\"http://www.swingornot.com/images/blue_top_left.gif\" \r\n                      width=13></td>\r\n    <td height=\"18\" background=\"http://www.swingornot.com/images/blue_top_middle.gif\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></td>\r\n    <td width=\"13\" height=\"18\"><img alt=\"\" border=0 height=18 \r\n                        src=\"http://www.swingornot.com/images/blue_top_right.gif\" \r\n                      width=13></td>\r\n  </tr>\r\n  <tr> \r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_left_body.gif\"></td>\r\n    <td bgcolor=\"#dcdcdc\" align=\"middle\">User Info</td>\r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_right_body.gif\"></td>\r\n  </tr>\r\n  <tr> \r\n    <td width=\"13\" height=\"1\" background=\"http://www.swingornot.com/images/blue_left_middle.gif\"><a href=\"http://plat\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></a></td>\r\n    <td valign=\"middle\"><img alt=\"\" border=0 height=1 \r\n                        src=\"http://www.swingornot.com/images/blue_middle_fill.gif\" \r\n                        width=\"100%\"></td>\r\n    <td width=\"13\" height=\"1\" background=\"http://www.swingornot.com/images/blue_right_middle.gif\"><a href=\"http://plat\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></a></td>\r\n  </tr>\r\n  <tr> \r\n    <td background=\"http://www.swingornot.com/images/blue_left_body.gif\"></td>\r\n    <td>\r\n	<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\"><a href=\"http://www.swingornot.com/admin/new_images.php\" target=\"main\">Pending Users</a>:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Active Users:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Inactive Users:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Total Users:</td>\r\n<td align=\"right\" class=\"regular\"></td>\r\n</tr>\r\n</table>\r\n	</td>\r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_right_body.gif\"></td>\r\n  </tr>\r\n  <tr> \r\n    <td height=\"13\"><img src=\"http://www.swingornot.com/images/blue_bottom_left.gif\" width=\"13\" height=\"13\"></td>\r\n    <td height=\"13\" background=\"http://www.swingornot.com/images/blue_bottom_middle.gif\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></td>\r\n    <td height=\"13\"><img alt=\"\" border=0 height=13 \r\n                        src=\"http://www.swingornot.com/images/blue_bottom_right.gif\" \r\n                        width=13></td>\r\n  </tr>\r\n</table>\r\n <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n  <tr> \r\n    <td width=\"13\" height=\"18\"><img alt=\"\" border=0 height=18 \r\n                        src=\"http://www.swingornot.com/images/blue_top_left.gif\" \r\n                      width=13></td>\r\n    <td height=\"18\" background=\"http://www.swingornot.com/images/blue_top_middle.gif\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></td>\r\n    <td width=\"13\" height=\"18\"><img alt=\"\" border=0 height=18 \r\n                        src=\"http://www.swingornot.com/images/blue_top_right.gif\" \r\n                      width=13></td>\r\n  </tr>\r\n  <tr> \r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_left_body.gif\"></td>\r\n    <td bgcolor=\"#dcdcdc\" align=\"middle\">Platinum V3 Version</td>\r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_right_body.gif\"></td>\r\n  </tr>\r\n  <tr> \r\n    <td width=\"13\" height=\"1\" background=\"http://www.swingornot.com/images/blue_left_middle.gif\"><a href=\"http://plat\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></a></td>\r\n    <td valign=\"middle\"><img alt=\"\" border=0 height=1 \r\n                        src=\"http://www.swingornot.com/images/blue_middle_fill.gif\" \r\n                        width=\"100%\"></td>\r\n    <td width=\"13\" height=\"1\" background=\"http://www.swingornot.com/images/blue_right_middle.gif\"><a href=\"http://plat\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></a></td>\r\n  </tr>\r\n  <tr> \r\n    <td background=\"http://www.swingornot.com/images/blue_left_body.gif\"></td>\r\n    <td>\r\n\r\n	<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Current version:</td><td align=\"right\" class=\"regular\">3.2.1</td>\r\n</tr>\r\n<tr bgcolor=\"#eeeeee\">\r\n<td class=\"regular\">Your version:</td><td align=\"right\" class=\"regular\">3.2.1</td>\r\n</tr>\r\n</table></td>\r\n    <td width=\"13\" background=\"http://www.swingornot.com/images/blue_right_body.gif\"></td>\r\n  </tr>\r\n  <tr> \r\n    <td height=\"13\"><img src=\"http://www.swingornot.com/images/blue_bottom_left.gif\" width=\"13\" height=\"13\"></td>\r\n    <td height=\"13\" background=\"http://www.swingornot.com/images/blue_bottom_middle.gif\"><a href=\"http://plat\"><img src=\"http://www.swingornot.com/images/pixel.gif\" border=\"0\" width=\"1\" height=\"1\"></a></td>\r\n    <td height=\"13\"><img alt=\"\" border=0 height=13 \r\n                        src=\"http://www.swingornot.com/images/blue_bottom_right.gif\" \r\n                        width=13></td>\r\n  </tr>\r\n</table></td></tr></table>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('8', 'image_rules', '<table cellpadding=\"5\" cellspacing=\"5\" border=\"0\">\r\n  <tr>\r\n    <td class=\"regular\"><br>\r\n    <ul>\r\n      <li class=\"regular\">To keep the site as fast as possible, all images must be: <ul>\r\n          <li>less than or equal to 640 x 480 pixels in size</li>\r\n          <li>smaller than 100K in file size</li>\r\n        </ul>\r\n        <p><br>\r\n        </p>\r\n      </li>\r\n      <li class=\"regular\">Allowed: <ul>\r\n          <li>amateur pictures of you</li>\r\n          <li>nude pictures of you are ok</li>\r\n          <li>image file types: <ul>\r\n            </ul>\r\n          </li>\r\n        </ul>\r\n        <p><br>\r\n        </p>\r\n      </li>\r\n      <li class=\"regular\">Not allowed: <ul>\r\n          <li>pornography of any kind - which means NO PENETRATION PHOTOS!</li>\r\n          <li>professional models or non-amateur pictures</li>\r\n          <li>no commercial content (all uploaded pictures become the property of SWING TIMES MAGAZINE\r\n            but may be deleted by you anytime by logging into your account)</li>\r\n          <li>pictures of your cat or dog, pictures of you with your cat or dog</li>\r\n          <li>group pictures or family portraits.</li>\r\n          <li>your favorite anime or cartoon characters</li>\r\n        </ul>\r\n        <p><br>\r\n        All images are reviewed before being shown on the site. If you upload or link to anything\r\n        not allowed, it will be deleted. Please also note if you link to a remote image it may\r\n        later be downloaded and served from Your site name to ensure quality control. </p>\r\n      </li>\r\n    </ul>\r\n    </td>\r\n  </tr>\r\n</table>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('9', 'loggedout', '<table cellpadding=\"1\" cellspacing=\"0\" border=\"0\" width=\"100%\"><tr><td class=\"bold\"> <a class=\"bold\" href=\"http://www.swingornot.com/profile.php\" target=\"_top\">My Profile</a><br><br>  <a class=\"bold\" href=\"http://www.swingornot.com/upload.php\" target=\"_top\">My Image (Approved)</a> <br><br><a class=\"bold\" href=\"http://www.swingornot.com/messages.php\" target=\"_top\">Messages (0/0/0)</a> ]</td><td class=\"bold\" align=\"right\">Welcome  </td></tr></table>');
INSERT INTO `platinum_templates` (`id`, `file_name`, `file_content`) VALUES ('10', 'doc_head', '<!doctype html public \"-//W3C//DTD HTML 4.01 Transitional//EN\">\r\n<html>\r\n<head>\r\n<title> .: Your site name :. </title>\r\n<meta name=\"keywords\" content=\"rated,rate,amatuer,pictures,blonde,brunette,redhead,babes,dudes,members,mysql,php\">\r\n<meta name=\"description\" content=\"Your site name is an amatuer image rating site.  Members upload their images and have them rated by other site visitors.\">\r\n<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\">\r\n<link rel=\"shortcut icon\" href=\"http://www.swingornot.com/favicon.ico\">\r\n\r\n<script language=\"JavaScript\">\r\n<!--\r\n\r\nfunction SymError()\r\n{\r\n  return true;\r\n}\r\n\r\nwindow.onerror = SymError;\r\n\r\n//-->\r\n</script>');






# dumping data for swingornot2.platinum_upload_image_details
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('1', '554', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('2', '555', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('3', '557', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('4', '557', '2', 'n', 'blue');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('5', '308', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('6', '558', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('7', '558', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('20', '466', '5', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('9', '466', '3', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('10', '466', '4', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('11', '470', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('12', '470', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('13', '470', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('14', '561', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('16', '561', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('17', '561', '3', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('18', '564', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('19', '565', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('21', '466', '6', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('22', '466', '7', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('23', '566', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('24', '566', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('25', '566', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('26', '566', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('27', '569', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('28', '570', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('29', '571', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('30', '575', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('31', '575', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('32', '575', '3', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('33', '575', '4', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('34', '529', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('35', '578', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('36', '579', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('37', '579', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('38', '579', '3', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('42', '395', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('41', '395', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('43', '585', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('44', '585', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('45', '587', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('46', '587', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('47', '587', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('48', '587', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('49', '588', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('50', '592', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('51', '592', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('52', '261', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('53', '598', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('54', '424', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('55', '604', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('56', '607', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('57', '607', '2', 'n', 'me sitting in front of my computer');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('58', '607', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('60', '607', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('61', '607', '3', 'n', 'me just waking up');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('62', '609', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('63', '609', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('64', '609', '3', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('65', '613', '1', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('66', '613', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('67', '613', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('68', '613', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('69', '613', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('70', '615', '1', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('71', '615', '2', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('72', '615', '3', 'n', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('73', '619', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('74', '621', '1', 'y', '');
INSERT INTO `platinum_upload_image_details` (`id`, `user_id`, `total_file_count`, `main`, `description`) VALUES ('75', '623', '1', 'y', '');


# dumping data for swingornot2.platinum_user_types
INSERT INTO `platinum_user_types` (`id`, `user_type`, `gender`, `order_by`) VALUES ('8', 'Male', 'm', '3');
INSERT INTO `platinum_user_types` (`id`, `user_type`, `gender`, `order_by`) VALUES ('7', 'Couple', '', '1');
INSERT INTO `platinum_user_types` (`id`, `user_type`, `gender`, `order_by`) VALUES ('6', 'Female', 'f', '2');


# dumping data for swingornot2.platinum_users
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('10', 'tony', '3caf84cb5217bc5e', 'test1', 'Tony', 'Single Male looking to meet other couples for fun times, I do video and photography, I like to watch and join if possible. I am disease and drug free, looking for the same, will travel.', '18', '8', 'Kansas', 'United_States.gif', 'tony@swingornot.com', 'http://', '', 'here', '', 'jpg', 'approved', '216', '713', '3.3009', '0', 'yes', 'ddc5f5e86d2f85e1b1ff763aff13ce0a', '20030909201400', '20050717214751', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('11', 'SexyHotCarolDiva', '3caf84cb5217bc5e', 'wedding', 'tom and angela', 'Ageing sex crazed hippies.. early 40\'s couple . we are madly in love but enjoy wild no holds bared sex with couples ,females and select single males ', '41', '7', 'Texas', 'United_States.gif', 'us2nutcases@yahoo.com', '', '', 'here', '', 'jpg', 'disabled', '421', '2861', '6.7957', '0', 'no', '8f64a6d7ce607f0667567b429fbe0944', '20030909211926', '20050407160147', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('5', 'cpl4playinjeff', '5db749511145f03d', 'you n me', 'jerry n tammy', 'he 6,0 short brownish hair blue eyes   her 5,3 short blonde hair blue eyes 38d', '18', '7', 'Missouri', 'United_States.gif', 'jerry_walker2003@yahoo.com', 'http://', '', 'here', '', 'jpg', 'enabled', '1', '10', '10.0000', '0', 'yes', 'df6c7ccb6d4fdd812f7480afd321a8b1', '20030908195528', '20030913074418', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('6', 'bucky91', '01ca7b5c112563fa', '2nd love', 'Randy', 'open minded, fun loving, looking for others to enjoy great adult fun', '43', '6', 'Wisconsin', 'United_States.gif', 'PBRTB@aol.com', 'http://', 'good things happen to good people', 'here', '', '', 'enabled', '2', '16', '8.0000', '0', 'yes', 'e76647d4412ad37f7e2843715bdfb64a', '20030908212143', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('7', 'vics', '2daeea7276a5dab6', 'chiefs', 'Vicstoys', 'Single Safe Sane Secure', '37', '8', 'Missouri', 'United_States.gif', 'ligodaat@aol.com', 'http://', 'Nothing Changes if Nothing Changes', 'here', '', 'gif', 'enabled', '49', '193', '3.9387', '0', 'yes', '309004eb77c2e5d7b4711b069d0f0592', '20030909011410', '20030919023814', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('9', 'bobandlisa', '3caf84cb5217bc5e', 'test1', 'BOBANDLISA', 'We are in the midwest and are looking for hot couples to meet with for hottubbing, please be desease free and drug free, bob is straight but I go both ways. Get ahold of us if you like what you see!', '35', '7', 'Missouri', 'United_States.gif', 'admin@swingornot.com', '', '', 'here', '', 'jpg', 'approved', '381', '2276', '5.9737', '0', 'yes', '8a50795919944d434ea990ac89e0f4ce', '20030909143632', '20050730110216', '1', '1', '2005-01-13 05:24:12', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('26', 'ted33', '6cb3a65d201555d6', 'Pet', 'Pongo', 'Male enjoys swinging, large or small groups.', '59', '8', 'Florida', 'United_States.gif', 'ted_33_33@yahoo.com', '', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3b4af3f0d1b74dd5f01ecfa0f1510863', '20030922125642', '20040107064206', '1', '0', '2004-01-07 06:40:41', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('12', 'switchmates', '581e9ac521891667', 'her', 'Connie', '', '57', '7', 'Ohio', 'United_States.gif', 'switchmates@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd0941cf11879bc16049e0eebbc5b283b', '20030910183623', '20030910183623', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('13', 'joejoe252302', '4e6b82174e2a3828', 'dog', 'joejoe', 'm/w/c', '47', '7', 'Louisiana', 'United_States.gif', 'mardigras669@aol.com', 'http://', '', 'there', '', '', '', '1', '10', '10.0000', '0', 'yes', 'b5df4bf715a95588f79885078d0735a7', '20030911085307', '20050223164937', '1', '0', '2005-02-23 16:49:37', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('14', 'TxDewd', '3295e0510437154a', 'bored', 'TCTC', 'Trying to get the best out of life!', '43', '8', 'Texas', 'United_States.gif', 'funofit@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '183', '661', '3.6120', '0', 'yes', '4ceba3be7d3e82a138147421ba3e10b9', '20030911111211', '20050717213423', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('15', 'gray6597', '0cd0e3f6062da318', 'birthday', 'graham verney', 'horny husband want some extra', '34', '8', '', 'United_Kingdom.gif', 'gverney@tiscali.co.uk', 'http://', '', 'here', '', 'jpg', 'enabled', '10', '54', '5.4000', '0', 'yes', '1b6f58e3df8ca28e4dc62aeee2ac62e1', '20030911143148', '20030912181024', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('19', 'lookin4u', '22ff5ea023d90a95', 'normal', 'B**J', 'Lookin to meet new friends', '18', '7', 'Texas', 'United_States.gif', 'txtincup577@aol.com', 'http://', 'Whatever', 'there', '', '', 'approved', '55', '214', '3.8909', '0', 'yes', 'c864841f4d880a16f478228d8aaf4c34', '20030912195512', '20050721161852', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('16', 'kam4u', '6202d6ff208ab34c', 'kids', 'kam4u', '', '43', '7', 'Missouri', 'United_States.gif', 'kenn_mary@hotmail.com', '', '', 'here', '', 'jpg', 'approved', '247', '1228', '4.9716', '0', 'yes', '77e80279f745ba10eace70623bde3641', '20030911173922', '20050731024158', '1', '1', '2005-07-29 22:19:31', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('52', 'BIBBW46806', '373c28e319da69a7', 'ME', 'JENNIFER', 'BIBBW IN  FORT WAYNE INDIANA LOOKING FOR A BIBBW', '29', '7', 'Indiana', 'United_States.gif', 'BIBBW46806@yahoo.com', '', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0854923cf1d07c781918a171ce8b4491', '20031103233041', '20031103233129', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('17', 'rioferdinand', '70add2813b719643', 'soccer', 'ferdi', '', '28', '8', 'Texas', 'United_States.gif', 'letisier@hotmail.com', '', '', 'here', '', 'jpg', 'approved', '142', '593', '4.1760', '0', 'yes', '3c309fb60d3c3b75f32928140eaccb58', '20030912173523', '20050731024208', '1', '1', '2004-01-16 09:58:24', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('18', 'johnna', '3f92ca3179b98c4e', 'mybaby', 'Johnny', 'Looking for freindship and fun.', '46', '7', 'North Carolina', 'United_States.gif', 'johnna782@hotmail.com', 'http://', 'Dream as if you will live forever live as if you will die today', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a287bd6d78ea0460ffc1f54e89ec1ae9', '20030912173953', '20030913124855', '1', '0', '2003-09-13 12:48:55', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('20', 'kurdy67', '06ad909a06548191', 'kurdy67', 'kurdy67', 'salut', '25', '6', '', 'France.gif', 'kurdy67@yahoo.fr', 'http://', '', 'here', '', 'jpg', 'enabled', '308', '1600', '5.1948', '0', 'yes', 'bf91cea0bd3338699bc559f02caca113', '20030913072651', '20040215014657', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('104', 'liv4evr02', '6bf8ab256f05ecb0', 'apt', 'Shane', 'Hot and ready!  Let\'s have some fun!', '35', '8', 'Texas', 'United_States.gif', 'liv4evr02@yahoo.com', 'http://', 'What are you doing for lunch?  Wanna fuck?', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '71940a9ca8280124bf83f42153d47c1c', '20040217000611', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('22', 'hotcockstl', '6bb096f7366cb26b', '68', 'Charles', 'DWN, handsone, squeaky clean, 5\'11\", brown hair, blue eyes, 180 lbs.  Very open-minded, not into freaky stuff.  Very oral, interested in singles and couples.', '18', '8', 'Missouri', 'United_States.gif', 'hotmailstl@yahoo.com', 'http://', 'More, more ... :)', 'here', '', 'jpg', 'approved', '173', '871', '5.0346', '0', 'yes', '812beb6b86a12274dde8834008ccc9e6', '20030915112345', '20050717214829', '1', '1', '2003-09-15 11:34:54', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('23', 'vamp123', '5c1fb21a20d15f82', 'bobby', 'johnathen', '', '22', '8', 'Illinois', 'United_States.gif', 'steve8022@yahoo.com', 'http://', 'whatever can go wrong will go wrong', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b5ac55b288698c1a8f615cffa8cec5b2', '20030915134744', '20030916044541', '1', '0', '2003-09-16 04:45:41', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('24', 'red2lipps', '412ecfeb579faf39', 'large penis', 'julia', '', '32', '7', 'North Dakota', 'United_States.gif', 'red2lipps@yahoo.com', 'http://', 'whatever i want', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ef2099c801c4f7d8944dc49746a336be', '20030916113553', '20030916113553', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('25', 'Slammed', '3e80b09c33f26fce', 'name', 'Junior', '', '18', '8', 'Missouri', 'United_States.gif', 'Timdunkle@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b1ce079954dda2a007ad1f87505cbfcf', '20030918185447', '20030918185447', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('27', 'Seal', '2c75183706940252', 'name', 'Seal', 'Athletic. About 5\' 7\'\' and 9 inches erect', '18', '8', 'Minnesota', 'United_States.gif', 'sealsurgeon@navyseals.com', 'http://', 'I will make you breakfast in the morning.', 'here', '', 'jpg', 'approved', '142', '679', '4.7816', '0', 'yes', 'ddf36056f9e85504c7d86e9fd441a40d', '20030925001022', '20050730110222', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('28', 'robo57', '6a1348f10d787f74', 'tied in a', 'Robert', 'Big Handsome male looking for fun  married   but plays alone with permission, Red headed full bearded fun lovin  guy ', '18', '8', 'Illinois', 'United_States.gif', 'swingn2nite@aol.com', 'http://', 'lets  do it', 'here', '', 'jpg', 'approved', '152', '470', '3.0921', '0', 'yes', 'e7c9478c23057ed55247e41b1ac24ae4', '20030925100757', '20050730110358', '1', '1', '2005-02-24 09:45:06', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('29', 'hrnyplmbr', '37497ca4117308a7', 'favorite fish', 'josh', 'im tall handsome and hung', '26', '8', 'Illinois', 'United_States.gif', 'caryanne@earthlink.net', 'http://', 'im hot and horny wanna play', 'there', '', '', 'approved', '45', '188', '4.1777', '0', 'yes', '59ec63fef165f781435a1a22f214a8bb', '20030926170741', '20050710112917', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('30', 'guyxxx', '75733f8d1a0af602', 'dog name', 'sassy', 'very horny, lets fuck', '18', '8', 'Iowa', 'United_States.gif', 'guido@myownemail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2a1db9ef575f450ef0967a0a4a59483e', '20030928161415', '20031007212721', '1', '0', '2003-10-07 21:27:21', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('31', 'Frtaz', '649b81e56b51537a', 'what i like to hunt', 'Frtaz', '', '30', '8', 'Arkansas', 'United_States.gif', 'benelli_101@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '365e91fdcf46b35de8e3acfdc2440556', '20030929163053', '20031023155110', '1', '0', '2003-10-23 15:51:10', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('32', 'jeffcitystud', '7116c0216d244cdb', 'state', 'Robert', '', '48', '8', 'Missouri', 'Zimbabwe.gif', 'jeffcitystud@yahoo.com', 'http://', 'sex is funnn!!!!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '01d86884b12d2e9e88775bc8ed16bc28', '20030930201139', '20040308163225', '1', '0', '2004-03-08 16:32:25', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('33', 'tomharrydick', '10527dfa25fb86b4', '1986', 'tommy', '', '50', '8', 'Arkansas', 'United_States.gif', 'tommyhollman@yahoo.net', 'http://', 'bring it on', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5835dd5522dbbca0c866a4de7a54f3c7', '20031001134316', '20031001134316', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('34', 'hars57', '0df24e3444c90435', 'middle name', 'jophn washing', '', '18', '8', 'Illinois', 'United_States.gif', 'hars57@bikerider.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '10bb7f0b3de2372917863f67b4f8f4ae', '20031003181454', '20031003181454', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('35', 'kteis', '6ee20b8d67ed59f9', 'the usual', 'Evan', 'later', '37', '7', 'Pennsylvania', 'United_States.gif', 'kteis@earthlink.net', 'http://', 'later', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7fa519edf32a6e624a68a0d95f3b48a6', '20031004093414', '20031004093414', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('36', 'bily', '42316dd05fd97981', 'susac', 'bily', '', '28', '7', '', 'Croatia.gif', 'robert.zorotovic@st.hinet.hr', 'http://', 'oll', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '810110d9ce23758522134e0e7fe191bf', '20031006020028', '20031006020028', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('37', 'jetski1983', '3fdd490c7e0555df', 'snowmobile', 'owen', 'I\'m 5\'10\" tall med. build with a very high sex drive. I have brown hair that is receding . But I was told it was from doing to many U-turns under the sheets.', '32', '8', 'Wisconsin', 'United_States.gif', 'jetski1983@yahoo.com', 'http://', 'IBE6YOUB9', 'here', '', 'jpg', 'approved', '148', '564', '3.8108', '0', 'yes', '205ff60b62e1e310b911582ea43982d9', '20031006221108', '20050731092247', '1', '1', '2003-10-13 23:30:05', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('38', 'echo121212', '6bb096f7366cb26b', 'pussy', 'josh', 'I am 6\'3 dark complected, about 180lbs. brown hair and eyes and athletic.', '24', '8', 'Illinois', 'United_States.gif', 'echo121212@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '81510e77f8d55273be470edc7ccd7070', '20031006221302', '20031006221302', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('39', 'luv2cum4u', '04b2008e7fafa2a5', 'what do you do at night', 'short&sweet, Older & bolder', 'We like sex, sex, and more sex. Bi-Women and couples, we like oral, giving and receiving.', '18', '7', 'Wisconsin', 'United_States.gif', 'littleone69@tds.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd15a77d94ccdc60d5b3830e8d53e9011', '20031008193851', '20031008193851', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('40', 'dave&mary', '6768965a0087cdee', 'usual', 'dave', 'Hot couple trying the new life', '41', '8', 'Illinois', 'United_States.gif', 'trymrulikeme2003@yahoo.com', 'http://', 'I really have enjoyed this day, but I must be movin on', 'here', '', '', 'approved', '90', '326', '3.6222', '0', 'yes', '20b2659464150ded8c83547842512973', '20031009144047', '20050715122935', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('41', 'funinkccpl', '315eaf973dde67a4', 'doggy', 'Bill', 'Were a easy going real couple looking for same,', '50', '7', 'Missouri', 'United_States.gif', 'funinkccpl@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '234', '1239', '5.2948', '0', 'yes', '88dec91fc25d5443a2dc5540da53d192', '20031012112156', '20050730111224', '1', '2', '2003-12-21 20:34:27', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('42', 'c2cumm', '0922719a62b1cf9e', '13', 'chris', 'black in shape male.  strait like haveing fun and party.Sexy black woman love sucking dick and eating pussy. Just want to have fun.', '31', '7', 'Wisconsin', 'United_States.gif', 'harrellc376@AOL.com', 'http://', 'lets get it started', 'here', '', '', 'approved', '144', '518', '3.5972', '0', 'yes', '397e5d55119b65878fa0165bf8b2f2e5', '20031015093121', '20050730110153', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('43', 'doubieluv', '254fedb303b9378e', 'sugarray', 'nosmurf', 'Crazy man, with crazy sense of humor.  Looking for goodtimes with good people.', '29', '8', 'Missouri', 'United_States.gif', 'jmojangles@aol.com', 'http://', '\"No new taxes\"  G.B. Sr.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a26e08a0483950874092153ef60718bf', '20031015110321', '20031017101644', '1', '0', '2003-10-17 10:16:44', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('44', 'hrd1foru', '098afb24152e3df0', 'ex-roomie', 'Jose', '37 BlackMale 5ft9in 165lbs', '37', '8', 'Missouri', 'United_States.gif', 'cumgetsumnow_99@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '120', '390', '3.2500', '0', 'yes', '3f83bcf608a526293f8dcc05b7091bc7', '20031017170548', '20050730110402', '1', '1', '2005-02-23 20:55:52', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('45', 'GODLIKE', '41eb23747945fb24', 'monoxide', 'johnny p', 'couple looking for other couples with bi females ofr girl on girl and or full swap', '22', '8', 'Michigan', 'United_States.gif', 'juggalo974@hotmail.com', 'http://', 'just do it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b08dad6c78ed6b794e4a4e012a4a1fe9', '20031023233808', '20031023233808', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('46', 'yourfuckbuddy', '5caa6c094a395749', 'name', 'Mr Skeeter', 'Unusually horny guy that likes it all.', '35', '8', 'Illinois', 'United_States.gif', 'skeeter4_69@hotmail.com', 'http://', 'Thank you sir, may I please have another', 'here', '', 'jpg', 'approved', '71', '305', '4.2957', '0', 'yes', 'a4ea99ff14a36f096c8e8a2813d00869', '20031024231936', '20050731160719', '1', '1', '2003-11-05 10:03:30', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('47', 'knappoleon', '4866a46e7bc68620', 'name on ship', 'robert', 'yng danville cpl', '18', '7', 'Illinois', 'United_States.gif', 'knappoleon@hotmail.com', 'http://', 'Fuck me if im wrong, but you want to kiss me dont ya?', 'there', '', '', 'approved', '50', '163', '3.2600', '0', 'yes', '4ca7d3b44cc99c807a294b28fefdefbd', '20031028073517', '20050725142919', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('48', 'summerandcuffs', '135ea35e46671876', 'son', 'goofy', '', '35', '7', 'Missouri', 'United_States.gif', 'summerandcuffs@yahoo.com', 'http://', 'How does it feel!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a42fa7ca7c4d2eef64090a9603b24148', '20031028132150', '20031028132150', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('49', 'moonrivercouple', '5acffcf97edb6d35', 'Playpals', 'Dale Moses', 'Married couple look for others to play with.', '59', '7', 'Florida', 'United_States.gif', 'moonrivercpl@yahoo.com', '', 'The first responsibility of life is  to live.', 'here', '', '', 'approved', '54', '182', '3.3703', '0', 'yes', '073991efca08ee7e1626b15f231aa1de', '20031029141103', '20050725143450', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('50', 'iplaynogames72', '5f39127339b38be1', 'b-day', 'tom6672', '', '18', '8', 'Illinois', 'United_States.gif', 'iplaynogames72@ameritech.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ad482fbf9c8f3833f24e3c0fa63a7991', '20031029195837', '20031029195837', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('51', 'D and T', '37a3dd0737087e11', 'dogs name', 'droopy', '', '18', '8', 'Missouri', 'United_States.gif', 'DJ3961@yahoo.com', 'http://', 'If it you like it once then do it again', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bce85068d0dde440e220be451bedb5d1', '20031102055332', '20031102055332', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('53', 'OsirisGod', '06ba009807133ce1', 'muppet', 'Osiris', 'A little about myself: My aphrodisiac for kinkiness is that I enjoy sex. I love anal and oral sex, and always enjoy a long night of passion and sex. Someone who can be totally uninhibited one minute, and virginal the next. I am also looking for many new experiences with a woman and hope that you will be one of them. ', '28', '8', 'Illinois', 'United_States.gif', 'osirisgod@phantomemail.com', 'http://', 'Hope is the grand experience of life', 'here', '', 'gif', 'approved', '77', '371', '4.8181', '0', 'yes', 'f577425d078a0e45052b17eb265457c0', '20031104114513', '20050722113236', '1', '1', '2003-11-04 11:50:42', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('54', 'errorless98', '45844802175ff302', 'cubs', 'brad', 'fine as hell wants some?', '21', '8', 'Nebraska', 'United_States.gif', 'errorless98@yahoo.com', 'http://', 'nice shoes wanna fuck', 'here', '', 'jpg', 'approved', '88', '495', '5.6250', '0', 'yes', 'b24ea1694ff00a8b7c421f1fce6e64f5', '20031105015120', '20050730110854', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('55', 'pair806', '7982aaa965d1bd7b', 'cubs', 'mandy', 'fine as hell want some?', '18', '6', '', 'United_States.gif', 'pair806@yahoo.com', 'http://', 'nice shoes wanna fuck?', 'here', '', 'jpg', 'disabled', '210', '1352', '6.4380', '0', 'yes', 'deb90efda9ec8482fdd0cf03b448697f', '20031105015407', '20050317222726', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('56', 'memph2378', '6645cc8840e35877', '2378', 'mark', 'Single male from Memphis looking for 3somes, 4somes, etc.  I am 5\'10\" 175 lbs.', '25', '8', 'Tennessee', 'United_States.gif', 'memph2378@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '38b84533124844e30f9d80de99f2d360', '20031105025022', '20031105025022', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('57', 'Fly120', '044475584cac7b01', 'Stormy', 'Streaker', 'Love great parties and fun times!', '48', '7', 'Illinois', 'United_States.gif', 'streaker574@aol.com', 'http://', 'Life is a yummy proposition!', 'here', '', 'jpg', 'approved', '150', '635', '4.2333', '0', 'yes', 'faa1782b8d64dbf192123ee83ff6e785', '20031105124436', '20050730105410', '1', '1', '2003-11-05 12:51:09', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('58', 'fncpl', '08f692d648228297', 'yahoo account', 'Beasleys', 'Late 30\'s couple.  Both in decent shape.Like sexual adventure.', '36', '7', 'Missouri', 'United_States.gif', 'fncpl2003@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9708166156a188aac3b2bac433a38eb6', '20031125014528', '20031125014528', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('59', 'weshareyou', '6d81314c0fcf6bb8', 'us', 'Ron and Brandy', 'We are a couple looking to swap same room  she is bi, he is str8. we are also looking for a few single bifems to join us, light drink and smoke is ok, we are clean expect the same, no pushy people and we are notinto pain of anykind, no means no!', '21', '7', 'Illinois', 'United_States.gif', 'weshareyou@aol.com', 'http://', 'hugs and very wet kisses', 'here', '', 'jpg', 'enabled', '93', '596', '6.4086', '0', 'yes', '8f83c66bfdc30b5a3184fc75738fae1d', '20031127044612', '20050224213014', '1', '0', '2003-12-05 08:32:41', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('60', 'dukes_01', '49c5f95702eb0c02', 'h.m. ??', 'matt', '20 yo male from north il and in school in central il, and travel between the two quite often. Would love to meet singles and couples.  ', '20', '8', 'Illinois', 'United_States.gif', 'dukes_01@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '109', '518', '4.7522', '0', 'yes', 'b0f8bf15f9d1e6f344ae57835f1552c2', '20031128042227', '20050730111212', '1', '1', '2003-11-29 04:07:53', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('61', 'bubbles_doc', '4505cbed51fe7bde', 'darth vader', 'bubbles and doc', 'we are a hwp couple who is d/d free looking for descreet couple for fun and games', '35', '7', 'Missouri', 'United_States.gif', 'bubbles_doc@yahoo.com', 'http://', '', 'here', '', 'jpeg', 'approved', '135', '752', '5.5703', '0', 'yes', '618c3429daed98c17ec5f04fdb3d217d', '20031128200936', '20050730111121', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('62', 'shanababy', '0fbd0e1751c813cc', 'nickname', 'shana craft', 'we are a 30 something african american  couple seeking a female for some hot fun', '35', '7', 'Illinois', 'United_States.gif', 'shanababy@sbcglobal.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ff1cf2dba31d885785ae49502bbcf68c', '20031129133906', '20031129133906', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('63', 'fuerte_99', '3abeca8b38492722', 'b co', 'LatinLover', 'I am a 33 year old grad student who is looking for a woman who wants to have some fun. I will not BS or Lie to you to get into your pants. I am straight, black short hair, firm body and can keep going for a couple of hours without a break. I hope to meet you soon. I want to release some energy after a long week of work and school. Thanks.', '33', '8', 'Kansas', 'United_States.gif', 'fuerte_99@yahoo.com', 'http://', 'Never give up or in.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '405664955a2ca68dc50dc71fae86638a', '20031129134901', '20031203184516', '1', '0', '2003-12-03 18:45:16', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('64', 'horneyone', '054207ca3ec2bfcb', 'dog', 'easyone', '', '40', '8', 'Illinois', 'United_States.gif', 'yeah_ok43@yahoo.com', 'http://', 'just do it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5af54a0186041ca8050ac047683d5d01', '20031207234534', '20031209085025', '1', '0', '2003-12-09 08:50:25', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('65', 'tasshia69', '39464dc8461990f2', 'god', 'tasshia', 'sexy african american female', '30', '6', 'Washington', 'United_States.gif', 'tasshia69@yahoo.com', 'http://', '', 'here', '', 'jpg', 'enabled', '5', '33', '6.6000', '0', 'yes', '2b6f90e72573f829f88bd40d5b2b61a2', '20031210141800', '20040309104514', '1', '0', '2004-03-09 10:45:14', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('66', 'littleatlas', '37fd5fb726336bf0', 'israel', 'Marc', 'I am 5\"10\" 195 lbs,a personal trainer,and looking to have some fun and good times', '38', '8', 'California', 'United_States.gif', 'easyoneasyoff2004@yahoo.com', '', 'I\'ll be back', 'here', '', 'jpg', 'approved', '119', '545', '4.5798', '0', 'yes', '0a5754801a42d1d84ebe4d7ef2272317', '20031211225052', '20050718145104', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('92', 'Houguy329', '15fb58870ed2ad7f', 'hwo & when', 'Steve', 'Male looking for fun', '42', '8', 'Texas', 'United_States.gif', 'thedude38@hotmail.com', 'http://', 'I didnt know swer gas backed up on elevators', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4ed95408d8ddb9f92166f1b2a54bb5a0', '20040209140013', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('67', 'rover', '053e684a6ee69386', 'car', 'lynn', '', '35', '7', 'Missouri', 'United_States.gif', 'roverlover@aol.com', 'http://', 'lead your live, dont let your life lead you', 'here', '', 'jpg', 'approved', '123', '823', '6.6910', '0', 'yes', '84072d8ca1dbe193b29678b88698d3c8', '20031213132822', '20050730110409', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('68', 'njoyinit', '401b385529ee38f2', 'how long', 'Keln Kev', '', '40', '7', 'Missouri', 'Venezuela.gif', 'njoyinit@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f423c73dfaee7bdbab70bd86606bb13e', '20031215224154', '20031215224154', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('69', 'ScottRichards', '58e01b09619aba4b', 'dog', 'richard', '31 single \r\n5\'7\"tall\r\n165 lbs MED build\r\nbrown eyes & hair', '31', '8', 'Florida', 'United_States.gif', 'radiorichie30@hotmail.com', 'http://', 'ask me any thing', 'here', '', 'jpg', 'approved', '89', '304', '3.4157', '0', 'yes', 'cf99c1d3a1ca3cd7743a200c673b224b', '20031216063857', '20050717215104', '1', '1', '2003-12-16 06:42:40', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('70', 'AMERICAL', '6b631f5b2f5da837', '7053923', 'Glenn', 'Single white looking for a lasting relationship,if interested drop a line.', '53', '8', 'California', 'United_States.gif', 'gmcstl@sbcglobal.net', 'http://', 'You only have one life so live', 'here', '', 'jpg', 'approved', '77', '256', '3.3246', '0', 'yes', '521c4aa93e327e9f27eee1d7b6aa1e9e', '20031217034853', '20050730105442', '1', '2', '2004-01-07 18:07:44', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('71', 'hadisuwaid', '75b731203c925e54', 'hudhud', 'hadi', '', '28', '8', '', 'United_Arab_Emirates.gif', 'hadisuwaid@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7f20cb45f0017d26519b2d808bc22554', '20031218025556', '20031220080304', '1', '0', '2003-12-20 08:03:04', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('72', 'midwesttina', '3d33850c4456a121', 'dog', 'Tina', '', '18', '6', 'Iowa', 'United_States.gif', 'midwesttina@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '11c8d52baad44bd8216614ab68929cc1', '20031222061735', '20031222061735', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('73', 'sakcon', '6c8a978c64ad334d', 'usual', 'Kevin & Sandy', '', '39', '7', 'Georgia', 'United_States.gif', 'CORNINGNY2000@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '124', '665', '5.3629', '0', 'yes', 'eecf03f3c55c50828f24e9cc3af1fdbc', '20031224212835', '20050730105404', '1', '1', '2004-07-15 17:48:57', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('74', 'gldegl1', '73d044eb596566b8', 'son', 'Nathan&Tonette', 'we are a fun loving couple looking for other couples and bi fems with common interests to meet and spend time with.', '35', '7', 'Missouri', 'United_States.gif', 'gldegl1@yahoo.com', 'http://', '\"ooooohhhhhh baby!\"', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8ec441bbf467345d9a02d38b57bf0107', '20031226211018', '20031226211018', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('75', 'ben55', '0015252347701c58', 'childs  name', 'abigail', 'single male with some swinging experience. looking for local ladies or couples who would like to add a nice guy to their circle of friends for adult fun ', '49', '8', 'Wisconsin', 'United_States.gif', 'bhent85776@aol.com', 'http://', 'let them eat cake', 'here', '', 'jpg', 'approved', '79', '268', '3.3924', '0', 'yes', 'dd3a2804610db5c2b80d23475d6d63b8', '20031228102013', '20050726002219', '1', '1', '2005-01-24 12:40:58', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('76', 'listo12172', '2bb3bf2e374af845', 'phone#', 'anthony', 'im a latin rapper who loves to have fun and fuck!!!', '31', '8', 'Wisconsin', 'United_States.gif', 'listo12172@sbcglobal.net', '', 'latin lover', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd0a91fda486801eac8adc8e25908d3ce', '20031231025547', '20031231030215', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('77', 'injunjoe', '718040ff2f61d99d', 'dog name', 'buster', '6\'1\" 215# brown hair blu eyes\r\nMarried to woman with chronic illness and looking for a little excitement in my life to fill the void', '45', '8', 'Missouri', 'United_States.gif', 'the_caymans@go.com', 'http://', 'Just Do It', 'here', '', 'jpg', 'approved', '94', '326', '3.4680', '0', 'yes', 'efcd62ccf116bcb8595d4efefdaa03d9', '20040102093958', '20050725142623', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('78', 'strtsx', '03b7673e77401e55', 'nicknamw', 'nickname', 'kinky new at this looking for omaha or local:)', '29', '7', 'Iowa', 'United_States.gif', 'bstrietbeck@msn.com', 'http://', 'not that hole, the other hole!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b62521522e593f80cd4fcf70b5773bdd', '20040104002948', '20040104002948', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('79', 'ishmael420', '2aca3bc928f3c780', 'who?', 'John', 'Looking for women and groups for sex.  Simple as that.', '25', '8', 'Illinois', 'United_States.gif', 'dongkepinis@hotmail.com', '', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'aa2429b4e3cf5d4ed028fbd5afddae42', '20040105001539', '20040527193829', '1', '0', '2004-05-27 19:38:29', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('80', 'tony101', '3c8b23a0272256d2', 'tony', 'tony', 'I am Tony, I want to meet couples and single females for fun.', '18', '8', 'Missouri', 'United_States.gif', 'tony@geniusfx.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3a19c2902e44ee00447894b31281adbf', '20040115195720', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('81', 'tlcmach', '3f369d8e5c68a717', 'abigail', 'timmy', '41 male 5\'9 blue eyes shave my head love to make the women happy', '18', '8', 'Illinois', 'United_States.gif', 'tlcmach1@yahoo.com', 'http://', 'go for it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9a6865efe09f9ce14d125905205e03a4', '20040128001258', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('82', 'wuzzat1', '503ce94c79d29a89', 'zak', 'scott', '', '45', '8', 'Illinois', 'United_States.gif', 'kruse58@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '63', '297', '4.7142', '0', 'yes', 'dc2c0153b4ea252ece96170cfb2cd8bd', '20040130170003', '20050717214559', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('83', 'stallion783', '6320a3f542db7e57', 'DOGG', 'DOGG', '', '30', '7', 'Massachusetts', 'United_States.gif', 'dave@ARLINGTONHEALTHANDFITNESS.COM', 'http://', 'ARE YOU READY', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2220cb103098f1fe0ab1b904fa76eeae', '20040131112750', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('84', 'sharod2525', '3054396767ba7d07', 'name', 'Pimp', 'Young blackman loooking for some fun', '21', '8', 'Missouri', 'United_States.gif', 'sharod2525@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '394d0b000341a256c773fa1813f59bf1', '20040202042513', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('85', 'rerun2000', '080c1a726e50edfd', 'my love', 'rerun2000', '', '33', '7', 'California', 'United_States.gif', 'davidhaghighi@hotmail.com', 'http://', 'life is to short', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5c8cb36f4bd0bf6811fb91dfc75e3872', '20040204114128', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('86', 'Jeremy', '1b9a375b7d8a82a5', 'bubba', 'Jeremy', 'just me ', '25', '8', 'Kansas', 'United_States.gif', 'GeminiTwinless@hotmail.com', 'http://', 'piss off', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '877b13f232fe100743d38e5bcb9a82d3', '20040205145141', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('87', 'randdinil', '36b5d5b7148e6460', 'computer', 'Rick', 'Adventurous couple looking for same.\r\n\r\nDiane is sexy and shy.\r\n\r\nRick is outgoing and sturdy.', '48', '7', 'Illinois', 'United_States.gif', 'randdil@aol.com', 'http://', 'Live Free and died.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6ab509120e35b170cb629c3861876832', '20040208120541', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('88', 'bigdave461', '6bb096f7366cb26b', 'rocky', 'dave', 'i am 6 foot 250lbs lookin for funh brown hair green eyes', '24', '8', 'Illinois', 'United_States.gif', 'rfasts10@aol.com', 'http://', 'whoes your daddy', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5a1e0efbfd396845159fffd635bf115d', '20040208144746', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('89', 'Seductress', '067ef0dc7cfc24ae', 'nickname', 'Nanette Marks', 'I\'m a 5\'6 Redhead with full lush lips and an athetic build.', '43', '6', 'Missouri', 'United_States.gif', 'xdarkiust@yahoo.com', 'http://', '', 'there', '', '', 'approved', '112', '428', '3.8214', '0', 'yes', 'f92760658c0a820c1d786c33c147915c', '20040208180132', '20050712104601', '1', '0', '2005-04-21 08:30:40', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('90', 'evad127', '771b917c54f7ee5a', 'make me', 'dave', 'married guy looking for extra fun as soon as I convence the misses', '37', '8', 'Hawaii', 'United_States.gif', 'evad127@yahoo.com', 'http://', 'Fuck it then', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4f1aeff4da356f04f535d6e82660b7ce', '20040209034734', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('91', 'us2nutcases', '7342fd867ed48694', 'wedding', 'tom and angela', 'Ageing sex crazed hippies.. early 40\'s couple . we are madly in love but enjoy wild no holds bared sex with couples ,females and select single males ', '41', '7', 'Texas', 'United_States.gif', 'us2nutcases@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '18cd56ed1dbda31bd6f2bc9d350fef33', '20040209124734', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('93', 'jhall211', '6da8a47e66495339', 'wife', 'johnnie hall', 'she is black and very pretty. she weighs 130 lbs.  he is older than she is.  we are a nice and friendly couple.', '47', '7', 'North Carolina', 'United_States.gif', 'jhall211@netzero.com', 'http://', 'pretty is as pretty does', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3bc4922523c2545a4775fc8993d2733a', '20040209160757', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('94', 'weplay2003', '23ff0b366f10e825', 'female wolf', 'F & B', 'Happily married couple that seeking fun iwth other couples or bifemales', '27', '7', 'Idaho', 'United_States.gif', 'weplaytogehter2000@yahoo.com', 'http://', 'Smile its the second best thing you can do with you mouth', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'cd58e3426fb95b36f0f7147d8aa097e5', '20040209185233', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('95', 'ceesntkts', '1c0625ce76158534', 'farm', 'william', '', '41', '7', 'Illinois', 'United_States.gif', 'ceesntkts2000@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1b0f28a10b0a3b036cb12dd81ea94a21', '20040210110722', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('96', 'winny73', '35df0a9c5a75db42', 'wife', 'brian', 'tall ex marine and a good laugh', '36', '7', '', 'United_Kingdom.gif', 'brian@winn24.fsnet.co.uk', 'http://', 'if it moves fuck it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'abd1e679bab2685e82ba329ca7f4b950', '20040210131744', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('97', 'random_828', '27761f1617c4d035', 'Favorite team', 'Doug', 'Couple interested in good times.', '28', '7', 'Wisconsin', 'United_States.gif', 'random_828@yahoo.com', 'http://', 'You only have to say yes!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4abb98c64cb9c8ab6bb6427afb1b3c90', '20040211161519', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('98', 'tomo65041', '4448dd9a39ab97e1', '', 'count', 'nice guy looking for fun', '18', '8', 'Missouri', 'United_States.gif', 'tomo65041@centurytel.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '276ec6c46bf5ff9e4b09f6af9df9083a', '20040211202819', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('99', 'starman85', '55080874137b92cc', 'job', 'paul', '', '44', '7', '', 'United_States.gif', 'starcraft85@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '454740e03fb99543efdb5402f5b70bc7', '20040212181104', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('100', 'nhcouple', '3de95b59579e6352', 'ur name', 'robert', '', '28', '7', 'New Hampshire', 'United_States.gif', 'nhcouple@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd361b0da3e0ba86a5403ebd5146d46d3', '20040212201032', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('101', 'naturian', '05f5e1cb2b65315d', 'no tempo pra frente', 'Andrew', 'I\'m a simple person who like to talk, make friendship, walk around naked in nature and sometimes have fun c2c on cam...', '25', '8', '', 'Portugal.gif', 'adepto@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f77fad0a5e12c0151de0eb21eddebe9f', '20040213054804', '20040213055815', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('102', 'gaudoux', '2d5e65fb73f7c130', 'cartype', 'cartype2', '', '45', '8', 'Pennsylvania', 'United_States.gif', 'capeagde@hotmail.com', 'http://', 'Luv it All !!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6de3bb1e7dee76a344dabf1037520a1e', '20040213233231', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('103', 'JRIOS2968', '31957f102a61f9a0', 'ASS', 'JOSE', 'NICE COUPLE TO HANG OUT WITH', '35', '7', 'Illinois', 'United_States.gif', 'JRIOS2968@AOL.COM', 'http://', 'SEX', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5af9dd3746b3fa3d745a262d59db5bec', '20040214170311', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('105', 'bliss802', '7d01934a7a562242', 'woof', 'bliss', '', '37', '8', 'Vermont', 'United_States.gif', 'bliss55@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8e59426da9869dd65a837d52c71b8848', '20040217133512', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('106', 'camaroman01', '1e85376d7dae3adf', 'same as others', 'henry', 'I\'m 25 years old and new to the swinging lifestyle.  I\'m 5\'10 / 200 lbs / althetic build.  ', '25', '8', 'Illinois', 'United_States.gif', 'henryvbiii@hotmail.com', 'http://', '', 'here', '', '', 'approved', '37', '145', '3.9189', '0', 'yes', 'fe8f04a6b85e735da375f51a2bcc6ba1', '20040218114218', '20050710112910', '1', '0', '2004-02-18 23:18:50', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('107', 'jason99cool', '3dce6a8051a0f444', 'em', 'Jason Cool', '', '28', '8', 'Massachusetts', 'United_States.gif', 'jason99cool@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b8d8ebece47cc5acf9f5cb2b068a8960', '20040218230152', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('108', 'Jedekiah', '025d5c894a44e102', 'wrestler', 'Eric Plantard', '', '43', '8', '', 'United_Kingdom.gif', 'elsupremo@btinternet.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7293a4f550f1e5b220ba6c1a10d50ea2', '20040219063355', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('109', 'sands35071', '6cebf2214ed8b8bb', 'cell numbers', 'Dave Muller', 'White Married Couple - looking for Fun', '48', '7', 'Alabama', 'United_States.gif', 'gt993284@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bfb03621899a87308fa75f50ec72f813', '20040219101430', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('110', 'BIGBADTONY', '0ba895d920437d0b', 'TONYB', 'BIGT', '', '45', '8', 'Maryland', 'United_States.gif', 'STATEMECH@AOL.COM', 'http://', 'WHATSUP', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '56331bba2a0ef25e5d75b9ac2b1d2a20', '20040219163427', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('111', 'BHRC', '048ce6ba4a3daf2b', 'Macon', 'Rock', 'I\'m,Disease free,8inches,well-endowed,straight,clean,and love HOT Swinging indoors and outside.Wont longterm relationships.', '47', '8', 'Georgia', 'United_States.gif', 'jroquemore2003@Yahoo.com', 'http://', 'All night lovin', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2a8b6230ad6994a16300d2db6991e88a', '20040220121816', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('112', 'seliru', '3e5d6a2932e825ba', 'seli', 'mike', '32y/o blackmale male from portland oregon looking for fun couples, single, marreid and groups of women for play and fun times', '18', '8', 'Oregon', 'United_States.gif', 'thedon503@yahoo.com', 'http://', 'just do it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4b3882c8f1668d8f9c7714621bb8250a', '20040220142709', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('113', 'djtwinz2000', '0186c1985d92db79', 'daughter', 'Shane Woodrum', '26 Male just looking for people to hang with when I get back to the states.', '26', '8', 'Texas', 'United_States.gif', 'djtwinz2000@aol.com', 'http://', 'He He He.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3a1eedd1ee234914a9b053cf3c80035d', '20040222045114', '20040222045308', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('114', 'idotax', '277a4a3e184c8d82', 'jeff gordon', 'Rich', 'Horny far west Chicago burb male lkg for fun ', '34', '8', 'Illinois', 'United_States.gif', 'taxgeek_2000@yahoo.com', 'http://', 'Greed is good!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a3f561dd995cd57813fe65fe8d77744d', '20040222102841', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('115', 'Rutland', '670f16054baf72c0', '010679', 'Rutland', 'Male 25.  Latin', '18', '8', 'California', 'United_States.gif', 'OreocookieNY@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1629d36882f3179d9ac2d0a1579525e8', '20040222204506', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('116', 'peterpiper383', '59790bcd02d58152', 'what do i have??', 'petee', 'it works!!', '18', '8', 'Illinois', 'United_States.gif', 'peterpiper383@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'cdaa0eef559b15593e1d6c45aebb4f1b', '20040223181324', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('117', 'Kevin14u', '25454e743e6e317d', 'date', 'Kevin', '5\'9 150lbs ave build blue eyes brown hair', '18', '8', 'Montana', 'United_States.gif', 'kevin.zimmermann@us.army.mil', 'http://', 'bite me', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b1b49441b64463437c08eddc197cb195', '20040224053312', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('118', 'The Ronster', '2f03bcf12d19fba0', 'chutney', 'The Ronster', 'i\'ll do anything to anything, porn slaps are my speciality !!', '18', '8', '', 'United_States.gif', 'g0ldstarr@hotmail.com', 'http://', 'yeah baby... you like that ? you Like that ?', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e4e89dfc229727217f760982412a9f3b', '20040224072613', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('119', 'cplindanvilleil', '2c35d0091c1e564d', 'password', 'joe&sarah', 'married couple ', '18', '7', 'Illinois', 'United_States.gif', 'cpl_in_danville_il@yahoo.com', 'http://', '', 'there', '', '', 'approved', '54', '198', '3.6666', '0', 'yes', 'd87cd6265012bccf6386d497025d37d0', '20040224073058', '20050730110504', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('120', 'ssman0991', '5761b61836893e54', 'address', 'Don c', 'Live in Md looking to hook up with single women or couples', '18', '8', 'Maryland', 'United_States.gif', 'ssman0991@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0e976a8775804b59e49706e610d3953f', '20040224101129', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('121', 'cobalt3705', '77062b777b1fc856', 'samoaf', 'Larry', '', '46', '8', 'Indiana', 'United_States.gif', 'cobalt3705@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '553aa79fd033050d898c6a07a2f78baa', '20040224102855', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('122', 'justjoe', '3697e84365c300a2', 'you know it', 'Just Joe', '', '34', '8', 'Pennsylvania', 'United_States.gif', 'straponjoe@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '23e754ffebc53d78ccccc2d6c89f5f3b', '20040225102238', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('123', 'gagger727', '79f8c42f0b2db930', 'richard', 'fred', 'just looking', '28', '7', '', 'United_States.gif', 'gagger727@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '679cc37183ec5fb8dd8a191514dea128', '20040226044507', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('124', 'warlockmm', '69f65fcd5c62b96a', 'beer', 'mike', '', '23', '8', '', 'United_States.gif', 'warlockmm@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3cd3d43e9a9cffaa04ea9d0e0d406dd2', '20040226111500', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('125', 'hawker39', '2b5db72611d77ae0', 'army', 'kenny', 'just a good ole country boy lookin for some fun', '39', '8', 'Georgia', 'United_States.gif', 'keshaw530@cs.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f30d97eabc3b6325dc4200d658aa8c61', '20040226225114', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('126', 'benwolfe54', '5401b23369cf86ad', 'plain plane', 'Bennie', 'Wild couple into wildlife!', '18', '7', 'Indiana', 'United_States.gif', 'benwolfe54@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '73ec98631637cd0cdd7ab446573d8273', '20040227154901', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('127', 'carguy', '5eacf7f31af80ef9', 'trop', 'Rich', '', '18', '8', 'Illinois', 'United_States.gif', 'byzboy@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2cf3db0ee224549c7ac145fac48a934f', '20040227225211', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('128', 'two4funindana', '47fb0a4548f41f9d', 'my wife', 'rich&brenda', 'hi we are a indiana clp looking to meet some clp\'s close to us to play with wife is 42 and im 50 we love to play on cam so if you like what you see lit us know bbw\'s are wilcome wife and i are bouth on the bbp side ', '42', '7', 'Indiana', 'United_States.gif', 'two4funindana@yahoo.com', 'http://', 'if you wont it here it is', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f866c2a1ca143d1da0d4aae896a0a333', '20040228143247', '20050406101941', '1', '0', '2005-04-06 10:19:41', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('129', 'chicouple9', '3719642102417491', 'last name', 'Owen', 'we are a young curious couple', '24', '7', 'Illinois', 'United_States.gif', 'anse999@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'dd3f1b93f578f8d62c2e2c755b280d71', '20040229000154', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('130', 'Salspawn', '78ebaec53fee2660', 'numbers', 'Stevo', '', '38', '8', 'Nebraska', 'United_States.gif', 'sal_spawn@yahoo.com', 'http://', 'Just do me!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a59fbf5a6a2948b65422fe02ee43c66d', '20040229230148', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('131', 'cplinil', '2c35d0091c1e564d', 'kiss72', 'joe&sarah', 'couple looking for bifemales', '31', '7', 'Illinois', 'United_States.gif', 'j_a_c_1972@yahoo.com', 'http://', 'wanna play with us?', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '08d3f40008c68c5d02dc3f147773e236', '20040301081727', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('132', 'serb', '7f73196a1b316a22', 'se', 'bill you', 'ewfdv        3re2qee', '20', '8', 'Illinois', 'United_States.gif', 'a@aol.com', 'http://', 'hi', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4b910bcc801a029beca589187e4f5856', '20040303133926', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('133', 'chocoliteone', '11870b5a5c03eac8', 'block name', 'shaun', '28 5\'9 darkskinned sexy black male', '28', '8', 'California', 'United_States.gif', 'chocoliteone@yahoo.com', 'http://', 'have fun you only live once', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '58079d2c0a3dfcfe902004a959463815', '20040303174609', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('134', 'Flash', '0f57eec427a62c1d', 'biteme', 'MikenSue', 'Love fun and living life', '40', '7', 'Illinois', 'United_States.gif', 'a30afan@wideopenwest.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bf2c44e6fc09515648b91b1bb4ec3f5f', '20040305063124', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('135', 'BigJohnUK', '6412868c5da75210', 'zaphod', 'John', 'Fourties, fit and fun :)', '46', '8', '', 'United_Kingdom.gif', 'johnb0yuk@yahoo.co.uk', 'http://', 'Praise the lord and pass the ammunition', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd2886f23fcb42af1fbdaf9f2fd24050d', '20040307075244', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('136', 'woppa', '5f60b46d5e1375af', 'blow', 'me hard', 'i am a single male 5/8 brown hair and eyes very open and outgoing have had other encounters with couples and just want to enjoy life for what its worth.', '18', '8', '', 'United_States.gif', 'rickydicky@bigpond.com', 'http://', 'cum and get it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4d0760b32c94256eb5125b31bf7ac4cf', '20040312095844', '20050322084953', '1', '0', '2005-03-22 08:49:53', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('137', 'j_n_l', '5d2e19393cc5ef67', 'whats the name', 'Jeni', '', '18', '7', 'Missouri', 'United_States.gif', 'college_cheer_2003@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '84def4a7cf0d98bca81548d68a02ee84', '20040316000806', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('138', 'shycupl', '17ec949d2cb9a33b', 'red devil', 'a and m', '', '27', '7', 'Tennessee', 'United_States.gif', 'beaky_69@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ea67825bb676d493cbdecced4cd55b9f', '20040316020424', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('139', 'blueball', '505735516526f3e3', 'blue', 'brandon', '', '33', '8', 'Washington', 'United_States.gif', 'usmcpitbull@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c6b98aa7a36199e0ec186186397eb6b2', '20040316045235', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('140', 'CaliCouple', '3dec48a3458266b0', 'son', 'James Bond', '', '27', '7', 'California', 'United_States.gif', 'occalione@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '82e277d5d029d5f18f0e0b1b3c395e08', '20040318024307', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('141', 'heartwild03', '26285bc35f08dcd7', 'dogs name', 'billy', 'happily married w/c attractive, sexy, easy going, clean, neat,disease free, very discreet, seeking other couples, singles( male and female) bi and stright to become friends and playmates with and enjoy sexual pleasures and exploration with one another.', '48', '7', 'West Virginia', 'United_States.gif', 'heartwild03@msn.com', 'http://', 'do unto others as you would have them do unto you.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '37588b1ce1f0f4a82beb9bcb948f9bd0', '20040318233116', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('142', 'Playon', '45284d640b6eed81', 'mine', 'Lees', 'Hi my beautiful wife and I are new to this scene but we both have fantasies that we want to come true, such as my wife wants to watch another woman give me head and then she would like to join in a threesome. We also will do some playing with the right couple .', '42', '7', 'Connecticut', 'United_States.gif', 'leesdoinit@myeastern.com', 'http://', 'Its your world squirrel!  Im just trying to get a nut!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '595e9c87a7a259b3b3345a6a2de6f621', '20040320111314', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('143', 'Eric_shun', '1a75987755653541', 'J horse', 'Donald', '', '47', '8', 'North Carolina', 'United_States.gif', 'helloitsme1usa@hotmail.com', 'http://', 'sex is only dirty if its done right', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5a067b081278f845922e30c264ecd1d3', '20040321162411', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('144', 'pureplazure', '0dbd9c3d28476784', '', 'Gary', '', '38', '8', 'Missouri', 'United_States.gif', 'pureplazure@aol.com', 'http://', 'Can get enuogh', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '200647294532460dde87c8ecc5e8c789', '20040322063626', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('145', 'Zman1983', '2ffffd137f6fbc2f', 'AFF', 'Deric', 'I\'m a 20 year old sophmore at BGSU.  I like to have a good time.  If you want to party, get ahold of me.  ', '18', '8', 'Ohio', 'United_States.gif', 'chevydude_02@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'df612c3776deea108dae3e1948aa5414', '20040322113011', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('146', 'TBaby20', '75a0de1733cf57fd', 'Sirens', 'TBaby', 'Sexy young couple seeking another', '18', '7', 'Illinois', 'United_States.gif', 'Leotrbmtwt@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b2402bb563877f9f0170b1f5636804bd', '20040323032050', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('147', 'garybell', '0c0d7c6b61e52440', 'you know', 'Gary Bell', 'Sexy guy looking for sexy people to have fun with.', '31', '8', '', 'United_Kingdom.gif', 'garybell1971@yahoo.com', 'http://', 'Its all fun', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c461107a9113855c28c92e9e2e8f9070', '20040323032808', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('148', 'monique3s', '7377479c233fb348', 'wife', 'Stan and Monique', 'Normal couple looking for normal couples for some fun nights', '18', '7', 'Illinois', 'United_States.gif', 'stan682003@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e8c2847fa0d94b7ac732939f40985b8b', '20040323071731', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('149', 'fastdave57', '5648ddb7409280eb', 'pets name', 'bear', 'Hot Illinois couple for serious pleasure', '43', '7', 'Illinois', 'United_States.gif', 'fastdave57@yahoo.com', 'http://', 'check it out', 'there', '', '', 'approved', '48', '177', '3.6875', '0', 'yes', 'ac39a6bb332c6b8dee474717fca497ab', '20040324213758', '20050727201809', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('150', 'funcouple43sum', '5dc2811e5a094234', 'name', 'hawkins', 'later', '50', '7', 'Missouri', 'United_States.gif', 'funcouple43sum@yahoo.com', 'http://', 'more', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '58d31f4e3d259104f56f740cbd7cdbe2', '20040325235119', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('151', 'koosbaby', '0aa4c19840b04a75', 'daughter', 'beth', '', '29', '7', 'Iowa', 'United_States.gif', 'bethreed2000@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '42e8038ec3d871a58b0d9a387380d870', '20040326122845', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('152', 'Littleredfeather', '3e95f94e02ae7113', 'birds name', 'dickhead', 'bWe are willing to explore everything that will include pleasure and fulfillment. However, there are expectations and high standards (One in particular: CLEAN, SHAVED OR NEATLY TRIMED is a must - please do not be offended; we know what we would like). Must contain complete respect for intimacy and with the each other\'s relationships and bodys. Otherwords, in tune and hold a strong connection by loving the body and mind ... \r\n\r\nWe are unwed but have been together for over 9 1/2 years and we are new to this. Young, sensual and attractive; disease free, couple seeking exploration, pleasure, seduction and fulfillment sexually. She has very succulent and lucious lips (known trade mark); is wild and extremely sensual but shy ... he is by all means very wild and not shy but holds strong class. \r\n', '31', '7', 'Wisconsin', 'United_States.gif', 'princess_redfeather@yahoo.com', 'http://', 'Yummy', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '203634b4075967fc1de64e99e711875d', '20040327172422', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('153', 'manoncam31', '08557b625491a3dd', 'goldie', 'timmy', '31/male that loves having fun with ladies or couples', '31', '8', 'Missouri', 'United_States.gif', 'tinsoldier28m@yahoo.com', 'http://', 'my god that feels good', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b83ef13a98e1f88f4520b2d7a7ccd92d', '20040330012121', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('154', 'Tiger67', '72bf86fd14b15f29', 'co name', 'Tiger', '', '18', '7', 'Illinois', 'United_States.gif', 'Tiger67@mail2go.com', 'http://', 'Why Not', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3cfc574833d890cff76c8f36305cae84', '20040402124928', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('155', 'tiffanie&kevin', '559596dc7ad610cf', 'vegas', 'tiffanie and kevin', 'he is 6\'1 brown hair blond highlights, browneyes, sporty build.. sexy and lots of fun!she is 5\'4 blond hair hazle eyes,medium build, sexy and lots of fun!', '18', '7', 'Missouri', 'United_States.gif', 'xoxotrutruxoxo@aol.com', 'http://', 'there is a sucker born every minute, but swallowers are harder to find!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0e8263251f2d58a2d326d961654d3585', '20040402222600', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('156', 'roygbiv', '1f0e78bb469bab08', 'jack', 'david', 'looking', '56', '7', 'Texas', 'United_States.gif', 'roygbiv@ev1.net', 'http://', 'its now or never', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '35942c480dbc473f528ee32836ff20df', '20040403172907', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('157', 'Foxy69couple', '7d2bcdde6fdfcba8', 'john likes men', 'Mike', '', '32', '7', '', 'United_States.gif', 'mj_schult@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e6fac9d2792f4a6a3f262a27bdacb71f', '20040405142838', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('158', 'wths69', '23cedbc71ca1d47d', 'sex', 'KATHY BOB', 'WE WANT SEX', '18', '7', 'Missouri', 'United_States.gif', 'wths69@yahoo.COM', 'http://', 'DO IT', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '36765c3f2e2afd676ee585dfcf034148', '20040409123136', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('159', 'Lukie50', '0a2f9c7574059b65', 'Stang', 'Jason', '@8 yr old swm blonde blue eyes 5\'10\" 190 lbs athletic build. Looking for older women that enjoy younger men!', '28', '8', 'Illinois', 'United_States.gif', 'svtman@msn.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'aa7ed52973032ad6d5156dd14215b729', '20040410165546', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('160', 'hardtail1970', '5f88ef7b231f5ef7', '1340 evo', 'shawn siemon', '', '34', '8', 'Maryland', 'United_States.gif', 'www.squidlyink2001@yahoo.com', 'http://', 'have a sit', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'df3d693a911199fef7e883aad4feb1d4', '20040412084956', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('161', 'polarbear', '6036ac6925245ec8', 'daughter', 'polarbear', 'love sex', '39', '8', '', 'Canada.gif', 'minnning@yahoo.com', 'http://', 'none', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '79861b569a1636de5894875f98cd07d5', '20040415143805', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('162', 'greenmnms', '3f92ca3179b98c4e', 'hot', 'MandM', '', '18', '7', 'Missouri', 'United_States.gif', 'marmel03@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2ec5340d6ac3175f38be338a6a365357', '20040415230329', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('163', 'landanmike', '73d044eb596566b8', 'son', 'michael', 'dark chocolate couple looking for fun, d/d free , looking for the right couple to  have fun with    ', '24', '7', 'Illinois', 'United_States.gif', 'bigmhopkins@aol.com', 'http://', 'no regrets', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '006b545c6e0d0818f7ef0c5baed5d6c1', '20040416034345', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('164', 'sweetpickle43', '07687c9f297e046a', 'cat', 'ronsue', '', '46', '7', 'Illinois', 'United_States.gif', 'sweetpickle43@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4596b6e5cc32ec99de4bfb2e428c05e3', '20040417023515', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('165', 'rosebud1966', '42f848111daa404a', 'same', 'Colleen A Askin', '', '18', '7', 'Montana', 'United_States.gif', 'c_askin@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7a6227e0608dd13e134b1af143289b9d', '20040418113203', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('166', 'libra', '221f244861e476d0', 'dog', 'Nick', 'Single White male 6\' 175lbs. brown hair, blue eyes, Shaven. Looking for couples and females for hot erotic fun. Very open minded and very versatile. ', '18', '8', 'Tennessee', 'United_States.gif', 'nmeurer@earthlink.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '433e080b30109f15bfa424249e29c733', '20040418221937', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('167', 'wnycpl4fun', '64eee91a74fa6a5b', 'love', 'Steve', '', '29', '7', 'New York', 'United_States.gif', 'speedfreek44_11@hotrmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '23dcc9fae67b621e1e6246bd976acc98', '20040419204746', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('168', 'loco', '34d004b7011b374a', 'girlfriend', 'carlos', ' Well built', '31', '8', 'Maryland', 'United_States.gif', 'zkhan328i@aol.com', 'http://', 'life goes on', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4c193eb3ec2ce5f02b29eba38621bea1', '20040420151403', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('169', 'rmclarke', '288df73d54503839', 'daine15', 'adam', 'I am a 6\' 3\" and 230 lbs. I am just looking to have a good time.', '26', '8', 'Illinois', 'United_States.gif', 'rmclarke2000@yahoo.com', 'http://', 'no thank you', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'def95760db3f9df24ada1391efd32c3d', '20040420160849', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('170', 'lsmo48', '3a6dbd0343caf43f', 'baker', 'john palowski', 'hung male good looks great shape', '45', '8', 'Missouri', 'United_States.gif', 'lsmo48@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7bae0f129796d3f9c053dfad7b1b7d9f', '20040423170943', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('171', 'latlov69', '2c363a4719f07070', 'hot', 'Joel', 'I\'m a 25yrs old, spanic man. 5\'8 160 lbs, bl. hr, br. ey. Love to dance, and go to the movies.  very open minded... ', '25', '8', 'Florida', 'United_States.gif', 'elizer19792003@yahoo.com', 'http://', 'Hi! Sweetie.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '459e16b5109f488fd35d27a8eb85de23', '20040426144005', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('172', 'hottounge', '19fd12d66431164b', 'cat', 'Butch', 'white male 47 6\'1 248 lbs have talented tounge and can go down for hours ', '47', '8', 'Michigan', 'United_States.gif', 'walleyeinboat@yahoo.com', 'http://', 'lick em till they cum', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'fbbe59eee3734c0aad9be5f72432ed72', '20040430122349', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('173', 'johneangel', '6e84372a5e35dd19', 'name', 'john', '', '48', '8', 'Florida', 'United_States.gif', 'johneangel26144@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '503b4ac3e25e8f9eaaca1e64d8d61889', '20040501141825', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('174', 'drunkmonkey99', '756d2ea1558157f3', 'dave shockley', 'Robert', 'horny as hell', '25', '8', 'Missouri', 'United_States.gif', 'rpufahl01@sprintpcs.com', 'http://', 'It never got weird enough for me', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '13df5cc3ea9a56fe743eeb561b1dd908', '20040501214433', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('175', 'LetsDo', '7c994c152b903640', 'Party', 'HeyYou', 'Lqqking for selective ladies and will consider cpls for dating/fantasy fulfillment', '36', '8', 'Ohio', 'United_States.gif', 'HeyYou216@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2013dc9a27e1914f962122da144aeb0d', '20040503194146', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('176', 'jeffntece', '6fee70c1561004ad', 'no', 'JEFF S. DAVIS', '', '30', '7', 'Arizona', 'United_States.gif', 'JEFFNTECE1@COMCAST.NET', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'fdce25e4b3cb654def581b80e99200f1', '20040505001204', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('177', 'hancock7799', '09c9fbe91f6e941f', 'my fav sport', 'Jaime and Erin', 'young college couple.', '20', '7', 'Massachusetts', 'United_States.gif', 'hancockjaime@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '34ae6c3abc32844e919c3d04af26593f', '20040505001641', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('178', 'salparadise', '415e07e33d618b53', 'where?', 'salparadise', '', '18', '8', 'Massachusetts', 'United_States.gif', 'cody_wilson@student.uml.edu', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6b3f861445668da7b5fe7b98d2c7cfef', '20040505001731', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('179', 'MikeenlLori', '251d20392841ea44', 'honey', 'Lori', 'life partners,He is 49 6\"3\' 220lbs shaved head, brown eyes.  She is 42 5\'4 140lbs red hair, green eyes.', '40', '7', 'California', 'United_States.gif', 'MikeenLori@aol.com', 'http://', '', 'there', '', '', 'approved', '47', '193', '4.1063', '0', 'yes', '338dde4879c4af669b9f0622c4a0da6b', '20040505001855', '20050725143308', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('180', 'danonkate', '024f1f2c0aa028d5', 'lake', 'kate', 'looking for bi couples and bi males and females', '40', '7', 'Oklahoma', 'United_States.gif', 'danonkate@yahoo.com', 'http://', 'magic happens', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '30f6f298cc43531edfaac9b3b894aea5', '20040505023445', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('181', 'marcfit4u', '37fd5fb726336bf0', 'israel', 'Marc', 'I am a personal trainer,single and looking to have some fun', '38', '8', 'California', 'United_States.gif', 'Marcell@toolguy.com', 'http://', 'I\"ll be back\"', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c3157f525f1e92af5873f8c965fb06f5', '20040505075449', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('182', 'ALnSu', '32a8cbf362de4db4', 'what are we looking for?', 'AlnSu', 'we are an attractive couple new to swinging  and are looking for other couples and select singles', '42', '7', 'Rhode Island', 'United_States.gif', 'goldspoon23@cox.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'df8fc7d6df8d6bc0dfd0b3dcecf970be', '20040505085642', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('183', 'txduck', '556ba1fd011134d7', 'wife name', 'jeff', 'horny and looking for an older woman for no strings fun', '28', '8', 'Texas', 'United_States.gif', 'txduck@bikermail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a1ba4ef32eb3ee1a3e59decbaecfc0b6', '20040506164535', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('184', 'j_irish_2002', '6bdd531670e18497', 'school?', 'j_irish_2002', 'I travel alot and i like to meet in person. im very nice and im sure we would have fun.  ', '24', '8', 'Illinois', 'United_States.gif', 'j_irish_2002@yahoo.com', 'http://', 'nice to meet u', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e28da8a909e4c01337ac252092954eed', '20040508085618', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('185', 'Aldr', '59ebece95808ba18', 'mother', 'Sandy', 'Horny white male', '50', '8', 'Virginia', 'United_States.gif', 'AMVDS@mindspring.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1a93aafc99b82d27326033ee745f2579', '20040509123717', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('186', 'RandAofXSC', '172855f8318130d8', 'pup', 'RandAofXSC', 'We are a open-minded couple looking for other couples to party with. ', '18', '7', 'Missouri', 'United_States.gif', 'RandAofXSC@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'fa303af8d287647619f95ab4071a49c0', '20040509235120', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('187', 'phoof', '11073e2d318ef7a4', 'geo', 'phoof26', '', '18', '8', 'South Carolina', 'United_States.gif', 'phoof26@yahoo.com', 'http://', 'can you breathe thru your ears?? think about it!!!!!!!!11', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '903c8af1dae78736a7e071c60dcbeecd', '20040510152908', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('188', 'norjerm', '6bb096f7366cb26b', '696969', 'norjerm', '', '46', '7', 'Missouri', 'United_States.gif', 'norjerm@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2578235c4e0e1128e83d7f66a27e6610', '20040513194113', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('189', 'juda', '2617fd8940f6325f', 'name he', 'jake', '', '25', '8', 'Illinois', 'United_States.gif', 'judakryst@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '175cb7e79b1c9e13a13b013d1be2b424', '20040517192933', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('190', 'mocplforfun4138', '62e82a42430983e5', 'doc', 'julie', 'we are a cpl that wants to play and have fun with other cpls,females.', '41', '7', 'Missouri', 'United_States.gif', 'mocplforfun4138@yahoo.com', 'http://', 'try it at least once', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '144de5da3a248b2fb9020f4ae4e70211', '20040520114144', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('191', 'ohu69too', '6ff33db5023ec9d9', 'me', 'D and D', '', '37', '7', 'Illinois', 'United_States.gif', 'ohu69too@aol.com', 'http://', 'Pot your lips together and BLOW', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0d49cc20b169027c81fee6ecf12878a1', '20040521223155', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('192', 'ord80', '5aa9ff33080fd613', 'dogs name', 'benny', 'cute guy', '23', '8', 'Illinois', 'United_States.gif', 'steviej80@sbcglobal.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ae999a5bdeac5aa324b1c22bd3f48399', '20040522165910', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('193', 'gigarider1', '08b302c0501f79af', 'nickname', 'John', '', '23', '8', 'Mississippi', 'United_States.gif', 'gigarider@yahoo.com', 'http://', 'Gig em up', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'eb4fdc25728b87c1a2618c4395f23c34', '20040522222418', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('194', 'anaheimcpl', '18e6aa6b3a5ca026', 'no 24 race ar driver name', 'anaheimcpl', 'We would like  to meet other ouples with like interest', '40', '7', 'California', 'United_States.gif', 'anaheimracefans@yahoo.com', 'http://', 'beer bbq and nascar', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '147238edb955d9b8907b8c0a6394f1d4', '20040525231037', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('195', 'Custud', '1944695c4bbba4de', 'Name', 'Jimmy', 'Tall athletic male in NE', '22', '8', 'Nebraska', 'United_States.gif', 'JayMoFor3@aol.com', 'http://', '\"Have fun\"', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '57e4ba860b4f3523ca1ac1a1de9b7462', '20040527005515', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('196', 'hotsuied2002', '35ecdf305174ab20', 'meme', 'suesue', 'iamlookingforanicelandytohavesex', '42', '6', 'South Carolina', 'United_States.gif', 'suie2003@hotmail.com', 'http://', 'none', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1b061a4c51cbb89bea8636a86caa6abf', '20040530060023', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('197', 'ched&maz', '4046815f27d541ad', 'food', 'robert', '', '46', '7', '', 'United_Kingdom.gif', 'ched1957@ntlworld.com', 'http://', 'lets party', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '619c80ecffe896421b49477c581b3d79', '20040601164731', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('198', 'bigcocked1269u', '46ee224e090bd05b', 'jewel', 'jewel', 'male', '27', '8', 'Illinois', 'United_States.gif', 'hawk@aol.com', 'http://', 'well hung looking for sex', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e2c7b70388f27bc4fbe556fb6eb17fbf', '20040604220537', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('199', 'xtrafun4us', '329c681031c7a73d', 'date', 'Xtrafun4us', '', '35', '7', 'Illinois', 'United_States.gif', 'xtrafun4us@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '935314461130fa389a1704b21bb16d33', '20040606001425', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('200', 'snortin', '2698006156c779aa', 'ron', 'ronney', '', '41', '7', 'Oklahoma', 'United_States.gif', 'snortin@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b077e163ff415d28b7d1eae222b1ef85', '20040609182627', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('201', 'jonatkins24', '13ae6eef557eb217', 'to?', 'jonatkins24', '', '18', '8', 'Missouri', 'United_States.gif', 'jonatkins24@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '900d914a77d7b8eb6d1d32205ac3d6c1', '20040613014936', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('202', 'FLYSS11', '05b72bf42a03ef7a', '', 'MIKE', '', '52', '8', 'New York', 'United_States.gif', 'FLYSS11@AOL.COM', 'http://', 'HAGGIN IN THERE', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ba844ffdee6a31159ca0cd2a279f20a6', '20040613094238', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('203', 'milferman', '7350fbaa6ed9fe9b', 'yoyi', 'Milfer', '', '32', '8', 'Illinois', 'United_States.gif', 'milfer72@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd43c7ecd0dab346dcfea3aee596a4eb0', '20040613175400', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('204', 'tab7-66', '5ecd16655881ae16', 'fave pet', 'sandy', 'My Name Is Tom and No I Am Not Kid Rock In Disguise. However I Am A Very Easy Going, Serious When Need Be, Sleep Under The Stars, Cuddle Up To A Candlelight Book Reading Night, Jump In The Truck (thought I was going to say something else?) And Go Wherever, Or Plan A Weekend Away Type Of A Redneck Italian, German, Polack. Some Of My Favorite Activities; NASCAR, Darts, Pool, Bowling, Country Dancing, Horsebackriding, Camping, Volleyball.', '38', '8', 'Illinois', 'United_States.gif', 'tab7-66@excite.com', 'http://', 'I am trash, will you take me out?', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '01709707c4555b6c6ba742ecbd63b39e', '20040614160016', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('205', 'forus2004', '3a161e6e469756f2', 'daughters name', 'sarah', 'We are curius! Would like to play.', '18', '7', 'Missouri', 'United_States.gif', 'mospy@earthlink.net', 'http://', 'none', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6de58bcb92010305874fc5f61e38cd5f', '20040618195218', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('206', 'just', '2b7a888f57b895c4', 'DOG1', 'RODG', '', '31', '8', 'Illinois', 'United_States.gif', 'gonetohi@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8134b84030cca5285ed0e0b31ba06f10', '20040624233044', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('207', 'bootie', '69c9b705067dc7ba', 'bank', 'Bootie', 'outgoing looking to try something different', '48', '7', 'Illinois', 'United_States.gif', 'ron0199@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '36232a37b94ef8c7c03978ad62de9827', '20040626063645', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('208', 'YUMYUMS1836', '3287615e41a05d05', 'WHATS MY DOGS NAME', 'DONTHAVEONE', '30 YR OLD BLACK EDUCATED SEXY FEMALE \r\nBIG BREASTS SMALL WAIST THICK HIPS\r\nLOVES TO HAVE FUN AND BE SOCIAL', '30', '6', 'Ohio', 'United_States.gif', 'DMEDLIN99@AOL.COM', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9038d47dcb263b2930399c88afcd4db8', '20040627120026', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('209', 'redog43', '69e550420030440a', 'duke', 'ralph', '', '43', '8', 'Illinois', 'United_States.gif', 'isitfrog@aol.com', 'http://', 'love woman all sizes', 'there', '', '', 'approved', '40', '168', '4.2000', '0', 'yes', '0193a0cb21bea8d4a30a7b9ec82dbbe9', '20040628123249', '20050728100548', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('210', 'letsrocknrollnow', '010c10325d8197d6', 'have a nice day cafe', 'sonam', 'we r a good looking,young, professional cpl who wants to live every second of the day.', '18', '8', 'Wisconsin', 'United_States.gif', 'ra4u69@yahoo.com', 'http://', 'lets rock n roll 24/7', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '445b6863eea9b7a0ca5c0ca396ccb85a', '20040629150618', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('211', 'wewannaplay', '6d35b81e18524267', 'numbers', 'Steve & Mary', 'Married couple looking for other couples and single females to play.', '39', '7', 'Illinois', 'United_States.gif', 'maryandsteve_00@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd0af48a529e8f8cbb5a3f834b5cd8267', '20040629173258', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('212', 'mike35paul23', '68f7e23b181c2ddc', 'work', 'paul', '', '23', '7', 'Maryland', 'United_States.gif', 'diggermd23@yahoo.com', 'http://', 'we r a couple', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3d86b97ad30ff6b3fb511d0d0d366e18', '20040630031559', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('213', 'rookie23', '0f01fef90dd5c934', 'cat', 'jasper', '', '23', '7', '', 'United_States.gif', 'rsvoir311@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '210c7e72ee16c42058d52c05a6b7c297', '20040630113129', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('214', 'iluv69fun', '39b40c5d52ad67c4', 'favorite bb player', 'mike', 'Fun loving guy looking for women or couples for great sex and fun.', '18', '8', 'Missouri', 'United_States.gif', 'iluv69fun@yahoo.com', 'http://', 'git er done', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bdb6ce5abee9a373ed787e008c07a3df', '20040630150746', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('215', 'ccdunes', '2584249a38d7da25', 'fantasy', 'Tony', 'Couple in Corpus Christi', '38', '7', 'Texas', 'United_States.gif', 'cc_dunes@yahoo.com', 'http://', 'What makes us good is not what we exclude, but what we embrace.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c0f7d9de1ca9d21c3c9545e892ada3ea', '20040702181236', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('216', 'craig75', '31f1ab0755fbc8d1', 'what state', 'Craig', 'i\'m 5\'8 med build she is a lil on the heavy side. she is bi and i am looking for the frist time.  I have blue eyes and brown hair she shas brown eyes and black hair.', '29', '7', 'Wisconsin', 'United_States.gif', 'devildog1038@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6714ddd1379a8466a2f50e33350cd88d', '20040706073734', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('217', 'muhaq', '63a8ab9923127a7f', 'delta nick', 'Mood', 'Looking for no strings attached a good time. That could be whatever comes to your mind ;).', '21', '8', 'Iowa', 'United_States.gif', 'muhaq@coe.edu', 'http://', 'Im here for you', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4a084fe3b933120751785c555ed02d6d', '20040707100543', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('218', 'ironhorse57', '65e1783f4931562e', 'name', 'danny', '', '18', '8', 'Illinois', 'United_States.gif', 'phillipsd@gallatinriver.net', 'http://', 'just me', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0197286948efae6fc5988d1ad373e9f2', '20040711090439', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('219', 'carlmac', '4a07613f6d244515', 'jess b day', 'Erik', '', '23', '8', 'Massachusetts', 'United_States.gif', 'snatchy81@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '84f8d69958d4ec1d8dccb5d3cf54947b', '20040712090456', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('220', 'LONGJOHN63', '548177b55659ba83', 'me', 'walter', 'used to be in a swing relationship but she went strgiht and it was not for me so now im looking to jion others in fun', '32', '8', 'Illinois', 'United_States.gif', 'tiggger63@yahoo.com', 'http://', 'what goes up must cum down', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ed595baaa78ab4275650ffe082cb5543', '20040712093452', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('221', 'havingfun936', '0b42c9f1148175e8', 'married', 'Michael', '', '39', '7', 'Illinois', 'United_States.gif', 'havingfun936@hotmail.com', 'http://', 'whatever', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '36de0eb8ec00b3254a8232a0a615fe6c', '20040712221628', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('222', 'lhkh7', '12ed2ccd32eb2312', 'cat?', 'marty', '', '20', '7', 'Illinois', 'United_States.gif', 'lhkh7@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '11624cedb01ec742523f4709c54b584c', '20040713234815', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('223', 'magnus1532', '7125fd1019b8db57', 'move', 'Magnus', 'Lokking for fun time, willing to try everything once ', '18', '8', 'Louisiana', 'United_States.gif', 'magnus1532@yahoo.com', 'http://', 'the unexamine life is not worth living.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5e35c5efe49013d3eb4ddd17151c4280', '20040714115144', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('224', 'hotwetwild', '7b3477b42dc7be7d', 'green bay', 'wetN wild for you', ' we are boh very athletic and 25. Have a secure marriage adn are looking to add some more fun to our sex life . She is 5\'4 tan , 130lbs. He is light skin ,6\'2 and 225lbs. we work out everyday  to stay in shape .', '25', '7', 'Wisconsin', 'United_States.gif', 'tjphillips_0311@msn.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3e082d5ac6234135e783a00d5d91483a', '20040714233117', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('225', 'sodeaf', '6358a2453cfca3d5', 'old work', 'luis', 'curious', '22', '8', 'Illinois', 'United_States.gif', 'sodeaf@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3782238dd00025bb3542c1de16f2f953', '20040721002319', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('226', 'Fatcunt56', '00b0f9406cba3bac', 'My wife has fat toes', 'lorie', 'Beauiful Black light-skinned housewife, 48yrs. old, 5\'4\", 175lbs(full-figured) measurements: 42DD-35-48, and very clean.', '48', '6', 'Illinois', 'United_States.gif', 'Gene1955e@netscape.net', 'http://', 'I love to men', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '01f495c55470634065876220b51305f1', '20040723015726', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('227', 'tikki', '6cc900842a9d9327', 'youngin', 'baby', 'mwm looking for FREINDS', '32', '8', 'Tennessee', 'United_States.gif', 'dh15p@hotmail.com', 'http://', 'dont start summin u cant finish', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ed36526ea84a75f0431ff755317430d6', '20040723181312', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('228', 'MIKAN', '72ffe84b2a793b38', 'MIKE', 'MIKE', '', '28', '7', 'Missouri', 'United_States.gif', 'MIKAN@EARTHLINK.NET', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '24b2c62c73880832cc28d4647235f4d5', '20040724154426', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('229', 'sweetnhot6674', '45f1413479aa42d4', 'who we are', 'Chad', '', '30', '7', 'Missouri', 'United_States.gif', 'sweetnhot6674@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'afe030d93d1cb63be857a2dd86a1c7d9', '20040724191344', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('230', 'Kai74', '10cec80b2fdd1836', 'dark', 'Kai_daniles', 'Male', '29', '8', 'Minnesota', 'United_States.gif', 'kaidaniels@hotmail.com', 'http://', 'Shut Up!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c0e583b0af2faaa0f8ac81b03b432e39', '20040725215917', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('231', 'cajunman', '708b2f9a642ac1b0', 'hometown', 'dewayne', '', '32', '8', 'Illinois', 'United_States.gif', 'dmerritt_@hotmail.cocm', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0d225d9688934c70349cbf51c7a99f5d', '20040726171738', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('232', 'otter81', '4d54440b3a5148e8', 'us', 'otter', 'big and red', '23', '8', 'Illinois', 'United_States.gif', 'otter1381@yahoo.com', 'http://', 'Try not do or do not there is no try', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '64d9293f6c0ff28a303932f23fb88f77', '20040728050155', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('233', 'snocat600', '1005aabb70c22382', 'top', 'snocat600', 'fit fireman', '30', '8', 'Illinois', 'United_States.gif', 'snocat600@aol.com', 'http://', 'ride it like you stole it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c21ec6b0d5d17ab0ef547e918a428b59', '20040729203232', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('234', 'precbs56', '5558ceb6365f98f4', 'booboo', 'precbs56', 'we are a couple that have been married for several years.  we have decided we will be with another male for wife in light touch and masturbation and anything else is entirely up to her.  she is very attractive and we are looking for an attractive nice male to join us asap', '18', '7', 'Iowa', 'United_States.gif', 'precbs56@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '13ec86513348f95b373ed733864ebe6b', '20040730154456', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('235', 'JETboy', '6198b3094c136367', 'dog', 'ricky', 'male looking for online fun', '39', '8', 'Wisconsin', 'United_States.gif', 'Jet-Sender@peoplepc.com', 'http://', '', 'there', '', '', 'approved', '43', '190', '4.4186', '0', 'yes', '96caba7ecdcd956e65cb5b2e3cce402e', '20040730212617', '20050712094858', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('236', 'skaffo', '251e587d021b7df1', 'eli', 'nana', '', '18', '8', 'Illinois', 'United_States.gif', 'lahembeajeen@yahoo.com', 'http://', 'na', 'there', '', '', 'approved', '38', '129', '3.3947', '0', 'yes', '8bc426ee80cea14606590d7bf50e111e', '20040731160821', '20050723001152', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('237', 'fonzi10', '4141ea6a5e02e076', 'print + er', 'Mike LaFountaine', '', '18', '8', 'Illinois', 'United_States.gif', 'utsexyguy10@aol.com', 'http://', 'Never, Never, Never, Give up', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c701531b6fa62ca20cbb90c5a23e8812', '20040801000046', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('238', 'luvDiving', '1331fcdf0f6181de', 'Dogs name', 'Brandy', 'SWM looking for partner  for long term relation in the N.W.  Chicago area.', '41', '8', 'Illinois', 'United_States.gif', 'scuba60056@interpas.net', 'http://', '', 'there', '', '', 'approved', '34', '128', '3.7647', '0', 'yes', '75ad16f962a7bcc354eca9dcaacfcba3', '20040803223352', '20050704074927', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('239', 'sexybbwforyou', '07b4f01643a9431b', 'i use it for everything', 'michelle', 'hi there we are new to this we are just looking for new friends and swingers as well so if you are looking for a down to eart fun in love couple then we are it...', '31', '7', 'Illinois', 'United_States.gif', 'sweetme_1972@yahoo.com', 'http://', 'life is to short fuck all the time', 'there', '', '', 'approved', '50', '150', '3.0000', '0', 'yes', 'b098fcec474eeb8370a1a38f36c278ba', '20040805124043', '20050723001035', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('240', 'Londonfem39', '19f8c5a76f6b3c71', 'backwards', 'Theresa', 'I just love being fucked by someone VWE.  Clean, happy and honest only need apply!!!!  Prefer someone over 6\' and well built.  Someone who likes tall women in lacy top hold up stocking, short skirts and high heels and not a stick insect (dress size 14/16) - could that be u?', '39', '6', '', 'United_Kingdom.gif', 'Londonn123@yahoo.com', 'http://', 'oooh baby', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c7d21a04b429851d2a54298b6ef155bd', '20040806020337', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('422', 'TechWolf', '1299d209233dd286', '', 'Paul', 'just looking for a good time drug free std free  no strings attached', '27', '8', 'Missouri', 'United_States.gif', 'p_gammill@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '30', '127', '4.2333', '0', 'yes', '17a69154d7202b91e5cd83ce24b3bd4c', '20050222201236', '20050717215154', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('423', 'britne', '61fa00324197af8b', 'doc otis', 'Barbie', '', '18', '6', 'Missouri', 'United_States.gif', 'golfa_87@hotmail.com', 'http://', 'only those who risk going too far can possibly know how far one can go', 'here', '', 'jpg', 'approved', '129', '819', '6.3488', '0', 'yes', 'bd2797d19985b21b01c99b41bc26d592', '20050222221200', '20050731024144', '1', '1', '2005-04-21 15:19:58', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('242', 'scruffy', '2f1f663a7ea83a1e', '', 'alan', '', '18', '8', 'Illinois', 'United_States.gif', 'chiflyboy@yahoo.com', 'http://', '', 'there', '', '', 'approved', '44', '164', '3.7272', '0', 'yes', 'ce9c6a27ead819b82717b54d0599f4a5', '20040809165630', '20050621033821', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('243', 'discglfr', '03546830561944a3', 'mkv?', 'robert', '', '21', '8', '', 'United_States.gif', 'martinguitarguy5@msn.com', 'http://', '', 'there', '', '', 'approved', '33', '158', '4.7878', '0', 'yes', '31f63c932b8c88477329d8f155627271', '20040809232133', '20050718145037', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('244', 'BOMS', '09b474ba0e480945', '', 'BOMS', '', '18', '8', 'Alabama', 'United_States.gif', 'SIR_BOM_SPECIAL@YAHOO.COM', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0c4f9129015d8b7f940b081f93b91595', '20040812110155', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('245', 'tieuup30736', '06336baa19b3fc2c', 'buddy', 'Road Warrior', '', '52', '8', 'Georgia', 'United_States.gif', 'tieuup30736@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9995fee0e38c4edbd0c538b3f5104743', '20040814130913', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('246', 'rico_m1', '31c1e9343e342471', '102030', 'rico', 'nice gentlecare love life go out spent time with someone whocare friendly enjoy life be able to do it happy al the time and i love the candy i like nice and easy no hard time understant the needs lisent to the people  be on time all the time try to be the #1 ', '45', '8', 'Illinois', 'United_States.gif', 'rico_m1@msn.com', 'http://', 'nice', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5a98c82baa0c58c36d1e6c4d0c9897fa', '20040814171849', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('247', 'jayleech', '552e2d2f04a43f5f', 'birth', 'john', 'i stand 6ft, 185pds, i am a medium brown color, hair cut low mustach and gotee. D/D free and very oral. ', '29', '8', 'Missouri', 'United_States.gif', 'jayleech@charter.net', 'http://', 'you should not fuck what you can not eat.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '03acda3839e7ad3b431db9ff582be8a0', '20040816083130', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('248', 'JTandCutie', '3a0c79a028f47e94', 'favorite movie', 'Raiders', '', '33', '7', 'Indiana', 'United_States.gif', 'tic1220@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '461f61a01d8cc3acf140179aaf5f692a', '20040816234817', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('249', 'rooster44doo', '57847fa1044ed40c', 'cockadoo1', 'guy gage', 'she turned forty and cut loose we do mild wild hot or not!we are mid-age spread but in good shape she has beautiful pendulus boobs and loves them to be sucked on by both sexes !!!', '18', '7', 'Texas', 'United_States.gif', 'dotugyug@hotmail.com', 'http://', 'slurp me later', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '92441b1c1d6fe83f3a2e3ffb3a72f09f', '20040817190734', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('250', 'cupforfun', '7fa5d0461ab9652b', 'football', 'cupforfun', 'very sexy', '22', '7', 'Illinois', 'United_States.gif', 'cupforfun3@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e66ccb3e2b6c9cf1e62df5a3846764e4', '20040819154703', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('251', 'yelton14', '534a2afd0c489373', 'grandson', 'yelton1', 'we are a clean couple looking for a good time. we are d/d free. she is 44 5ft3\" 115lbs with brown hair and a 20 year old body. I am 5ft10\" 175lbs brown hair.', '41', '7', 'Illinois', 'United_States.gif', 'cwhite1960@yahoo.com', 'http://', 'seeya soon', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'aaea7ee18bad1f16bed1da07540548ea', '20040823201608', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('252', 'sophie', '748419090fcb2fbc', 'pet the dog', 'coupleinillinois', 'couple in illinois (central) want to meet other couples or single females', '36', '7', 'Illinois', 'United_States.gif', 'shenangoindian@yahoo.com', 'http://', 'git-r-done', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6988ec3aba1eaddf2435141bf10487ca', '20040826124327', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('253', 'jjbill69', '2ad2ca5c2f9ea8dc', 'madien', 'jjbill69', 'fun couple 52, she is 4\'11\" 102 pounds blond hair green eyes, she is 6\' 240 brown hair and eyes, love to have fun with couples and some select males and females, love fishing camping dining out and having fun', '52', '7', 'Missouri', 'United_States.gif', 'jjbill69@yahoo.com', 'http://', 'yea, we can do  that', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3c0d9e50557c5612fbe0f2352028550f', '20040826161800', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('254', 'cumhard', '72eabdb66e2c24e5', 'alma mater, birthdate', 'David', 'very attractive and fit. 5\'8, 155 with brown hair, blue eyes, mustache. A degreed professional who looks like the boy next door, except this boy has is very oral with an extremely high sex drive. \r\n\r\nLooking for women and couples. Age and race are unimportant, what is important is a high sex drive, and desire to lots and lots of sex.\r\n\r\nThis shaved boy is ready to play, let\'s do it.', '43', '8', 'Missouri', 'United_States.gif', 'pwppinc@swbell.net', 'http://', 'I can never get enough', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f7aabd0ee39de472ae275dc6b5fb2e72', '20040827102619', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('255', 'sonofwolf1', '7b49eef672e09604', '1 entertaining', 'sonofwolf1', 'just lookin round', '18', '8', 'Illinois', 'United_States.gif', 'sonofwolf1@tds.net', 'http://', 'un huh', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ac8fc882bfce6a5e2fda8d72a3e7dfd5', '20040827135616', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('256', 'Glome', '5b8665ea046506a9', 'what mood', 'smoothy', '', '48', '6', 'Illinois', 'United_States.gif', 'flippitt@charter.net', 'http://', 'lifes a bitch.....', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '32862292db776a4232ea959bcd173cbd', '20040828195821', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('257', 'heandsheh', '2c49640608c78c4b', 'couples lover', 'lovers', '36 years old couple never been with other couples we like to have fun', '36', '7', 'Illinois', 'United_States.gif', 'heandsheh@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5c7051b94df801e4c634706d03eb452c', '20040829095344', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('259', 'facker', '11532d110fa55f4f', 'weed', 'pjandkelly', '', '21', '7', 'Illinois', 'United_States.gif', 'ffacker420@aol.com', 'http://', 'stoners live and stoners die but in the end we all get hi i said this 2 prove my point life aint shit without a joint', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9b0f4ced3c880cfa4e014b79e10a5797', '20040831163311', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('260', 'KEVNDANA', '17f269667d1783ec', 'JUST ME', 'KEVIN N DANA', 'MIXED COUPLE IN K.C. LOOKING FOR FUN..', '18', '7', 'Missouri', 'United_States.gif', 'SMUT_COUPLE1@YAHOO.COM', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '33f764e6a56bf6620af6338008d52041', '20040831204024', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('261', '2daextreme', '614e62374f6b7072', 'good', 'sumthinserious', 'i am a 36f with a nice shape big booty and also mixed with black and white my guy is 25m about 6\'2 slim with a monster in his pants we r a frsh couple tryin 2 do things new', '25', '7', 'Illinois', 'United_States.gif', 'number2messiah@yahoo.com', 'http://', 'lets get in2 the swing of things', 'here', '', 'jpg', 'approved', '8', '42', '5.2500', '0', 'yes', 'b8d8ed13cb52be0902f98e585e2d9052', '20040904091156', '20050717213031', '1', '1', '2005-05-26 09:17:39', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('262', 'niceazcouple', '757cb5f549d59071', 'nickname', 'mike and amy', 'Nice couple in AZ looking to meet cool people.', '29', '7', 'Alaska', 'United_States.gif', 'racki2@cox.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3d67be5765a0cb842792dc25baca7cca', '20040911184031', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('263', 'funwon', '1985764a269ce3f8', 'adress', 'funwon', 'nice looking and easy going.', '54', '8', 'Maryland', 'United_States.gif', 'burgguy1@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd10e62f0c9882ea64feaec701ff95122', '20040912221604', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('264', 'gavinsublime', '0f7bfbf43175e592', 'reg.', 'Mike', 'What the hell is this....', '19', '8', 'Illinois', 'United_States.gif', 'gavin_sublime@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3dfb0c49b28443e56c3790ddfdc83c9a', '20040913113855', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('265', 'zentra7644', '75ba752933af15ad', 'soccer', 'val kilmer', '', '27', '8', 'Illinois', 'United_States.gif', 'riversedge44@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3d404b86003b23def5768e486756d56a', '20040915072508', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('266', 'Kraz_Eric', '502db89d6579cbf4', 'twisted', 'Eric and Dannielle', 'he\'s 31, 6\', average build, straight..she\'s 22, 5\'4\", average build, bi friendly. Looking for fun couples in area. Prefer to meet at social dances, and go from there', '31', '7', 'Missouri', 'United_States.gif', 'Kraz_Eric@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3997668baa91bcdd598793817c74c80e', '20040916012616', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('267', 'SassyJoJo', '25f474c326a68b21', 'coins', 'JoJo', 'Honest, outgoing and Fun', '40', '6', 'Kansas', 'United_States.gif', 'jobozie@msn.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a8ee8d439af34b782f6dfe39065de7d6', '20040919023955', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('268', 'magicmanbe', '15d4dcee62b59eb5', 'je suis', 'Julien', '', '25', '8', '', 'United_States.gif', 'magicman_be@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ab88a3f495c89e277d9bed763f3c29a7', '20040924201354', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('269', 'miki', '65ecf97255d1ced8', 'miki', 'mikelius', 'sex!', '24', '8', '', 'Yugoslavia.gif', 'miki_mehovic@yahoo.com', 'http://', '', 'there', '', '', 'approved', '48', '199', '4.1458', '0', 'yes', '4839641470743161315c2daed44ff32c', '20040927102837', '20050724144029', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('270', 'hz53716', '21d6101608809fe5', 'shit', 'Harry', 'Let\'s have some fun', '39', '8', 'Wisconsin', 'United_States.gif', 'bang_tao@yahoo.com.cn', 'http://', '', 'there', '', '', 'approved', '45', '166', '3.6888', '0', 'yes', 'bc1d32bcdaec336bc022fad67405754a', '20040930153129', '20050715122938', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('271', 'spookjones', '3b3fed3c6442aec7', 'radio', 'rusty', 'married male looking to play around a bit . like married wemon best', '41', '8', 'Illinois', 'United_States.gif', 'lookingtochatwithu@yahoo.com', 'http://', 'lets fuck', 'there', '', '', '', '1', '10', '10.0000', '0', 'yes', 'b8c3b897aa62639049bc7a15ddf18479', '20041001102639', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('272', 'so_il_bi_cpl4u', '6c25c4474ffe3f54', 'Maiden last name', 'Dee and Lee', 'He is 6\'4\", white, 230, short brown hair.  She is 5\'4\", white, 220, very long red hair and blue eyes.', '18', '7', 'Illinois', 'United_States.gif', 'southern_il_bi_cpl4u@yahoo.com', 'http://', '', 'there', '', '', 'approved', '38', '122', '3.2105', '0', 'yes', '3d8c49322008844048c53c4150d9fab3', '20041002182107', '20050704015242', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('273', 'sweetmarie', '080627585bd7bd47', 'baby', 'susan', '', '30', '7', 'Missouri', 'United_States.gif', 'mikeandsusan74@hotmail.com', 'http://', 'if hind site was fore site', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b104d00021cffe421cba1eee28b2ecae', '20041004201231', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('274', 'httpsexy', '392c64912a6edc79', '2nd favorite pass', 'jeff', '', '29', '8', 'Illinois', 'United_States.gif', 'httpsexy@yahoo.com', 'http://', '', 'there', '', '', 'approved', '39', '145', '3.7179', '0', 'yes', 'e4840606d1dc5a8c3e70188c33c6d21a', '20041010001907', '20050721161822', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('275', 'trip6935', '447d8f5c6f2b98e3', 'sons name', 'matthew', 'i am 35 years old 6 ft tall and 235 lbs with short brown hair and baby blue eyes\r\n', '35', '8', 'Illinois', 'United_States.gif', 'trp692001@yahoo.com', 'http://', 'when u are good u are good but when u are good u are yourself', 'there', '', '', 'approved', '37', '164', '4.4324', '0', 'yes', '3a2c2a5996dda1a687139a68bd3f656a', '20041010121241', '20050728133642', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('276', 'elaelecwb', '4cba63ec4817e3cc', '', 'ela.ele.cwb', 'hello', '40', '7', '', 'Brazil.gif', 'ela.ele.cwb@bol.com.br', 'http://', '1', 'there', '', '', 'approved', '52', '196', '3.7692', '0', 'yes', 'a37eb5966e4af1f75019f6aa04a1e59a', '20041012120503', '20050724144301', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('277', 'swinginsam', '0aa4c19840b04a75', 'girlfreind', 'samm', '', '19', '8', '', 'United_States.gif', 'the_port_tigers2005@yahoo.com', 'http://', 'to live or die', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '576b72a3c49866083e0f360c1e9e4f25', '20041013124934', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('278', 'twister18', '66d249687968c151', 'son', 'jeff and dana', 'We are a couple looking for  couples, bi females and  the occational single male. ', '33', '7', 'Illinois', 'United_States.gif', 'twisten77@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '24458195e623584cbf274c689312f825', '20041013140855', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('279', 'Juggsone', '07687c9f297e046a', 'wut u r', 'hottie', '21/m and 24/f looking to meet people for fun in our area', '24', '7', 'Illinois', 'United_States.gif', 'Juggsone@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'eec5810a42b098c6568a3317dc272bd7', '20041014225323', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('280', 'cpl2playwith', '0d3e334f3a4a3cdb', 'birthday', 'Jeff & laura Tidball', 'We are a cpl looking 2 meet new friends 2 play with. we are open & real drop us a line. PLEASE NO SINGLE MEN WE WILL NOT RESPOND TO U', '37', '7', 'Missouri', 'United_States.gif', 'jtidball2@yahoo.com', 'http://', 'kiss my ass', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd5333daf5f76bc9f1decae300ed69dfd', '20041017005112', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('281', 'StaClr', '573cd9326d952d2d', 'wings', 'jeff', '', '33', '8', 'Illinois', 'United_States.gif', 'JDegr568@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '975e52cbcc4bd5165c6af05cd1a2f57e', '20041019090434', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('282', 'Extaci', '42b78644232bce62', 'favorite fighting game', 'Extaci', 'Like to go out and have fun and also stay in the crib and relax. I\'m pretty much laid back and like to chill. Me, just plainly whatever, I know what I want how to get it. Like a woman who can have fun and joke around but knows when to be serious, pretty much mature. I like a woman who knows what she wants and how to get it. Show me what you got and what you can do.', '18', '8', 'Illinois', 'United_States.gif', 'extaci23@hotmail.com', 'http://', 'Fa Sho', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '568ddb94402ff9276462f5eefa0ba698', '20041020023632', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('283', 'cubyblue', '7f4a1aa16f81fa4d', 'legend', 'James', '', '31', '8', 'California', 'United_States.gif', 'cubyblue@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7c5adf01288b1484c03599d87b2f3099', '20041020034848', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('284', '97ripcord', '5e91df474652bc6a', 'you know', 'jim scott', '', '18', '8', 'Missouri', 'United_States.gif', 'i90ripped@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ef125fe4569ba2df486c707526a8f93b', '20041021004925', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('285', 'treats4u91', '3dcf6acb2868d9ea', 'dogs name', 'treats4u91', 'cpl looking for real people for some extra fun...were into 3sums f/m/f or m/f/m  and same room cpl swaps...tell more later', '33', '7', 'Tennessee', 'United_States.gif', 'treats4u91@yahoo.com', 'http://', 'live life to the fullist', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8cf1ddc1ac34cd74afc133c894fabcaa', '20041027211338', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('286', 'katana', '47a1622710566c78', '', 'Phil', '', '32', '7', 'Ohio', 'United_States.gif', 'philio24@sbcglobal.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c6983b366e2ff8a0ab159d6778cff745', '20041028180513', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('287', 'WHITEBOYKEN', '5fcc735428e45938', 'ADDS TO 6', 'CHRI&KENNY', 'BOTH LOOK GOOD!!!!', '38', '7', 'California', 'United_States.gif', 'THEYSAID2HAVEFUN@AOL.COM', 'http://', '(((FREAKSTYLE)))', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd9737135aa45c6f9400a9776c5e60639', '20041029031616', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('288', 'luvpussy', '1033691e40472069', 'bond', 'Kenny', 'Married male looking for hot ladies to have discreet sexual affair may eventually join in with wife.', '37', '8', 'Illinois', 'United_States.gif', 'plicker6900@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2a042f2f2ac4dc69c9cafe8c0210cbd8', '20041101152022', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('289', 'cedjon', '0ed1e6b77986a5ab', 'Middle Name', 'Cedric', 'We are an AA couple looking to meet new and exciting people', '38', '7', 'Illinois', 'United_States.gif', 'cedjon2004@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '31bad581f87c6506a2ed1d7c1c01fa0b', '20041102122116', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('290', 'beerman1029', '61bfc0ae2238876c', 'the old lady', 'Nick', '', '26', '8', '', 'United_States.gif', 'nick_palat@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '368735c0fd196389edab7165c81beb8b', '20041104175422', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('291', 'Marcosutra', '52b5f5bd66d6a0c8', 'sonya', 'Marco', 'Tall dark and handsome looking for a good time.  6\'2, 220lbs of pure fun, very easy going guy who loves to have a good time.', '32', '8', 'Illinois', 'United_States.gif', 'aardvark_tongue@yahoo.com', 'http://', 'Live and let live!!!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0d3c7b9d22e8f18ae6705657247f91a1', '20041105181718', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('292', 'Open_Bold73', '7542d7bf29662b88', 'sexyga', 'sammytu', '', '31', '8', 'Illinois', 'United_States.gif', 'Open_Bold73@yahoo.com', 'http://', 'dont do it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '16934033dbf3cb9b60bd62bd919c835e', '20041106061033', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('293', 'latino papi', '351918753d79c9cd', 'dick', 'latino', 'hot latino looking for sexy ladys to hook up with', '26', '8', 'Massachusetts', 'United_States.gif', 'steven30d@comcast.net', 'http://', 'thats what she said', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c7abd641f7a518707f7999277f47a08c', '20041107153530', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('294', 'tx4us2', '76cff10d1c37d9a6', 'maiden', 'Robin  + Dennis', '', '42', '7', 'Texas', 'United_States.gif', 'tx4us2@ev1.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f1fb7092908558852b2f9d4ab724b886', '20041114060237', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('295', 'devildogsimpson', '7f8eb1580b58265c', 'what did I drive in Iraq', 'Guy Simpson', 'I am a white male that likes to have fun with everyone and I am open to anything just ask.', '24', '8', 'Missouri', 'United_States.gif', 'devildogsimpson@yahoo.com', 'http://', 'The worlds your oyster.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '91c591280aaf09e10c4b6f0913f327f7', '20041115160340', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('296', 'swingers', '7de256fa1d3ca246', 'hamster', 'peek', 'im 5\'10 235 dark brown/blue eyes honest and looking for new friends and fun', '33', '8', 'Illinois', 'United_States.gif', 'potheadjoe2003@warpnet.net', 'http://', 'i told you so', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1628c8827f677f69625d822f926df6f0', '20041116121054', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('297', 'chrisandstef', '38847abc60e3c0c6', 'love', 'stefanie', '', '21', '7', 'Illinois', 'United_States.gif', 'stefaniem_2001@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '07c4f66257322dbe60dc2aae426c8f12', '20041116220812', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('298', 'Eurolatincouple', '1e0608685afefd24', 'him', 'Robbie', 'Fun loving couple....', '33', '7', '', 'Mexico.gif', 'Coolstuff_herm@hotmail.com', 'http://', 'A quicky a day, keeps the devorce lawyers away', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5124852631b1d91648ebfbbab99db73a', '20041118011607', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('299', 'sexyones4u', '355ab89e3e05bfd6', 'Star Wars', 'PaulAndKiki', '', '18', '7', 'Missouri', 'United_States.gif', 'pherring@coin.org', 'http://', '', 'there', '', '', 'approved', '49', '212', '4.3265', '0', 'yes', '935658505460d9727d31c8bd6d263095', '20041120124051', '20050715123109', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('300', 'rep0110', '1239bcc72e60974a', 'lb', 'Rich', 'I like to please and be pleased', '48', '8', 'Illinois', 'United_States.gif', 'see356@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '48a268ff615fbf6650600de0dd9b2ffe', '20041120225331', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('301', 'BPSP95', '6a17fda7075d67b5', 'SON', 'SHERRI', '', '32', '7', 'Illinois', 'United_States.gif', 'BPSS95@AOL.COM', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '47e6c6c14378c839c6b55283e53945fb', '20041121000236', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('302', 'firecracker235', '3306bd8a6cd6cdd5', 'favorite pet', 'Goldie', 'BBW-bi.  Loving kind sensual couple, looking for bi fm. or couples with bi fem.', '42', '7', 'Illinois', 'United_States.gif', 'firecracker235@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'db32ea40a334cddfc5aecfd272f93254', '20041121032436', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('303', 'femfun41265', '3af293041c50a56c', 'darby', 'femfun41265', '', '44', '7', '', 'United_States.gif', 'reggy1871@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a9385508712edccbdd57de0ba12077c0', '20041122113906', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('304', 'only1dvd4fun', '61b0d54d06c7e342', '5774295', 'David', 'love to watch my girl get fucked by tons of guys sand when she eats out all her friends ', '23', '7', 'California', 'United_States.gif', 'drodriguez@ncen.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2dd4b800fc7952a6934602dd6d9f9f4c', '20041123140428', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('305', 'lets70', '325714956a0e811a', 'who do you love', 'John', 'ready to play', '36', '8', 'Illinois', 'United_States.gif', 'lets70@yahoo.com', 'http://', 'getter done', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6810ced4acf0d65d8ea344ab48583053', '20041123152423', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('306', 'sexsationallady', '5631c8561595778e', 'what state do you live in', 'lori', '', '36', '6', 'Michigan', 'United_States.gif', 'coleslisa@yahoo.com', 'http://', 'sex me up', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f788e6fc8cd44c45be31e7e4ba233222', '20041124090513', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('307', 'slyguy', '35c0c03902a74b61', 'compound maker', 'slyguy', '', '34', '8', 'Connecticut', 'United_States.gif', 'misguidedfortune@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '59c331025c3bfc1ddba8f8d8882e4cb2', '20041202095223', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('308', 'WUmp', '025b700c6f1182d9', 'wedding date', 'Will', '', '18', '7', 'Illinois', 'United_States.gif', 'eo3ump@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '33', '174', '5.2727', '0', 'yes', '3de570fede92a96fbe8f15917eafb9f4', '20041204104721', '20050731160729', '1', '1', '2005-04-13 07:38:43', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('309', 'jacesak', '31f435ae79949bc9', 'what am i', 'jeff', 'wc', '37', '7', 'Illinois', 'United_States.gif', 'jacesak@yahoo.com', 'http://', 'have fun', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '907994462526d29ecf035524a0008297', '20041205221709', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('310', 'macpl', '565491d704013245', 'num', 'tina', '', '35', '7', '', 'United_States.gif', 'macpl4@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7baaa1a0c89bb9af1626f686be8a8db0', '20041206010224', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('311', 'kwtavtr', '65a2dc4f6caeb1db', 'football', 'Denn', '', '18', '8', 'Ohio', 'United_States.gif', 'kwtavtr@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b9312f591f51e662561971134f31c8ca', '20041206150231', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('312', 'missouribi', '4f3aaa40657c6e80', 'team', 'missouribi', 'I am james. i am an orally bi guy who has some but not a huge amount of bi mfm experience. i am very orally bi and have never been anally bi nor am i sure that i want to try it.  I am 30 years old, 6ft, 225 with short brown hair, brown eyes, no facial hair, no piercings, no tatoos, very professional looking.  \r\n\r\ni have been hoping to meet an open minded couple to get to know and hopefully satisfy sexually.  i am not looking to play with partial couples or break up a relationship.  i am searching for a couple that is comfortable in themselves and the lifestyle and wants to explore their sexuality with an open bi guy. single women are also strongly considered as well as very select single guys\r\n\r\n', '30', '8', 'Missouri', 'United_States.gif', 'missouribi@hotmail.com', 'http://', 'if it feels good do it', 'there', '', '', 'approved', '36', '130', '3.6111', '0', 'yes', '2298d4c78fe2695e6eeabebe50565171', '20041206154443', '20050730105355', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('313', 'we_are_swingers', '0ddae4382c764c24', 'Cat', 'Matt and Krystal', '', '18', '7', 'Wisconsin', 'United_States.gif', 'we_are_swingers_04@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '41b7ee228d15352225d5b458236d272c', '20041208165344', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('314', 'newencounters', '5e67670477a9178f', 'rose', 'Andel', 'We are a committed interracial couple new to the lifestyle and we are open minded to new experiences.', '29', '7', 'Georgia', 'United_States.gif', 'yeaumsure@yahoo.com', 'http://', 'Live our lives to the fullest.', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '62e7bc7612de882981bb737d8608e6f8', '20041210111636', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('315', 'astrojpp', '23711842301ec5d5', 'normal', 'Jerry', '', '33', '8', 'Missouri', 'United_States.gif', 'paraffbscis@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9c9557b57cf4c513cabe46c0301c16ed', '20041211002843', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('316', 'mk04', '6b0c4d377f62cc21', 'what', 'Mike', '', '35', '7', 'Kansas', 'United_States.gif', 'wowee2397@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd630f52444131ab0f7a51e07ef9af8e1', '20041211135652', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('317', 'newlymarried', '6ece94c602a7be5c', 'Robert', 'Heidi', '', '18', '7', 'Idaho', 'United_States.gif', 'thewise_ones@peoplepc.com', 'http://', 'letsallfuck', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ead7014083417cd2e8c1a1ba7a79de09', '20041212014507', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('318', 'haveapproval', '736462993dcbdd6b', 'sex', 'leah', '', '18', '7', 'Missouri', 'United_States.gif', 'haveapproval@yahoo.com', 'http://', 'anything is possible', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c0e5b0bd5671db56bdac9226ab6a5710', '20041212015026', '20050421154525', '1', '0', '2005-04-21 15:45:25', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('319', 'Erotifunguy', '6f54d362577af439', 'only one', 'Michael Huntington', '35 year old single male living in Cape Girardeau, Missouri. 5\'6\" 200 lbs average endowment. reddish-blonde hair. Just your average guy!', '35', '8', 'Missouri', 'United_States.gif', 'mhuntington7@aol.com', 'http://', '\"Hit me as hard as you can!\"', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1731e10ed148e78daa59eb7151d59471', '20041212140428', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('320', 'fireg', '0f78771258ceb0f8', '1st truck out', 'hotone', '', '32', '7', 'Illinois', 'United_States.gif', 'fireg17@yahoo.com', 'http://', 'find em hot leave them wet', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7a619c815518bcf74e06754a07e91d55', '20041215221830', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('321', 'missyrk', '552dd2b116fa0c6d', 'password', 'Missy & Michael', '', '40', '7', 'Illinois', 'United_States.gif', 'missyrk@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a516dcaa3d99c69e4e6a68fa2ea7f4fe', '20041216120542', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('322', 'here3332222', '7973b0660d9d1634', 'same', 'Here333222', '', '30', '8', '', 'Canada.gif', 'here3332222@yahoo.ca', 'http://', 'Ill do ya', 'there', '', '', 'approved', '42', '147', '3.5000', '0', 'yes', '7a637683427cfc4682f72a7838b8d1e2', '20041217103821', '20050716223144', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('323', 'oramses', '7a3a182e1971e3d8', 'what is you are investigting', 'KIng Ramses', 'We are a 30\'s couple who are new and curious to the lifestyle.  Have not been anywhere yet.', '36', '7', 'Missouri', 'United_States.gif', 'oramses@yahoo.com', 'http://', 'Life is short', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '2e798d516c98e1c212749ef38e3c55fa', '20041225144458', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('324', 'omcC', '0aa606cb140f7b7d', 'omc', 'oliver', '', '18', '8', 'Missouri', 'United_States.gif', 'omc5522college@yahoo.com', 'http://', 'CAN I GET SOME', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9d55b5e575ea84240df92fc641c69741', '20041227164720', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('325', 'xcalabor23', '19d276ed5f0d7448', 'same as e-mail', 'ValNRandy', '', '26', '7', '', 'United_States.gif', 'xcalabor23@yahoo.com', 'http://', 'FUCK IT!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'cd223c0dd08c18cf8ca56d0062f6da06', '20041228094754', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('326', 'alliance1000', '4266bfd446479682', '', 'Matt', '', '26', '8', '', 'United_States.gif', 'midwestmilitia@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ba90e21864069eca893e9291b4387e08', '20041229165216', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('327', 'coconutlotion', '0dc08b5269030892', 'what is my fave animal?', 'Holly', '', '21', '8', 'Indiana', 'United_States.gif', 'Cutiepieforyou20022000@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '214c94455a3aca335fb1bbce70d09eb4', '20041230000128', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('328', 'leilani', '097bdaba30f71f12', 'dmc', 'Marnina', 'We are a healthy and energetic couple looking to live our fantasies.  We want to smile big and make some memories.', '24', '7', 'Illinois', 'United_States.gif', 'leilani4565@aol.com', 'http://', 'Dance like no one is watching!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c3679e573ec78386712d0c3a229b8433', '20041231145118', '20050317222533', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('329', 'VinGrimm', '4a414c2854f6d856', 'When that bitch bent over....', 'Vin Grimm', 'Just another face in the crowd... hehe', '43', '7', 'Missouri', 'United_States.gif', 'bernand@sbcglobal.net', 'http://', '', 'there', '', '', 'approved', '54', '184', '3.4074', '0', 'yes', '24e08c6776f77e1425ffa8679993f730', '20050101100746', '20050728133628', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('330', 'Buff2004', '51db026c343274b2', 'wife', 'Mark', '', '18', '8', 'New York', 'United_States.gif', 'rcampise2004@yahoo.com', 'http://', '', 'there', '', '', 'approved', '47', '185', '3.9361', '0', 'yes', '73d8cd1c934abb97b536895bfb5392c0', '20050105150508', '20050726002148', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('331', 'MikeA747', '0a377b9f19c9ae43', 'SAME', 'Michael', '', '46', '8', 'Texas', 'United_States.gif', 'MikeA747@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '61cf9ee09fbebfc466f1c4e0964487a3', '20050105190543', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('332', 'Privataffairs', '16c7a5f4782b0b60', 'Daughters name', 'jasmine', '', '33', '8', 'New York', 'United_States.gif', 'shabu6771@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9486705e72737e095f94b00fe557ac33', '20050107205912', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('333', 'ms_ez56', '4de332f05c6e54b7', 'birthdate', 'Sharon & Jim', '', '48', '7', 'Illinois', 'United_States.gif', 'ms_ez56@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a4b53fe8219b1f351835a2bb5b0a85cb', '20050108092926', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('334', 'jandt4more', '643d48e8059d9d73', 'opps', 'jeff', '', '46', '7', 'Illinois', 'United_States.gif', 'emitjr7@aol.com', 'http://', 'it was so good even the neighbors has a cigarette', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8c65a70ed35f0fd5bcacdaa9286ab5e7', '20050112143430', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('335', 'hotmixcouplestl', '47223115559cd13d', 'daughter', 'hotonesx2', '', '33', '7', 'Illinois', 'United_States.gif', 'tyenmandy4u@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ae14356007a7898c7d2ff1a31255d9e9', '20050113023240', '20050317222533', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('339', 'lukey812', '426a05a60d597413', 'scam', 'luke', 'vjkajv erkvjerk vekrjvnern ervkervierv rvberkbev er vejrkkrjeruhgue kv s.', '32', '8', 'Missouri', 'United_States.gif', 'brundlegal@yahoo.com', 'http://', 'bskb jksf kj', 'there', '', '', 'approved', '48', '173', '3.6041', '0', 'yes', 'c703721f3e36c265b0937ec6c8baa1e3', '20050116052027', '20050731160709', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('337', 'XxSnowBunnyxX', '0db15a44753a1cb0', 'dogs name', 'Jill', 'Bi Curious female looking for a good time...Me and my b/f r looking for swingers or a female....', '22', '7', 'Missouri', 'United_States.gif', 'badkittywntpussi@aol.com', '', 'Face down assUp thats the way i like to fuck', 'here', '', 'jpg', 'enabled', '17', '115', '6.7647', '0', 'yes', 'a7b386009da62657b0f7b6c79849a6b6', '20050113051339', '20050220225817', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('338', 'messy269', '51c8e51d4f759412', 'what else', 'messy', '', '30', '7', '', 'United_States.gif', 'luvinbigunz@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '185c06595c2106b9d46ddc9400f7f40e', '20050116015818', '20050116015818', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('340', 'detoo', '5c6add832b275a99', 'ss', 'mike', 'hott', '37', '7', 'Illinois', 'United_States.gif', 'ironsealants@msn.com', 'http://', 'live good', 'there', '', '', 'approved', '52', '165', '3.1730', '0', 'yes', '149ff5be65055fb3e6efd8525d989102', '20050116183852', '20050727201802', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('341', 'richley64', '4ea13ccd7009311b', 'ric', 'rich', 'english hung horny looking 4 fun', '35', '8', 'Missouri', 'United_States.gif', 'richley64@hotmail.com', 'http://', 'in for a penny in for a pound', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '36805e55558053ac306248d6deee3a4a', '20050121070241', '20050121070241', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('342', 'jalmush', '47219f590d4d82a8', 'birthyear', 'jim bradly', 'Educated husband and wife, open minded, both in the fourties, with light dark complextion, wife rather petit, husband tall medium wight. looking for a girl friend who loves traveling and having fun, with all her bills paid.', '49', '7', 'Texas', 'United_States.gif', 'netps2000@yahoo.com', 'http://', 'enjoy your life as much as u can.', 'there', '', '', 'approved', '51', '202', '3.9607', '0', 'yes', '940fa3031dbcac73f4a81b512f0a1000', '20050121130339', '20050731160715', '1', '0', '2005-02-11 14:03:37', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('343', 'SONNY', '399b96f5119a3927', 'MEAND', 'CLARENCE', 'JUST WANT TO START HAVING FUN', '42', '8', '', 'United_States.gif', 'CLARENCESON2@AOL.COM', 'http://', 'NO SHIT', 'there', '', '', 'approved', '47', '166', '3.5319', '0', 'yes', '79728ff8bfd79ffe6ae191a323634468', '20050122063033', '20050718215700', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('344', 'tryon36', '00ba650275f0e52c', 'engines', 'jeff', 'easy outgoing', '36', '7', 'Oklahoma', 'United_States.gif', 'tryn36@yahoo.com', 'http://', 'yum', 'there', '', '', '', '1', '10', '10.0000', '0', 'yes', 'a1d8f18a8b76ed78f54e480ff757c142', '20050122144726', '20050210062223', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('345', '2x2foru', '372b36b854556ca6', 'anniversary', 'SteveandDana', 'Attactive married  couple looking for some attractive fun new friends.', '35', '7', 'Missouri', 'United_States.gif', 'dammittgirl04@yahoo.com', 'http://', 'Getcha some!!!', 'here', '', 'jpg', 'approved', '73', '420', '5.7534', '0', 'yes', '3dcd7ce7dd9251647dce988ebb04b761', '20050123041140', '20050731092301', '1', '2', '2005-02-15 11:01:46', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('346', 'bren_swallows', '6864e8e623e945e9', 'elephant', 'bren', '', '44', '7', 'Iowa', 'United_States.gif', 'framebiz4me@yahoo.com', '', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '205a53a728bc12fbb97ed66a07e2a4ee', '20050123195028', '20050123195128', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('347', 'muhaq123', '63a8ab9923127a7f', 'delta nick', 'Moodz', 'Just lookin to meet some real cool sexy people. Im down for anything fun and hope the other person is also.', '18', '8', 'Iowa', 'United_States.gif', 'mehmoodhaq@gmail.com', 'http://', 'ill sex you if you sex me :)', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '93c254ad2eb532004aa16c3daea80eb4', '20050124102731', '20050124171340', '1', '0', '2005-01-24 17:13:40', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('348', 'vs68olds442', '066f2d7b7bc36dd4', 'middle', 'john', 'just a pure stallion', '22', '8', 'California', 'United_States.gif', 'hummer1039@aol.com', 'http://', 'git r dun', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '04f6c770411730e5c0eeb460935e14f6', '20050124205116', '20050124205116', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('349', 'marc4u', '37fd5fb726336bf0', 'israel', 'Marc', '38 yr old male,personal fitness trainer looking 4 some fun!', '38', '8', 'California', 'United_States.gif', 'easyoneasyoff@hotmail.com', 'http://', '', 'here', '', '', 'approved', '39', '150', '3.8461', '0', 'yes', '8d58a3adb6e4a472df0b55a01dd2b123', '20050125105608', '20050625181128', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('350', 'hunnyangel', '3e9885f5584b73b8', 'nascar', 'Tony', '', '33', '7', 'Maryland', 'United_States.gif', 'teamval0606@msn.com', 'http://', '', 'there', '', '', 'approved', '48', '162', '3.3750', '0', 'yes', '15d7a161138b562f3cc36a2b55f20b1f', '20050126133057', '20050721161824', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('351', 'sidney_thedog', '760d440559e3b50e', 'ny comics', 'sidney_thedog', 'a lone star', '36', '8', 'Illinois', 'United_States.gif', 'sidney_thedog@tds.net', 'http://', 'erection? who won?', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f36b51244529dd2be290ba59faff3b12', '20050127144643', '20050127144643', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('352', 'vipvix', '15a905f66f23c142', 'cold', 'Mike & Rex', '', '33', '7', 'Missouri', 'United_States.gif', 'whipped_toolz@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6e9dac2e1a4bd915678ec9bf19f0dfda', '20050127231615', '20050127231615', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('353', 'azwakeboader', '1d36f4627902d617', 'were do i live', 'ross', '', '20', '8', 'Arizona', 'United_States.gif', 'cawakeboarder1@aol.com', 'http://', '', 'here', '', '', 'approved', '34', '155', '4.5588', '0', 'yes', '983754ce96270b00b45098b40c8b11aa', '20050128112711', '20050728133632', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('354', 'BIGSEAN', '6d9b7b74369ad04f', 'WHATSIZE COCK', 'Sean', 'Hey therew I am looking to hook up with some hot sexy female and become partners so we can go to some swinger parties', '28', '8', 'Wisconsin', 'United_States.gif', 'OREILLYSM23@UWW.EDU', 'http://', '', 'there', '', '', 'approved', '41', '163', '3.9756', '0', 'yes', '76984e33292e4b83a0112d79bd1dd828', '20050128182457', '20050731092325', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('355', 'sassy_peachy2004', '6ee4ebca1c51938a', 'sons name', 'Misty', 'I AM BI AND I HAVE A BF BUT I CAN PLAY BY MYSELF WITH ANOTHER FEMALE....BUT NOT WITH A SINGLE MALE...', '31', '6', 'Missouri', 'United_States.gif', 'living_onthe_edge2004@yahoo.com', 'http://', 'Live to Live on the Edge', 'here', '', 'jpg', 'approved', '138', '436', '3.1594', '0', 'yes', '2d873d6c3b901b10b003120ef5b2d89e', '20050128200312', '20050730111039', '1', '3', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('356', 'manoncam', '08557b625491a3dd', 'a pet', 'Timothy', 'I am a 32 year old straight male who is looking for females or couples. I am 5 ft 5inches with a six inch long penis. I am drug and disease free you be to.', '18', '8', 'Missouri', 'United_States.gif', 'manoncam@yahoo.com', 'http://', 'to thine own self be true', 'here', '', 'jpg', 'approved', '57', '229', '4.0175', '0', 'yes', '6f654c2009b02a0ccc4be4cdd3bd2399', '20050201142806', '20050725142456', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('357', 'terryg', '5b5bd023402fdc8e', 'last name', 'steve', 'test', '41', '8', 'Georgia', 'United_States.gif', 'terrellg2545@comcast.net', 'http://', 'me  and  you', 'here', '', 'gif', 'enabled', '1', '10', '10.0000', '0', 'yes', '6cfc7fa84f217256eaf1ce456ba704c6', '20050209185904', '20050223230443', '1', '0', '2005-02-23 23:04:43', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('358', 'admin', '37b3a7ff3f7a673c', 'mother', 'swingornot', '', '25', '7', 'Missouri', 'United_States.gif', 'swingornot@swingornot.com', '', '', 'there', '', '', 'approved', '54', '155', '2.8703', '0', 'yes', '21232f297a57a5a743894a0e4a801fc3', '20050209191935', '20050719134954', '1', '0', '2005-03-14 10:28:10', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('359', 'queen', '1d8753fa07ba9b7e', 'kings are...', 'Alexis', 'Hot and wet for you', '24', '6', 'Nebraska', 'United_States.gif', 'Alexis@wildchildentertainment.com', 'http://', 'Come over and see a bitch!', 'here', '', 'jpg', 'approved', '150', '668', '4.4533', '0', 'yes', '72545f3f86fad045a26ed54abd2bbb9f', '20050209231016', '20050730111052', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('360', 'knightx', '7a55b86239f14736', '344584', 'matt', 'horny horny horny', '18', '7', 'Ohio', 'United_States.gif', 'chamblingt@aol.com', 'http://', 'horny', 'here', '', 'jpg', 'approved', '52', '248', '4.7692', '0', 'yes', '6d655fee48cffdb4c5d18272c941effc', '20050210012337', '20050730105401', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('361', 'littlefrog307', '2012216568d7d720', 'name of tv show', 'starsky and hutch', 'i am 41 italian,6ft 210lbs,brown eyes and hair.', '41', '7', 'Texas', 'United_States.gif', 'littlegrog307@aol.com', 'http://', 'never say never', 'there', '', '', 'approved', '53', '157', '2.9622', '0', 'yes', 'febf33716adbce2217ce03b6a9fd80d6', '20050210020856', '20050719142206', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('362', 'Nice2cur2', '751f1c686ef52944', 'moms maiden name', 'JerryKelley', 'She is 5\'-2\" 120 lbs. shaved blonde green eyes biHe is 5\"-11\" 145 lbs. well-endowed blue eyes str.We are attractive, and a very nice couple to play.', '43', '7', 'Oklahoma', 'United_States.gif', 'JeriLG1@aol.com', '', 'MMMM....Ohhh....YES', 'here', '', 'jpg', 'approved', '48', '231', '4.8125', '0', 'yes', 'c93fe2b26b4d668bc7b99fafc5ef8ce0', '20050210033109', '20050728100621', '1', '2', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('365', 'duramaxxx', '262723632058e6cf', 'truck', 'duramaxxx', 'Looking for a lady to join us', '43', '8', 'Maryland', 'United_States.gif', 'duramaxxx@yahoo.com', 'http://', '', 'there', '', '', 'approved', '34', '145', '4.2647', '0', 'yes', '8f175571c856af632d62622d6ae9ba92', '20050210065554', '20050730094525', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('363', 'nycpl52', '54c59bc110873c1f', 'name', 'nycpl', 'We are for like minded couples, for friendship, and maybe much more', '53', '7', 'New York', 'United_States.gif', 'nycpl52@yahoo.com', 'http://', '', 'there', '', '', 'approved', '46', '164', '3.5652', '0', 'yes', 'f14b760c9e0b90f75b98f7242939e93a', '20050210034751', '20050730105434', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('364', 'slutjade', '1c93877500771a04', 'sport', 'football', 'looking for fun!!! are new to this, but want to learn.', '39', '7', 'Michigan', 'United_States.gif', 'glenmig@hotmail.com', 'http://', '', 'here', '', 'JPG', 'approved', '70', '368', '5.2571', '0', 'yes', '1dfcc6cf91be4271d7f2fa3a79f4dfec', '20050210040216', '20050730111027', '1', '1', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('366', 'Southercouple', '08f692d648228297', 'two of us', 'Kat and Dee', '', '40', '7', 'Alabama', 'United_States.gif', 'Swingers_in_mobile@yahoo.com', 'http://', 'We just like having fun !!', 'there', '', '', 'approved', '46', '170', '3.6956', '0', 'yes', '4f6082920c976b74cf1db4492cef610e', '20050210070643', '20050715224834', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('367', 'angel1', '3253f694484c4ed5', 'gabriel', 'angelito', 'Pareja con deseos de buena accion y encontrar parejas ', '33', '7', '', 'Costa_Rica.gif', 'solocontactos2002@yahoo.com.mx', 'http://', '', 'there', '', '', 'approved', '46', '186', '4.0434', '0', 'yes', 'd8b36fa2ce602b7258ecaa289cf70aa1', '20050210075435', '20050731024232', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('368', 'eyepatchgang', '63fa045a0de19686', 'ughh', 'Justin', '', '18', '8', 'Massachusetts', 'United_States.gif', 'eyepatchgang@comcast.net', 'http://', 'a lie will always defeat the truth', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '3bc7d9117380fbb0bd7807c8a7b15665', '20050210124023', '20050210124023', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('369', 'ROWENS325', '06b7b8774d46d43f', 'NICKNAME', 'ROBERT', 'ARIES MAILE,6\'1\" 185 LBS,BROWN HAIR,AND EYES.LOOKING FOR GOOD TIME IN AND OUT THE BED ROOM.', '18', '8', 'West Virginia', 'United_States.gif', 'rowens325@peoplepc.com', 'http://', 'LIVE FOR TODAYAND EJOY LIFE.', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '8e778b23c1100e494a0e9352a890a553', '20050210151040', '20050211000503', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('370', 'ohtoo69', '11ab894515a8aa49', 'dog', 'ronandbarb', '', '18', '7', 'California', 'United_States.gif', 'ohtoo69@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '9ded35e25f9e32845c87924b1410f579', '20050210205004', '20050214162158', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('371', 'kingstoncpl', '2dc0560c0eee8a56', 'where did you meet Anne', 'Kingston Couple', 'Happily married couple, been playing for about 4 years', '45', '7', '', 'Canada.gif', 'anne_patrick@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '69', '391', '5.6666', '0', 'yes', 'c94a30abe0b1ed5aba94fa485fb57598', '20050210211829', '20050721172124', '1', '2', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('372', 'calihottie', '2d6093ff00b2b277', 'mother', 'kellyhottie', 'we are a hot couple looking for some action in the southern california area.', '23', '7', 'California', 'United_States.gif', 'kellycalihottie@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '63', '359', '5.6984', '0', 'yes', '5e23bbd233fb29f75f8286be582ebb20', '20050211001235', '20050730110850', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('373', 'moistpanties', '2c5bf74637965151', 'ex-roomie', '1wop2nv', '', '22', '8', '', 'Canada.gif', 'raverkid6969@hotmail.com', '', '', 'here', '', 'jpg', 'disabled', '41', '304', '7.4146', '0', 'no', 'b9941f5dc87e7293c8fa745159c02813', '20050211132047', '20050226003703', '1', '2', '2005-02-11 15:03:06', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('484', 'superyankee', '4266bd01464797af', 'bday', 'Rich', '', '20', '8', 'Colorado', 'United_States.gif', 'supermanyankee@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '35', '195', '5.5714', '0', 'yes', '6cb6b75a0e44247f11caedab1ff39a66', '20050225180601', '20050730110436', '1', '4', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('374', 'stlcmsuguy', '3808e1d84e235bab', 'whats my name', 'Timothy', '22 year old college student just checking this out....i\'m up for just about anything', '22', '8', 'Missouri', 'United_States.gif', 'tim19stl@yahoo.com', 'http://', 'Carpe diem', 'here', '', 'jpg', 'approved', '40', '173', '4.3250', '0', 'yes', '51de314eb6b96561a06678ae0ed44220', '20050211171532', '20050730105436', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('375', 'banger25', '544395935cc6df74', 'phone?', 'Brandon', 'Looking to meet some new people and maybe have some fun. 23 from missouri.', '23', '8', 'Missouri', 'United_States.gif', 'nc58_2000@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'b621027bbc9f1a326c438349983c7267', '20050211182337', '20050214162146', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('376', 'Ins0mniac', '4bc97e124a08a79e', '', 'Dave', '', '23', '8', '', 'Australia.gif', 'Ins0mniac@supernerd.com.au', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '27d9c3f4d64429afaada9bf48a62fd63', '20050212071716', '20050212071716', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('377', 'hornydog18', '62a4380831fd512a', 'car', 'rich', 'about 5 foot 6 ish muscular and horny!', '22', '8', '', 'United_Kingdom.gif', 'amazingguy18@yahoo.co.uk', 'http://', 'fuck me baby yeah!', 'here', '', 'jpg', 'approved', '48', '199', '4.1458', '0', 'yes', '2407a6ef188919a505825bc43e7a31ff', '20050212113135', '20050718145100', '1', '1', '2005-02-12 11:33:51', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('378', 'danNuno', '486e3d13516ec4f6', 'whos house?', 'Danny Likincoochy', 'sexy male', '22', '8', 'Florida', 'United_States.gif', 'wildwakeboardingman@msn.com', 'http://', 'i like eggs', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bacdac2217e35a21b141e249fd8a1f95', '20050212115342', '20050212115342', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('379', 'flacjacket', '4c97ad493e33b35e', 'code', 'Flacjacket', '', '34', '7', 'Louisiana', 'United_States.gif', 'flacjacket@hotmail.com', 'http://', '', 'here', '', 'jpg', 'enabled', '23', '190', '8.2608', '0', 'yes', 'd514535c502a61c4c3fa3ad40b5cf171', '20050213182008', '20050305144217', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('380', 'swimmerbody', '712df02634d5da10', 'frat', 'noah', 'looking for a mfm 3some', '24', '8', 'Maryland', 'United_States.gif', 'noahmatten@msn.com', 'http://', '', 'here', '', 'jpg', 'approved', '47', '244', '5.1914', '0', 'yes', 'b372cda2805125a3a0ec8d23434aa881', '20050214071304', '20050724041752', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('381', 'ready4u', '569e2fcb35175bb0', 'usual', 'Tommy', '', '66', '8', 'Florida', 'United_States.gif', 'j973s@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bb72350ff6c244cd897d6e66f3c94994', '20050214090840', '20050214090840', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('382', 'utopian', '62a43be805f86a46', 'game', 'steve b', '5 foot 10\" tall ,218 lbs good looking dark complextion, french indian decent\r\n', '39', '8', '', 'Canada.gif', 'utopiaplayer4u@yahoo.ca', 'http://', 'to each his own', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a38fab823175ece8e6ff24f62fb2b8e6', '20050214103130', '20050620065727', '1', '0', '2005-06-20 06:57:27', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('383', 'letsdoit', '79982bc169e2cef1', 'best', 'letsdo8', '', '28', '8', 'New Jersey', 'United_States.gif', 'p.pasq@att.net', 'http://', 'lets do it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f35bd902a69ee87bdca2f40603c0b747', '20050214122053', '20050214122053', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('384', 'tre8uallnite', '58ea3f301778463c', 'dog', 'sean', 'I did not jump I was pushed into swinging!!! Now all I want is to eat and lay ever female till I find the one of my dreams... R U the one?', '28', '8', 'Missouri', 'United_States.gif', 'sdantzler@msn.com', 'http://', 'forgive my enemies for they know not what they do!!!', 'here', '', 'jpg', 'approved', '45', '230', '5.1111', '0', 'yes', '7310b64139c85d6ac708e2f21517bcd9', '20050214124508', '20050718145031', '1', '1', '2005-05-04 23:31:57', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('385', 'sonray76', '1a2346a366131128', '', 'Eric', 'Looking to meet other couples, bi single male here. NIce, masculine guy.', '28', '8', 'Pennsylvania', 'United_States.gif', 'edgeboi76@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '40', '163', '4.0750', '0', 'yes', '8b8007e138b8c48c95296a10e92a74a0', '20050214152559', '20050730105407', '1', '1', '2005-02-14 15:51:41', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('386', 'geeoffs', '79d6885171b62c1a', 'girl', 'geoff', '', '35', '8', 'California', 'United_States.gif', 'geeoffs@yahoo.com', 'http://', 'Hot or not....', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c402c3eba91c952ce21cb4e253991d6a', '20050214183606', '20050214183606', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('387', 'J0nny', '725c587326e21c8b', 'password', 'Jonny', '', '18', '8', 'Illinois', 'United_States.gif', 'hansenusn@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9a64a684643bfc301367af2cad577ac8', '20050214233153', '20050214233153', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('388', 'Assyrianking31', '19b68057189b027f', '123456789', 'matt', '', '18', '8', 'California', 'United_States.gif', 'Assyrianking01@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '29cad2a74ff1aec951ce80688ce2458e', '20050215004359', '20050215004754', '1', '0', '2005-02-15 00:47:54', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('389', 'dallasboy', '34101644165042ad', 'dinner', 'Kevin', 'fill in later', '36', '8', 'Texas', 'United_States.gif', 'kevins1@airmail.net', '', 'If erection lasts more than 4 hours, plz seek medical attention.', 'here', '', 'jpg', 'approved', '38', '156', '4.1052', '0', 'no', '13d836e9deb58f1f581b907bee8454de', '20050215114108', '20050719142249', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('395', 'benandtatiana', '41638c2a11f0f8c9', '', 'poop', '', '35', '7', 'Virginia', 'United_States.gif', 'shitball@comcast.net', 'http://', '', 'here', '', 'jpg', 'disabled', '67', '529', '7.8955', '0', 'yes', '1734ebc4b4b7ab579f44b7b6824064cf', '20050216223436', '20050610083905', '1', '1', '2005-04-23 17:36:08', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('583', 'btrfly19_81', '67c8251d3babdf01', 'duh', 'Christina', 'Just your average midwest girl', '24', '6', 'Columbia', 'United_States.gif', 'btrfly19_81@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ad20b275924f65cc05d8d7ca274d4980', '20050424104859', '20050424104937', '1', '0', '2005-04-24 10:49:37', '19810103');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('584', 'Swoosh', '091e990f734bdb2a', 'dogs name', 'Brian and Aprill', '', '19', '7', 'Arlington, Texas', 'United_States.gif', 'booboosav@hotmail.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '77017754a6d1d52cfe04f2547677495a', '20050424231446', '20050424231446', '1', '0', '2005-04-24 23:14:46', '19860105');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('390', 'chad41', '66bb2b28515702fe', 'football', 'Chad McGinnis', '6\'1\" 250lbs brown hair and blue eyes', '27', '8', 'Illinois', 'United_States.gif', 'cmcginnis41@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1304bc443b71f01e1cf0dc614432686c', '20050215114710', '20050322151836', '1', '0', '2005-03-22 15:18:36', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('391', 'sextracouple', '2ce9ad4c7fafa2b6', '', 'Tny&Mich', 'Open marriage white couple in K.C. Mo. She\'s Blonde, 5\'6\" 34D,thin, sexy, bi-courious. He\'s Darkhaired, 6\'2\" thin/average, very oral,straight. Open to many possibilities. ', '44', '7', 'Missouri', 'United_States.gif', 'Daishihan@kc.rr.com', '', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9841e2029aeacfaf0aa1817473458300', '20050215132703', '20050223103750', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('392', 'primosex', '59859e671c028921', 'swing', 'Doug and Vicki', 'Hot mid-aged couple that graves sex and enjoys meeting new friends in this lifestyle to share are talents and skills with. We are both seasoned swingers that like the extra spice and pleasure that this brings into our already great sex life. We have no hang-ups and are both very easy going and just want to live life to the fullest:)', '47', '7', 'Iowa', 'United_States.gif', 'dockworker47@hotmail.com', 'http://', 'Lets have some FUN!', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '91146cae3677b9d7df550c0b5e027841', '20050215153659', '20050216230707', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('393', 'MartinInMK', '3564830951bf6f3c', 'badfilm', 'Martin', 'Mail me', '32', '8', '', 'United_Kingdom.gif', 'MartinInMK@yahoo.co.uk', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '71f105499c7fbff7bc77ca003207a57b', '20050216074310', '20050225031450', '1', '0', '2005-02-25 03:14:50', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('394', 'daytoncouple', '70d4a8836eb9ecee', '', 'dayton', '', '24', '7', 'Ohio', 'United_States.gif', 'johnck96@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4daab030116c814548c8bee00ab0b260', '20050216173123', '20050216173123', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('396', 'surfr1', '66fe5c616d920b42', 'cars', 'thomas', 'hot & horny couple from bay area seeking female for fun and mind blowing sex!', '18', '7', 'California', 'United_States.gif', 'solesurfr1@sbcglobal.net', 'http://', 'calling all ladies!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8edf3e78972ec254c61d556c585fe7ac', '20050217100733', '20050225095810', '1', '0', '2005-02-25 09:58:10', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('397', 'darr6', '172e33e61440d831', 'fwert', 'dannyboy', '', '18', '7', 'Illinois', 'United_States.gif', 'trewA@mnn.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f66aaaf86064d20f9f9f56dfddb2146e', '20050218010319', '20050218010319', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('398', 'fun_licking_guy', '3c644d6d1d4bab99', 'not qwer', 'funguy', 'Hot guy, late 30s looking for older couple to entertain and be entertained by. VERY oral ladies...', '39', '8', '', 'Canada.gif', 'ken0ra_guy@yahoo.com', 'http://', '3 is not a crowd, it is only a beginning', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '79f404aa3eb111ded1f74b38c8b294ed', '20050218232724', '20050328192516', '1', '0', '2005-03-28 19:25:16', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('399', 'hot69kit', '5820734672f4e961', 'zip code', 'cyndi', '5\'2 blue eyes blonde/brown hair 179pds\r\nnot bad on the eyes\r\n\r\n\r\n\r\n\r\n\r\n', '46', '6', 'Missouri', 'United_States.gif', 'hot69kit@yahoo.com', 'http://', 'bite me', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9152d49279b492dcc3cb9d8b19887932', '20050219180435', '20050219180435', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('400', 'for fun', '55a2b941079033f6', '', 'dallas', '', '26', '8', '', 'United_States.gif', 'bsh7475@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c1692aa8363a2baef3b0cd25a19b4f52', '20050219191215', '20050219191215', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('401', 'deno', '42f3ca5e434d8175', 'may', 'deju4', ' im 6 1 slender    she is 5 8 med  plain looking if want more info contact us', '18', '7', 'Wisconsin', 'United_States.gif', 'demaxt@aol.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'c8772b401bc911da102a5291cc4ec83b', '20050219191552', '20050220151300', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('402', 'dddytheme', '18a18b17062582f3', 'you know', 'Daddy', 'Swinging in Wis', '18', '8', 'Wisconsin', 'United_States.gif', 'dddytheme@yahoo.com', 'http://', '', 'here', '', 'JPG', 'approved', '31', '136', '4.3870', '0', 'yes', '97be7e5470fa5a41d47dc0dd84265788', '20050220123447', '20050726002200', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('403', 'rogerdodger', '724b39e234533e61', 'sex', 'roger', '', '62', '8', 'Texas', 'United_States.gif', 'rogercurtis2002@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e8758d8210b9808c2d83c802e915f6b8', '20050221105335', '20050221105335', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('404', 'bill', '656d52cb5d0c13cb', 'what is name', 'bill', '', '26', '8', 'Arizona', 'United_States.gif', 'corygonzales@myibocs.com', 'http://', '', 'there', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'e8375d7cd983efcbf956da5937050ffc', '20050221172851', '20050317235445', '1', '0', '2005-02-21 17:34:58', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('405', 'twahlman', '5c54de186b7fdbc9', 'soc', 'twahlman', '', '22', '8', '', 'United_States.gif', 'twahlman@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0c71f920cda6370466100c87668668b1', '20050221175557', '20050221175833', '1', '0', '2005-02-21 17:58:33', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('406', 'papagayo', '30c43f54111bc42c', 'street', 'papa', '', '21', '8', '', 'United_States.gif', 'markymadrid@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c7c2a1e6960e1cb0cae308731ddc4036', '20050221175626', '20050221175626', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('407', 'Demonplw7', '4a131b6c39e26dbe', 'WHO IS WHO', 'WHOCARES', '', '19', '8', 'Illinois', 'United_States.gif', 'demonplw7@hotmail.com', 'http://', 'YOU GO 90 SHE GOES 10', 'here', '', 'bmp', 'disabled', '1', '10', '10.0000', '0', 'yes', 'a62c5664f2ae20a257d66650ed9e443f', '20050221175917', '20050222013022', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('408', 'spinsin', '463343064bc38586', 'sandra', 'Crispin', '', '32', '8', 'California', 'United_States.gif', 'sudco@sudco.com', 'http://', '', 'here', '', 'jpg', 'approved', '40', '187', '4.6750', '0', 'yes', '2ad9f71e72c816237ea00cca778b43b5', '20050221180659', '20050730105454', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('409', 'pitmonkey69', '6d8369a953851a24', 'bananna', 'scott', 'i am 19 5\'10\" reddish brown hair blue eyes and looking for someone that wants to have alot of fun. i know how to please a lady in many different ways. i am extreamly good with my hands with wat ever i am doing. ', '18', '8', 'California', 'United_States.gif', 'pitmonkey69@hotmail.com', 'http://', 'wat is worth being done is worth being done right', 'here', '', 'jpg', 'approved', '41', '197', '4.8048', '0', 'yes', '6dce0ef019654db10d9550f055a91340', '20050221182811', '20050730105357', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('410', 'socal_freak', '3898fd6118a5713d', 'fuck', 'Ryan', '25 yo from san diego. single now, used to swing with ex. looking for good time. ', '25', '8', 'California', 'United_States.gif', 'socal_zerostar@yahoo.com', 'http://', 'hey did they find you? who? deez nuts!', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '8b579767906663dd5684b0612401dfaf', '20050221183130', '20050222013008', '1', '0', '2005-02-21 18:44:07', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('411', 'shawn', '2e782c85379a326e', 'blue', 'shawn', 'whats up young surfer boy looking for fun. love to please', '19', '8', 'California', 'United_States.gif', 'dudewhatup4@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'a3cceba83235dc95f750108d22c14731', '20050221185450', '20050221185618', '1', '0', '2005-02-21 18:56:18', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('412', 'samdog682001', '4528b13c0b6f6cba', 'home', 'sammy', 'hi im looking to meet new people. if your intersted let me know. ', '18', '8', 'California', 'United_States.gif', 'samdog682001@aol.com', 'http://', 'live life one day at a time', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd238714cbb902d129917bf4b32e12204', '20050221185544', '20050221185544', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('413', 'eash71', '17b1157630a833f6', 'Milano', 'Arturo Prat', 'Las Vegas Single Man  Looking  for a  woman to live and  have fun at Las Vegas  Nevada....', '18', '8', 'Nevada', 'United_States.gif', 'eash71@hotmail.com', 'http://', 'what  the  matter  with you !!!', 'here', '', 'jpg', 'approved', '39', '211', '5.4102', '0', 'yes', 'de67119903aa1b197ba771618244e621', '20050221194000', '20050730105448', '1', '1', '2005-04-01 08:41:17', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('414', 'dorksweater', '013484aa251fb74e', 'beer?', 'tanner mcdoogan', 'how do you swing when you have no swing partner?...', '18', '8', 'Arizona', 'United_States.gif', 'shadeislame@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5da5a086a24da5223a4fb6b863e03319', '20050221205251', '20050221205251', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('415', 'DrSuess05', '1c2d29493ecd68e8', 'type this in write', 'Levi', 'this is only a temp pic... but underneath them clothes are ripped thighs and calves along with a dose of strong arms and pecs that push a 62\" chest. and i may not be the biggest, but i surpass any average or slightly better fellow. its not just the size of the boat, but the motion in my ocean (bed). ', '18', '8', 'South Carolina', 'United_States.gif', 'lil_biggy14@hotmail.com', '', 'im average in height but not when i lie down', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'no', '86d1c943807864d02d164d9a59354864', '20050221212039', '20050226170656', '1', '0', '2005-02-26 17:06:56', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('416', 'andrikos', '0e73f79f028d28a8', 'hiho', 'hiho', 'slim,1.73m tall,green eyed', '36', '8', '', 'Greece.gif', 'barianta@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ef5d9867106b6e71ebaa3c8a0a8e3a9e', '20050221215018', '20050221215018', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('417', 'pantybottomsup', '645fff017ada2401', 'dog', 'panty', 'I am a Bi-TV looking to play with anyone and everyone.  Into just about anything.  I dare you to try and push the limits with me.', '26', '8', 'Ohio', 'United_States.gif', 'pantybottomsup@yahoo.com', 'http://', 'Wanna sit on my lap and talk about the first thing that pops up?', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4120a88e19405f651a2e680e00b983c9', '20050221232336', '20050221232336', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('418', 'IsaacInNY', '361f38811956ad68', 'poop doll', 'Isaac', 'Just checking this out!', '28', '8', 'New York', 'United_States.gif', 'godthatfaild@hotmail.com', 'http://', 'Excuse me miss, do y ou like it in the butt?', 'here', '', 'gif', 'approved', '33', '168', '5.0909', '0', 'yes', '0ee66fe9d32b113e1586d1430ef9527a', '20050222011502', '20050724144021', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('419', 'landau351', '3918f7f454722810', '1978', 'landau', 'tis I', '45', '8', '', 'Australia.gif', 'landau351@yahoo.com', 'http://', 'hi there', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '52f047f48c60c2fd8b79483315b1cb7d', '20050222081330', '20050222081330', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('420', 'dylan758', '04e8099415e60951', 'inits', 'Dylan', 'Average middle-aged married man looking for excitement in my sex life. ', '47', '8', 'Wisconsin', 'United_States.gif', 's.kopischke@gmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c5f537b51f452938ed4f63695ce90003', '20050222143248', '20050222143248', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('421', 'JEFFRO1', '79a1a7880887e272', 'CAMPER', 'JEFFRO1', '', '42', '8', 'California', 'United_States.gif', 'JEFFAYELLO2@YAHOO.COM', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'dde5620792c02b1341f5f85979b70dcb', '20050222153717', '20050222153717', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('424', 'nastygurl', '064b156c57a2f595', 'upc', 'Goodgurl', '', '26', '6', 'West Virginia', 'United_States.gif', 'trina4361@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '283', '1936', '6.8409', '2', 'no', 'a8acd66e05dff7f5c459d2c43ad83e27', '20050222222421', '20050730110144', '1', '1', '2005-06-14 17:50:45', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('445', 'malighn', '603f4af469517aa4', 'one', 'malighn', 'just me', '21', '8', 'North Carolina', 'United_States.gif', 'malighn2000@yahoo.com', '', 'oh happy dagger', 'here', '', 'jpg', 'approved', '34', '189', '5.5588', '0', 'yes', '6fc87d97a9e66eb24a77123dee84b04d', '20050224185107', '20050725142811', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('425', 'saeraxmae', '0a5e7e9a149fcff8', 'baby', 'sarah', '', '21', '6', 'Missouri', 'United_States.gif', 'saeraxmae@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e6fd69b49ef391a34d76a8af1dab7fe6', '20050222232849', '20050222232849', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('426', 'ponick', '281cd57c42e9623c', 'bitch', 'Jared', 'Ha ha... ha?', '20', '8', 'Missouri', 'United_States.gif', 'ponick2004@yahoo.com', 'http://', 'I heart boobs', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4646392df3ce7a97b618193de5d5a842', '20050222233245', '20050222233245', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('429', 'DjslimCB', '5e5d1d963781a170', 'I know this', 'Collin', 'Tan, fit, brown hair and eyes, 5\'9. Looking for the females and couples.', '18', '8', 'Washington', 'United_States.gif', 'Smint41@hotmail.com', 'http://', 'You are not how much you have in the bank.', 'here', '', 'jpg', 'approved', '27', '121', '4.4814', '0', 'yes', 'dd66c574f271b458c292d8c31e634dca', '20050223012555', '20050723001039', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('430', 'rugbyberr', '57880ea365121d73', 'school', 'james', 'just looking for fun', '18', '8', 'Texas', 'United_States.gif', 'rugbyberr@hotmail.com', 'http://', 'dont knock it till u try it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '9ceede8ab106e802f53b35572c773b43', '20050223014622', '20050223014622', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('428', 'CoqsFinest', '177ec38474954ed8', 'rocco', 'Rocco', 'HOT', '18', '8', '', 'Canada.gif', 'ali_cronic_boy_05@hotmail.com', 'http://', 'lets get butt naked and fuck', 'here', '', 'JPG', 'approved', '52', '332', '6.3846', '0', 'yes', 'd3a0c4c6f45621435e5cb473ef93665a', '20050223004534', '20050726002202', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('431', 'metallidart', '740dd57a0517a78c', '2001logan', 'Dustin', '', '18', '8', 'Ohio', 'United_States.gif', 'metallidart@sbcglobal.net', 'http://', 'Deserve Victory', 'here', '', 'JPG', 'approved', '32', '140', '4.3750', '0', 'yes', 'a1a85752adf499db300d34fbeeac90bb', '20050223015639', '20050730094528', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('432', 'Phrogg', '0a0c0459481c1a31', 'fave day', 'Scott', '', '24', '8', 'California', 'United_States.gif', 'phrogglash@yahoo.com', 'http://', '', 'here', '', '', 'approved', '34', '125', '3.6764', '0', 'yes', '128536c8970b227bcc9c4cccc4a9cd06', '20050223021229', '20050715224820', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('433', 'kiwi', '35f076957eac3de7', 'car', 'Darren', 'college educated, military bloke,State fair bench press champ,8 year wrestler.prudent,ambitious,disciplined,patient, fond of random humour.Mothers talk about me for some reason.Going out and getting pissed with my mates.Life is good.', '25', '8', 'West Virginia', 'United_States.gif', 'dbeanland@hotmail.com', 'http://', '', 'here', '', 'JPG', 'approved', '42', '247', '5.8809', '0', 'yes', 'de5949721e6352f01dfef317c3e898a8', '20050223072751', '20050730110338', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('434', 'score', '51db026c343274b2', 'wife', 'Russ', '5\'8\" 185lb, excellent shape and condition..looking for discreet meetings to fullfill sexual fantasies of both giver and receiver.  Drug free and clean and expect the same.', '18', '8', 'New York', 'United_States.gif', 'russell.campise@usfood.com', 'http://', 'Suck It', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ca1cd3c3055991bf20499ee86739f7e2', '20050223080239', '20050223080239', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('435', 'kidboz', '40e6e8745a512eb3', '', 'Chrales', '43andstillsexy', '43', '8', 'Florida', 'United_States.gif', 'theboz61@hotmail.com', 'http://', 'ENJOY IT WHILE YOU CAN...', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'a12dd7297970aa9479835d62815149b4', '20050223090911', '20050225164755', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('436', 'SPARTANS196', '003d333108343d4a', 'what am i?', 'Kevin', 'easy to get along with', '24', '8', 'Ohio', 'United_States.gif', 'kevin1ksu@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '01db9cc910ff6de3ee0866243cd6e67a', '20050223112039', '20050225164748', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('437', 'supastar21', '3545b26351399879', 'my dog', 'emma', 'well im 5\'7 i have 4 peircings and one tattoo... i have my tongue... libret... and my belly button done twice...top and bottom...anything else yah cant get from the picture just ask', '18', '6', 'Washington', 'United_States.gif', 'crazyforhotguys69@hotmail.com', '', '', 'here', '', 'JPG', 'disabled', '16', '63', '3.9375', '0', 'yes', '1984e0c239e700c93000cca5ddd43065', '20050223143817', '20050225234319', '1', '1', '2005-02-25 16:18:49', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('438', 'CTM77', '1b417ef9434b4b45', 'dumbass', 'Colin', '27 year old looking to have fun and kill time on the internet...', '27', '8', 'New Jersey', 'United_States.gif', 'cmcmullen@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6b3dfc9701ebee3340f237ecb0f9f12d', '20050223194444', '20050309141115', '1', '0', '2005-03-09 14:11:15', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('439', 'mistresserotica', '55aceeed0677f507', 'club name', 'mistress erotica', 'i am the hostess for club erotica. We are a swingers club that is welcome to all people..There is no restrictons and I mean NONE..We are open to people having sex in front of everyone!!Wanna meet me? Come to club erotica...I am the freak let me eat you out or suck you off!!!We are in bluesprings and in olathe kansas...', '21', '8', 'Missouri', 'United_States.gif', 'cluberoticaplz@aol.com', '', '', 'here', '', 'jpg', 'approved', '73', '416', '5.6986', '0', 'yes', '9543f17f57ea8ed065adacd192e42239', '20050224024043', '20050730110340', '1', '1', '2005-02-25 03:11:21', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('440', 'Ray69', '2e218b683322bb4a', 'dog', 'Raymond', 'Married male, living in the Northwest of England, have wife\'s consent to have \"no strings\" adult fun. Slim,friendly, reliable will try most things, but not into pain or watersports', '51', '8', '', 'United_Kingdom.gif', 'ray_1953@hotmail.com', '', 'Life is for living', 'here', '', 'JPG', 'approved', '36', '162', '4.5000', '0', 'no', '833c53fff7f3fea61ba3eeba70cb988e', '20050224055421', '20050717214803', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('441', 'bulldozer', '771b917c54f7ee5a', 'pet', 'rocky', 'looking for the swinging scene', '39', '8', 'Oklahoma', 'United_States.gif', 'wannabeinu2002@yahoo.com', 'http://', 'none', 'here', '', 'JPG', 'approved', '28', '122', '4.3571', '0', 'yes', '97c9bb5fec29bfbfbd0069adb232d610', '20050224075134', '20050717214322', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('442', 'Dazed & Confused', '3dc1f6ae16cb82cf', 'adding machine', 'Nick', 'I’m a 20 year old college student who is just looking for some fun, I have brown longer hair, hazel eyes, tongue and nipples pierced. I like to drink, smoke (420), the outdoors in general, and sports. If you want to know more just ask and I will tell. ', '18', '8', 'Minnesota', 'United_States.gif', 'nglum58@yahoo.com', 'http://', '“Don’t hit her, shake that ho” – Snoop Dogg', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'fb101fcac8b8cd13733a944ab46bae51', '20050224145040', '20050225164745', '1', '0', '2005-02-24 15:16:20', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('443', 'sunnyyb', '0c95234760ae5a28', '', 'ians', '', '19', '8', '', 'Turkey.gif', 'sunnyy_b2000@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '25', '138', '5.5200', '0', 'yes', 'b8eba1897bfd7d3a3902517b83bca5fc', '20050224181113', '20050723000949', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('444', 'r0me0', '26be5fb750b1f7cd', '02071987', 'Romeo', '', '18', '8', '', 'Netherlands.gif', 'rOmeO.29@gmail.com', 'http://', '....', 'here', '', 'jpg', 'approved', '35', '182', '5.2000', '0', 'yes', '0132b845e5f5cb2f51a34236b4b7efa8', '20050224181637', '20050730110353', '1', '1', '2005-03-09 04:08:39', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('446', 'LostRussian', '65f52e5c7b44c427', 'what', 'Russian', '', '19', '8', 'Maryland', 'United_States.gif', 'notyet@hotmail.com', '', '', 'here', '', 'jpg', 'approved', '34', '154', '4.5294', '0', 'no', '1d2f8c01f24833db7de2d2cf92456848', '20050224192245', '20050721161827', '1', '1', '2005-06-21 22:33:15', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('447', 'knight4u', '61e7c8bf40bb0d56', 'name', 'Dan', 'Young, hung and looking for fun', '22', '8', '', 'Australia.gif', 'dan_m11@hotmail.com', '', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '9500da6d7a034818b6b8324677888637', '20050224192554', '20050506223015', '1', '0', '2005-05-06 22:30:15', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('448', 'Evbb', '1299d209233dd286', 'caution', 'Jason', '', '20', '8', 'Washington', 'United_States.gif', 'anarchy662@canada.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '58eb62a19e4d78e67ec31c37a8d1c9a9', '20050224202310', '20050224202310', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('449', 'jwrmuscles', '5bef840f7dadd1bf', 'lopez', 'Joseph', 'Young male with career recently became single and lives alone, rate me if u want date me (I HAVE THE BLACK SHIRT AND THE TATTOO IN THE PICTURE)', '25', '8', 'New Jersey', 'United_States.gif', 'wrobodog44@comcast.net', '', 'Do not mistake kindness for weakness', 'here', '', 'jpg', 'approved', '34', '168', '4.9411', '0', 'yes', 'b5284b7cd23b9642606d6d422237539a', '20050224202854', '20050724144241', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('450', 'candnbeef', '526c66584a3dab3f', 'fav hockey team', 'Pricee', 'just a crazy jock looking to meet and have a good time!!', '24', '8', '', 'Canada.gif', 'price798@hotmail.com', 'http://', 'Nice Bum where ya FRUM', 'here', '', 'JPG', 'approved', '31', '188', '6.0645', '0', 'yes', '617b8ef5a0b859188674f20d20a127ec', '20050224203157', '20050731160725', '1', '2', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('451', 'megatmoe', '3b1de7db3e57e7b0', 'car', 'Tony', '6\'1 23 year old athletic male looking for some fun!', '23', '8', 'Minnesota', 'United_States.gif', 'megatmoe@hotmail.com', 'http://', 'If your important people will wait', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'be5f36f713500327fbddc5e84c2e4c8c', '20050224205436', '20050225164737', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('452', 'cute_guy2004', '441f43f75a0d699d', 'my girl', 'tammy', 'looking for some fun with a hot girl with no strings and i am great with my tounge mmm', '26', '8', 'South Carolina', 'United_States.gif', 'cute_abercrombie_guy2004@yahoo.com', 'http://', 'i would love to eat you out', 'here', '', 'jpg', 'approved', '40', '230', '5.7500', '0', 'yes', '7a762013f341234f6fb734d2322f2c1c', '20050224210137', '20050717215235', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('453', 'shvdnthick', '0c38186808212d24', '', 'justin', '', '26', '7', 'Georgia', 'United_States.gif', 'shvdnthick@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '56', '358', '6.3928', '0', 'yes', '035fd4b90e11cb678320659b3b10597f', '20050224210149', '20050730110151', '1', '1', '2005-07-19 20:07:52', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('454', 'lateralius', '559df8a073249845', 'fav song', 'brad', 'im a small town guy from nebraska, i work full time and go to school full time so theres not much i do besides those two lol hit me up if you want to know more', '18', '8', 'Nebraska', 'United_States.gif', 'bradfolch@hotmail.com', 'http://', 'the true meaning of a man is how he treats someone that brings him nothing', 'here', '', 'jpg', 'approved', '29', '150', '5.1724', '0', 'yes', 'bc4edb8f17d63f622235fc023ee040cd', '20050224212617', '20050730105350', '1', '1', '2005-03-05 16:56:31', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('455', 'badmoonrise', '3e95f94e02ae7113', 'cat', 'mike', 'tall , buff, blonde-blue eyed, hung male ', '26', '8', '', 'Canada.gif', 'toofly4u85@hotmail.com', 'http://', 'shes got hungry eyes, and im an all you can eat buffett', 'here', '', 'jpg', 'enabled', '9', '61', '6.7777', '0', 'yes', '28d5a1c06ae4f9bb23891a8ac316eabe', '20050224225019', '20050314151348', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('456', 'headed2cali', '64cb3804238594ba', 'me', 'Drewsive', 'lonely single guy, hoping to find someone who can make me smile as much as i would them. someone open minded, and someone not afraid to just let lose and be themselves with me.', '21', '8', 'Michigan', 'United_States.gif', 'drewlewicki@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '29', '127', '4.3793', '0', 'yes', '879af2f91318b3c4ec5fd6a681603698', '20050224231504', '20050731092237', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('457', 'mangas52', '1ff659c6617212cf', 'same', 'mike', '', '23', '8', 'Arizona', 'United_States.gif', 'mangas52@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '36', '224', '6.2222', '0', 'yes', '57a281df34c5dc67b980d34a20d85681', '20050224232443', '20050724041759', '1', '1', '2005-03-17 20:43:56', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('458', 'Branone', '35e86dbe4b8f5879', 'food', 'Brandon Burke', '', '18', '8', 'Ohio', 'United_States.gif', 'btman_7@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'e49fce15a6e4b72d647db05e0488c5af', '20050225012559', '20050225164733', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('459', 'duske', '436980566acfced1', 'ihate who', 'jawshawa kingsteen', 'iam young blond and looken for fun', '18', '8', '', 'Canada.gif', 'kduske@eciad.ca', 'http://', 'no body lives for ever infact we all die', 'here', '', 'jpg', 'approved', '33', '130', '3.9393', '0', 'yes', '37f813ec9faa7ab23d16c8ea48f585d9', '20050225021544', '20050724144256', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('541', 'John262', '73fd558e4b048b5d', 'panda', 'panda', '', '27', '8', '', 'Canada.gif', 'barsley_26@hotmail.com', 'http://', '', 'here', '', 'gif', 'approved', '24', '98', '4.0833', '0', 'yes', '38ee2bd65261c5cbe624db938fd86e71', '20050308215531', '20050730105413', '1', '2', '2005-03-08 22:01:35', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('460', '99degrees', '61786a186b5a00f8', 'ladies', 'Kniggit', '', '21', '8', 'Wyoming', 'United_States.gif', 'ladiesluvmybod@hotmail.com', 'http://', 'You dont know what you got until its already gone', 'here', '', 'jpg', 'approved', '28', '148', '5.2857', '0', 'yes', '9ddaa331275d4c4670f006e77a7da5ad', '20050225033400', '20050717215320', '1', '1', '2005-03-06 11:24:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('461', 'johmbell80', '13bfe22520cb335d', 'sevven', 'john', '5\'10\" tall, 180lbs, like the outdoors and puffy nips', '25', '8', 'Wisconsin', 'United_States.gif', 'johnbell80@yahoo.com', 'http://', 'it was done too soon!', 'here', '', 'jpg', 'approved', '36', '171', '4.7500', '0', 'yes', 'ed1aad6e002c8af001cee760b82c78c0', '20050225061046', '20050730105445', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('462', 'muscl3s', '45c192f86aaf1e57', 'who', 'minxbaby', 'ask or look', '20', '8', '', 'Canada.gif', 'prettboy_07@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '34', '170', '5.0000', '0', 'yes', '6e18a9f1a074d2337d65478c18f82916', '20050225073101', '20050717214523', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('463', 'burritto7', '6c973de455c4b230', 'nickname', 'brandon', '', '23', '8', 'West Virginia', 'United_States.gif', 'burritto7@hotmail.com', 'http://', 'mmmmmmmmmmmmm', 'here', '', 'jpg', 'approved', '29', '154', '5.3103', '0', 'yes', 'fdae6215e1b95be20d81ad64eb1a67f0', '20050225075334', '20050730110449', '1', '2', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('464', 'apollo118', '7628878d44eae755', 'me', 'apollo', 'www.proclean.ca', '23', '8', '', 'Canada.gif', 'apollo118@msn.com', 'http://', 'www.proclean.ca', 'here', '', 'JPG', 'approved', '35', '196', '5.6000', '0', 'yes', '11ebcdc6111da04099f68b1887cd70d8', '20050225084946', '20050730110458', '1', '7', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('465', 'simplyfine1', '0ec40af1264961c8', 'school', 'micheal scoot', 'MAN IT IS WHAT IT IS ', '18', '8', 'New York', 'United_States.gif', 'buffstate04@netscape.net', 'http://', 'ITS WHATEVER', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '00a4ba577bb5b21cc27560eeb873213f', '20050225090443', '20050301181507', '1', '0', '2005-03-01 18:15:07', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('466', 'pocket_aces', '0d2614647737be16', 'use it alot', 'Andy', 'Well im about 5\'8..140lbs..I enjoy playing poker, clubbin, motocross, shooting pool, partying/drinkin, and pretty much anything else that takes up the time. Im majoring in computer networking at school and am just about done so hurray for me :oP..Anyways, if you have any other questions feel free to hit me up. A I M= imDigitalDrew', '21', '8', 'Illinois', 'United_States.gif', 'drew@r77.net', 'http://', '\"A$$, GA$, or CA$H..no rides for free\"', 'here', '', 'JPG', 'approved', '33', '182', '5.5151', '0', 'yes', '131ec228096bc21e23c6ef7399cee64c', '20050225093605', '20050724144026', '1', '7', '2005-05-07 20:10:11', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('467', 'spudlies', '46c9ce6734ac684c', 'hockey', 'spudlies', 'Dont take life to serious, you will never get out alive', '25', '8', '', 'Canada.gif', 'spudlies@msn.com', 'http://', 'Party like a RockStar....Kick alittle ass', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd795664c21585633b626a8eda4dd4dbf', '20050225094426', '20050225094426', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('468', 'jayslevel', '2fffee1d6891c0e0', 'me', 'jayson', '5\'10 155 blue eyes and brown hair  and fit', '18', '8', 'California', 'United_States.gif', 'jaysonpim@yahoo.com', '', 'just chillin at the holidae inn', 'here', '', 'jpg', 'approved', '35', '163', '4.6571', '0', 'yes', 'b88c1f5be1d9f0b4f980bdd82ad579ef', '20050225101337', '20050721161902', '1', '1', '2005-03-11 04:02:48', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('469', 'howcrazy', '6caebe9c5af1641e', 'please', 'dave', '', '24', '8', 'Florida', 'United_States.gif', 'davenet2312@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '34', '203', '5.9705', '0', 'yes', '979b8b8723f694ed08e20339a6f9bbde', '20050225122455', '20050717215352', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('470', 'ma213802', '09694f410491804e', 'yo', '', '23 ', '20', '6', 'Pennsylvania', 'United_States.gif', 'good_iookin_guy21@yahoo.com', 'http://', 'na', 'here', '', 'jpg', 'approved', '48', '281', '5.8541', '0', 'no', '25ea3933bbbd67400fa963ff2898a210', '20050225124346', '20050730111618', '1', '1', '2005-03-24 10:29:43', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('471', 'ptballer2003', '10bdd26b407c21ec', 'bj', 'dkdk', '', '18', '8', 'Pennsylvania', 'United_States.gif', 'ptballer2003@yahoo.com', 'http://', 'lick it b4 u stick it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1ee30dee29b3c083e9967daa976603b7', '20050225130234', '20050225130234', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('472', 'DOGZROC', '21c07ef42a0c9f1d', 'dkdkdk', '', '', '18', '7', 'California', 'Sri_Lanka.gif', 'dogzroc@hotmail.com', '', 'Live Life', 'here', '', 'JPG', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c098075620ab3596fb204b40b9f9a7af', '20050225130735', '20050227020813', '1', '0', '2005-02-27 02:08:13', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('478', 'chappell73', '118bbdd55c5e3314', 'hall', 'Jonn', '', '18', '8', 'Alabama', 'United_States.gif', 'chappell1973@comcast.net', 'http://', '', 'here', '', 'jpg', 'approved', '29', '124', '4.2758', '0', 'yes', 'adbec1ce5ed26ecd560915937a05904b', '20050225160514', '20050726002158', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('473', 'thecubs12', '17eb8b5c58e585b6', 'baseball', 'cubs', 'just came to check this site out', '18', '8', 'Illinois', 'United_States.gif', 'walcrawl12@hotmail.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'd1230590ce6cef54bf2662d04eab732c', '20050225131029', '20050228130418', '1', '0', '2005-02-28 13:04:18', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('474', 'runner83', '5520d9c2561f8680', 'fav sport', 'John', '', '21', '8', '', 'United_States.gif', 'runner83tx@lycos.com', 'http://', '', 'here', '', 'jpg', 'enabled', '1', '10', '10.0000', '0', 'yes', '2c56f7aec63a1a183a224f7e1f29a09f', '20050225131541', '20050225131944', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('475', 'admin2', '273625757d111b73', 'animal', 'admin2', 'whats up', '18', '6', 'Missouri', 'United_States.gif', 'insanebink3@aol.com', '', '', 'here', '', 'jpg', 'approved', '69', '280', '4.0579', '0', 'yes', 'c84258e9c39059a89ab77d846ddab909', '20050225132520', '20050715003422', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('476', 'dallasfan88', '3b8495da7a9cceaf', 'banana', 'freak', '??', '29', '8', 'Colorado', 'United_States.gif', 'mccartht26@hotmail.com', '', 'thats goood', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '729b5401e31b5e2d3e5ea55ed6a3b14b', '20050225132541', '20050225183143', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('477', 'HotGuy99', '0202318c2839e4be', '', 'James', 'Just looking to meet some new people.', '21', '8', '', 'Canada.gif', 'creeping_death84@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '33', '179', '5.4242', '0', 'yes', 'ae624c476507ac4533fd6d8f67aa036f', '20050225142524', '20050717214400', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('479', 'Southern311', '2b993c1736aef15c', 'u know it', 'Southern311', '', '21', '8', 'Alabama', 'United_States.gif', 'spebull02@yahoo.com', 'http://', 'Send me a message.', 'here', '', 'jpg', 'approved', '43', '247', '5.7441', '0', 'yes', '7c78e4c7cc5e8554b69ce43020eb357e', '20050225170129', '20050726100053', '1', '2', '2005-02-25 19:01:06', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('480', 'Irishstud316', '7350751210e25656', 'steve', 'Chris', 'I am 6\'3 My name is Chris but everyone just calls me Murphy. laid back for the most part. I play baseball, basketball and golf. I am your typical Irishmen I like to party and have a good time. Im also damn good at making people laugh.I have more pics and a cam. send me a message on aim at mur316phy or yahoo at cjmurphy03', '26', '8', 'New Hampshire', 'United_States.gif', 'cjmurphy03@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '35', '176', '5.0285', '0', 'yes', '3f6d7b2e1121e36fd947e464ebb7ff97', '20050225170325', '20050730110238', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('481', 'Brocksteady', '0f79903a1e6c1516', 'justlikeeveryotherpassword', 'Chad', '', '23', '8', '', 'Canada.gif', 'brocksteady@hotmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '227e540b8f1f37a0b57dbf1834a562a6', '20050225173401', '20050225173401', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('482', '1wop2nv', '2c5bf74637965151', 'nickname', '1wop2nv', '', '22', '8', '', 'Canada.gif', 'raverkid6969@hotmail.com', '', '', 'here', '', 'jpg', 'approved', '31', '164', '5.2903', '0', 'yes', '2ffa93a1e6c2cc78fa37fe475f23effd', '20050225173642', '20050730110240', '1', '2', '2005-02-25 17:57:05', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('483', 'hawksrnm1', '2124e2da4423ac42', 'mom', 'Sean', 'look at me and see for yourself', '23', '8', 'Iowa', 'United_States.gif', 'hawksrnm1@aol.com', 'http://', 'easy there badass', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'dfd634f005fd8f09576d71fc97473570', '20050225173928', '20050226003714', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('485', 'liv2ryd748s', '0dd2ad4d63c7e395', 'first car', 'Hung1', '', '26', '8', 'California', 'United_States.gif', 'johnboy110418@msn.com', '', 'it will only hurt for a little bit', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '3c7461a6da2655d296cd7bae318c0300', '20050225180921', '20050302152146', '1', '0', '2005-03-02 15:20:42', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('486', 'freakdaddypimp', '3b8495da7a9cceaf', 'banana', 'dallasfan', '', '29', '8', 'Colorado', 'United_States.gif', 'mccartht26@aol.com', 'http://', 'fuck', 'here', '', 'JPG', 'approved', '34', '147', '4.3235', '0', 'yes', '736629286a52c4dd95fff3f43df1b620', '20050225184258', '20050717215339', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('487', 'KingMe69', '1d22a00d7c9066e3', 'what do i love?', 'Mike', '', '19', '8', 'Kentucky', 'United_States.gif', 'moss_1115@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '37', '207', '5.5945', '0', 'yes', 'fd17b48088c4e0da8187180817b2b117', '20050225184259', '20050730110225', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('488', 'RedsFan', '7f97eb4942875d27', 'MouseTrap', 'Evan', 'Hi, I\'m Evan and I\'m a student.', '18', '8', 'Ohio', 'United_States.gif', 'CintiRedsFan30@aol.com', 'http://', 'And This One Belongs To the Reds---Marty Brennaman', 'here', '', 'jpg', 'approved', '29', '142', '4.8965', '0', 'yes', '3ea36ba2225c4518850ac8636b167ba3', '20050225235650', '20050730110204', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('489', 'DiRtY420SoUtH', '17bbb64c534881f0', 'i dunno', 'Justin', '', '20', '8', 'Georgia', 'United_States.gif', 'pyro_fckin_maniac@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '33', '157', '4.7575', '0', 'yes', '278e2ce6885121c084b4c63e32433687', '20050226000304', '20050730110156', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('490', 'trezin2001', '2cbc3a4d4ae85602', 'mom', 'susan', '', '25', '8', 'Missouri', 'United_States.gif', 'cpierc01@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '39', '217', '5.5641', '0', 'yes', '84cde1ad329d358a644ee8a91a4bb6d4', '20050226000420', '20050726002147', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('491', 'IMSXY247', '6d8369a953851a24', 'monkeys', 'Justin', '', '18', '8', 'Texas', 'United_States.gif', 'perfect19image@aol.com', 'http://', 'dont wish just do', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '6965cb03ba7cbdbc6f60e7fc8b6f1ff9', '20050226011247', '20050226160801', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('492', 'soccernuts', '40f523ef4bd101f4', 'cowboys', 'dick', '', '43', '7', 'Pennsylvania', 'United_States.gif', 'fe6161@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '1f8974fb1d3b0207f07be04fce309ba8', '20050226060244', '20050226060244', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('493', 'absolutkos', '01ec59c95b3e03cb', 'deported', 'Demetrius', '6ft1 Very sexual. I luv four play and licking...Asss.mmmmmmm', '29', '8', '', 'Canada.gif', 'absolutkaos@sympatico.ca', 'http://', 'between to evils I will try the one I havent done before', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '84322ae8d6095154735e5350e44c9e2a', '20050226072112', '20050226093620', '1', '0', '2005-02-26 09:36:20', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('494', 'hapadude', '009094026f11b5c7', 'top row', 'c-money', '', '18', '8', 'California', 'United_States.gif', 'cnakai21@pacbell.net', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd2d5da6ecbfbc7ea60deebd5fcc3bfa6', '20050226105331', '20050226105331', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('495', 'Diesel', '1f70be403944f908', 'ace', 'Thomas Kinkade', 'Drop me a line girls...', '24', '8', 'Illinois', 'United_States.gif', 'tno85719@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '21', '112', '5.3333', '0', 'yes', '6fc795a056016eb1191a79f75069dd4d', '20050226111729', '20050730110350', '1', '2', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('496', 'billymac', '163200eb13517982', 'no', 'billy', '', '119', '8', '', 'Canada.gif', 'drdrinktoomuch@msn.com', '', 'im rick james BITCH', 'here', '', 'jpg', 'enabled', '6', '41', '6.8333', '0', 'yes', 'c808bf7f0f4e786f4441768eaaa1eeac', '20050226140237', '20050311123956', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('549', 'towerguy1976', '0c76e9096190ad11', 'walmart', 'Mike', 'good times!', '28', '8', 'Missouri', 'United_States.gif', 'towerguy1976@yahoo.com', 'http://', 'Your mom goes to college.', 'here', '', 'jpg', 'approved', '19', '93', '4.8947', '0', 'yes', '0245251f5084ec016fd698c165001df0', '20050312033133', '20050728100612', '1', '1', '2005-03-12 03:34:17', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('497', 'bigrigdriver72', '2c35d0091c1e564d', 'kiss72', 'joe1', 'just me', '18', '8', 'Illinois', 'United_States.gif', 'bigrigdriver72@aol.com', 'http://', 'wanna hook up?', 'here', '', 'jpg', 'approved', '28', '118', '4.2142', '0', 'yes', '35879a9819698ca8a4a72839061aeb2a', '20050226140434', '20050730105352', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('498', 'applewood', '049c818e3535aea1', 'boomer', 'Wills', 'not sure what this is. but i like the nam of the site!!! description of myself would be: 6\'1 190 brown hir rosey cheeks when i get hot!! hehe tan some muscle. ', '18', '8', 'Kansas', 'United_States.gif', 'willsrills4@hotmail.com', 'http://', 'i bet ou i can throw this football over that mountain!!!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd449372be448d32fcd37adfb20af39ab', '20050226144900', '20050226144900', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('499', 'Ac_6874', '6eb9806a4d91acd4', 'jo', 'austan', '', '18', '8', 'Minnesota', 'United_States.gif', 'lil_shorta65@hotmail.com', 'http://', 'it is what it is', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8f58f5aa014be73a83e4aab0f5baaa6e', '20050226164817', '20050226164817', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('500', 'Porgeeboy', '4eb788246f74db83', 'hardhouse', 'Porgee', 'Sweet, cuddly, snuggly, cute, adoring, and wild.... :)', '18', '8', 'Massachusetts', 'United_States.gif', 'malikai_wept@yahoo.com', 'http://', 'huh?', 'here', '', 'jpg', 'approved', '31', '156', '5.0322', '0', 'yes', '938251f40c6a28bcf9679f2912c39faf', '20050226175609', '20050724144304', '1', '4', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('501', 'tuanis70', '6d2d257d725a3c2f', 'wikked', 'Mike', 'Bi male, down for ANYTHING', '25', '8', 'New Jersey', 'United_States.gif', 'polytoxic@yahoo.com', '', 'wikked', 'here', '', 'jpg', 'disabled', '1', '10', '10.0000', '0', 'yes', '631003d98a4ef7a599a7ba6c2546e2a2', '20050226214619', '20050228053630', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('510', 'pdaniellance', '171f5d1d71f84332', 'to the', 'danny', 'fun loving talented lover very open minded. loves to lick to orgasms', '32', '8', 'California', 'United_States.gif', 'pdaniellance@yahoo.com', 'http://', 'nice', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6e5e6955e89954501ac743a34a1578e1', '20050228065559', '20050228065559', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('502', 'letsplay', '6303656872e45303', 'army', 'Vincenzo', '', '47', '8', 'Missouri', 'United_States.gif', 'bushmaster55_98@yahoo.com', 'http://', 'try it you might like it', 'here', '', 'JPG', 'approved', '28', '124', '4.4285', '0', 'yes', 'c4cbf6c9371a6e0232632aae111e6b60', '20050226215529', '20050730110218', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('503', 'driver', '3686e3643fb525d7', 'sexy girl u met online', 'Daniel', '5\'9\" green eyes avg body black hair a marine very nice love too talk online and on the phone', '27', '8', 'West Virginia', 'United_States.gif', 'driverofgods@yahoo.com', 'http://', 'drive it like u f#ck it', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e2d45d57c7e2941b65c6ccd64af4223e', '20050227030006', '20050228155752', '1', '0', '2005-02-28 15:57:52', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('504', 'carhole', '4c5d09802752e162', 's.s.', 'Carl', '', '22', '8', 'New York', 'United_States.gif', 'carholecarl@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '24', '119', '4.9583', '0', 'yes', '92cfad8338e14795ebf03b50a9e2e5fe', '20050227093237', '20050731092314', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('505', 'elchicagodude', '65e3fb0d40a6ddc7', 'que me gusta', 'pussy', 'I like to have fun and I am very open minded yet very safe, i love all that gives me pleasure', '31', '8', 'Illinois', 'United_States.gif', 'me_xicano@yahoo.com', 'http://', 'You have to lick it before you stick it!!', 'here', '', 'jpg', 'approved', '31', '162', '5.2258', '0', 'yes', '760b6e20f0fd91d7bda3b955395e0b3e', '20050227164925', '20050717214539', '1', '1', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('506', 'XxKinaxX', '2fffee1d6891c0e0', 'mom', 'jay', 'im logan im just trying to meet new peeps and if u like cool whip then u are a freak in bed and i like that ha ha ha i like to play guitar and race my car peace', '21', '6', 'California', 'United_States.gif', 'jaysonpim@yahoo.com', '', 'me first :)', 'here', '', 'jpg', 'approved', '60', '378', '6.3000', '0', 'no', '31380eb8daab7095e3e085e8f4b81b07', '20050227193617', '20050731092225', '1', '1', '2005-02-28 09:21:01', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('507', 'cameleon', '0305264c603247e3', 'yes', 'Timmy', '', '20', '8', 'Missouri', 'United_States.gif', 'Luceeds03@yahoo.com', 'http://', '\"what are you fucking gay?\"', 'here', '', 'JPG', 'disabled', '1', '10', '10.0000', '0', 'yes', '1a81e830eeb825012ce82344b758d629', '20050227202901', '20050227222024', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('508', 'UNFORGETABLE', '6df6c9555931c467', 'you know', 'UNFORGETABLE', 'US Marine who likes to have fun.', '21', '8', 'Florida', 'United_States.gif', 'marineluvscane@yahoo.com', 'http://', 'You can;t forget the UNFORGETABLE', 'here', '', 'jpg', 'approved', '26', '137', '5.2692', '0', 'yes', 'ffcf2a98d50a121f79397d4be38a0ed8', '20050227231841', '20050728100521', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('509', 'polytoxic', '6d2d257d725a3c2f', 'wikked', 'Michael', '', '24', '8', 'New Jersey', 'United_States.gif', 'polytoxic@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '459446ace8d0852eb34904d60169df92', '20050228002049', '20050228002049', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('511', 'logansmith', '13c9fe6b2bd201c0', 'mom', 'logan', 'im logan im fun and like cool whip ha ha ha anyways im a race car driver and play guitar  get ahold of me and u must be a funny girl to i love sense of humor', '21', '8', 'Michigan', 'United_States.gif', 'joeyisthegame@yahoo.com', 'http://', 'me first lol', 'here', '', 'jpg', 'approved', '24', '145', '6.0416', '0', 'yes', '0e0b55b163f17b2c88842f01f5fbf86c', '20050228181426', '20050724041740', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('512', 'FunGuy995', '241f6d2a63e0d540', 'What is it always', 'NiceGuy', '', '27', '7', 'California', 'United_States.gif', 'schneckkr@yahoo.com', 'http://', 'Carpe Diem', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4df51b126752bd4550ea89cfc7d8b2a5', '20050301034259', '20050301034259', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('513', 'poolgod21', '361faba3350d26b4', 'Pulzones', 'Jake', '', '28', '8', 'Maryland', 'United_States.gif', 'jakeschutz@hotmail.com', 'http://', 'You are so money baby', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '90e52cd8d9e94f42ba0524bbd6e9bb9c', '20050301144214', '20050610130001', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('514', 'helmutld50', '14c639057b787d3f', 'what time do i like?', 'Timothy', 'Tattooed, pierced, intillectual, and recently returned college student.  ', '26', '8', 'Illinois', 'United_States.gif', 'close2nsane@yahoo.com', '', 'Im Rick James Bioooootch!', 'here', '', 'jpg', 'approved', '28', '158', '5.6428', '0', 'yes', '7a0e11d9e6b40f4f5146a9e5718561e7', '20050302003449', '20050717214825', '1', '1', '2005-06-22 12:51:36', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('515', 'pakalolo56', '51a71aa84f5e79ad', 'letter', 'christian', 'just tryinbg something new', '20', '8', 'Missouri', 'United_States.gif', 'cwilson5656@yahoo.com', 'http://', 'do not miss today becuase it wont be here tomarrow', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '86b3c42e53559056ac6e2d7d39d2dc47', '20050302183820', '20050302183820', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('516', 'chgocpl', '5e318c4248591b3e', 'workatit', 'curious cpl', 'f48 4 11 175  38ds reddish bld hr  m50 5 10 185 ', '49', '7', 'Illinois', 'United_States.gif', 'sdragonhall@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '733b57f4179e4a7cdc14f908f55bb0dc', '20050302220014', '20050302220014', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('517', 'caratay', '63a58de1428be20a', 'whisters', 'Cara_Tay', 'sexual couple, western canada, love camping', '37', '7', '', 'Canada.gif', 'caralee_tay@yahoo.ca', 'http://', 'sodas?', 'here', '', 'jpg', 'disabled', '1', '10', '10.0000', '0', 'yes', '94ee221e3f52122943da9a9034989aa7', '20050303223345', '20050317222745', '1', '2', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('518', 'bombkamp', '3b9c707b62719f36', 'che', 'Daniel', 'buddhist, artist, political\r\n\r\n<a href=\"http://www.cafepress.com/bombkamp,bombkamp2,bombkamp3\">Website</a>', '20', '8', 'Wisconsin', 'United_States.gif', 'dmwsofgod@yahoo.com', 'http://', 'none', 'here', '', 'JPG', 'approved', '33', '169', '5.1212', '0', 'yes', '657dd56700ef32cf4c5aabbed476e225', '20050304045250', '20050718215650', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('519', 'bennymartinez', '55c105342bb107bb', 'Wrestling God', 'Benny Martinez', 'I rule.', '19', '8', 'Missouri', 'United_States.gif', 'ravensfan928@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'cc15e14508b96af472c22065a182eeee', '20050304140445', '20050304140445', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('520', 'damnCityGuy', '66144d9d1e84cb36', 'photo', 'Danny', 'Fun loving guy who is up for anything', '22', '8', 'New York', 'United_States.gif', 'dj_mcg@hotmail.com', 'http://', 'Daaaam!!', 'here', '', 'jpg', 'enabled', '1', '10', '10.0000', '0', 'yes', '95ebe2ca95bc974df62b0c442cdc585c', '20050304151603', '20050304151923', '1', '0', '2005-03-04 15:19:15', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('521', 'blasterncurves', '674596d758e1c51e', 'a shot', 'blasterncurves', 'Easy-going couple looking for other couples like us. Love to meet people, couples exclusively, that have real personalities that love to laugh and enjoy each others company.', '28', '7', 'Illinois', 'United_States.gif', 'blasterncurves@yahoo.com', '', 'Bring it!', 'here', '', 'jpg', 'approved', '61', '400', '6.5573', '1', 'yes', 'b988f28d1f8e44512821dafdb8f6134a', '20050305142527', '20050730110711', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('522', 'dezzie7', '0d37a5aa7ee95d9e', 'work', 'clare', '', '47', '6', 'Illinois', 'United_States.gif', 'dezzie7@aol.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5e22a63ad1ef5ecbd729c47256ac3b61', '20050307070939', '20050307070939', '1', '0', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('523', 'flabby', '5b1f45a15ffba744', 'dominic', 'blargin', 'apples are tasty', '25', '8', 'Missouri', 'United_States.gif', 'smsuphish@yahoo.com', 'http://', 'snarf!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '704fd973f1b1388b2e53f7bbef5ab1ea', '20050307114140', '20050307114140', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('524', 'crystal', '0c4054b563ad6313', 'dustin', 'crystal', '', '24', '6', 'Texas', 'United_States.gif', 'hartman_050903@yahoo.com', '', '', 'here', '', 'jpg', 'approved', '81', '554', '6.8395', '0', 'yes', 'cc989606b586f33918fe0552dec367c8', '20050307124132', '20050730131637', '1', '1', '2005-06-25 19:44:15', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('550', '2facegemini', '0741725a6d6212a0', 'oliver', 'marcella', '', '18', '6', 'Texas', 'United_States.gif', 'blujuly7@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'ec650d9da15e08854bb91640eeae9c7b', '20050314145858', '20050317222639', '1', '0', '2005-03-14 15:14:52', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('525', 'mcbretto', '7b3355f152b81600', 'sameas', 'Brett Mc', '', '36', '8', 'Missouri', 'United_States.gif', 'bretto76@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '3b7c6d2a814e23369f731e6930d8eaa3', '20050308162357', '20050317222732', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('526', 'curved7inch', '6e7e025f6ab811e6', 'cock', 'curved7inch', 'Can hit all the right spots!', '38', '8', 'Florida', 'United_States.gif', 'curved7inch@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '28', '169', '6.0357', '0', 'yes', '592ee19d809bf9c1a920a9507fcf7df0', '20050308163224', '20050702160201', '1', '1', '2005-03-08 16:48:54', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('527', 'powell1212', '7bf04a5340a6876e', 'love ya', 'matt', 'love to party and have hot sex all day and night.you cum or me dosent matter as long as we all get off', '23', '8', 'California', 'United_States.gif', 'trttnmtt@yahoo.com', 'http://', 'if you lick it it will cum', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '7b86d7b76ec3f8311cc681e52d73d9ef', '20050308165228', '20050317222721', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('528', 'Drtywrtr', '78d5c9fd4c6ae1e7', 'Team', 'Eric', '', '18', '8', 'California', 'United_States.gif', 'Espinlbc@hotmial.com', 'http://', 'Dance like there is no one else around', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '40a46c1aba7238f0431a5bdb60385fb1', '20050308165434', '20050308165434', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('529', 'Slygrin', '78d5c9fd4c6ae1e7', 'team', 'Eric', 'Just me being bad', '43', '8', 'California', 'United_States.gif', 'Espinlbc@hotmail.com', '', '', 'here', '', 'JPG', 'approved', '26', '132', '5.0769', '0', 'yes', '42a662ba42f269c46633cd86d17d8f04', '20050308165748', '20050721150859', '1', '1', '2005-06-04 09:29:50', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('537', 'nil_von_9wo', '6af1abfa58f4d047', 'what are you doing?', 'Brian', 'Ancient wisdom teachs that knowledge is an illusion. I\'ve \"known\" many for years, decades, only to find them stangers. Then I\'ll meet you and look into your eyes and \"know\" that I have \"known\" you for centuries. We have no need for facts, merely truths. The heart speaks volumes while the mind utters mere non-sense trying to sound impressive. What would you know of me? That I\'m a rich man without money? That I\'m free without being independant? That I\'m a nocturn that loves the sun? A libertarian and a fascist? An aetheist with many gods? That I\'ll support both the cause of chaos and order? That I spend every second living and dying? That I live in the crossroads of Heaven and Hell? I spend my life alone in a crowd and with abundant company when on my own? Paradox after paradox it might seem... that\'s where knowledge gets you. Every one of these statements and so much more is true for I have ever been a paradox without contradiction. Now I seek a key to open a door that isn\'t locked, to free a bird that has already flown... It\'s a key I\'ll never have but never be without... it\'s such an obvious thing despite it\'s clever hiding space. These are the things you should know. Or maybe not... maybe you should never know these things... can you bear to know them? Can you live in a universe where these things can be true and still make sense? Perhaps it is better if you know merely my heart, that it is so ready to love when I find a woman ready to accept that love. Perhaps you should merely know my mind, full of patience and understanding, ready to aid you on a spiritual quest even as you aid me on my own. There is so much to know... and it is ultimately so much of nothing. Make of it what you will... These are only so many words and as much as I enjoy words, they are nothing but a means for deception and miscommunication. The heart sounds nothing but a quiet beating and that says it all. Listen to my heart and I shall listen to yours. That is all I ask for, all I want, all I need. \r\n\r\nI enjoy making love to wonderful women and occasionally merely having sex with those who are merely beautiful; it is always best when I can combine the two. ;) I also enjoy philosophy, politics, history, psychology, sociology, religion, mythology, and any subject I can sink my teeth into for a good debate. I enjoy being disagreeable, but it should never be taken too seriously nor personally. I enjoy playing games, especially those that can really make you feel involved and/or challenge your mind. I enjoy writing about anything and everything and reading about almost as much. I enjoy drawing designs and occasionally cartoons. I enjoy designing and wearing clothing that looks appropriate to \"The Road Warrior\" and similar movies. I enjoy a movie or film with a good plot, good casting, and good director. I enjoy a dry, dark, and/or sarcastic sense of humour. I enjoy eating spicy foods and drinking a woman\'s nectar, preferably from the source. I enjoy travelling: seeing new places and meeting new people. I enjoy doing things I have never done before. I enjoy long walks and long drives. I enjoy various types of music. I enjoy the moon at night and the sun in the day. I enjoy listening to drum circles. I enjoy the company of lunatics and freaks. I enjoy a day in Washington Square, Thompson Square, or Central Park. I enjoy museums of art, history, nature. I enjoy lending my ears to whomever needs them. I enjoy lending advice even to those who will never take it. I enjoy looking at women, especially those with a full figure and a nice face. I enjoy getting lost in my thoughts or lost on the road. I enjoy everything so long as there is something to enjoy and when there is nothing, I can enjoy that too. I enjoy theatre and live performances. I enjoy Life, Love, Liberty, and EnLightenment in whatever degrees I may obtain these unobtainable things. I enjoy sharing my experiences and hearing the experiences of others. I enjoy knowning that those I love and care about are happy. I enjoy making music though I have neither skill nor talent at it. Same will billiards and darts. I enjoy both hearing and telling truth to the point where many would complain \"that\'s too much information\". I enjoy hearing lies just to see how ridiculous people can be. I enjoy carving my own path in life. I enjoy knowing that death no longer scares me even though I have no wish to die. I enjoy knowing that I have no idea where tomorrow might take me and I make no effort to find that out. Any suprize which does not kill me makes me happy.\r\n\r\nMy highest ambition in Life is merely to Love and to be Loved. It is not that I have no other goals, but rather that I perceive all other aspirations as being significantly lower. Without Love, there is... ...Nothing at all.\r\n \r\nWho I\'d like to meet:\r\n\r\nSomeone who can inspire artistically.\r\n\r\nSomeone challenge me intellectually.\r\n\r\nSomeone to love.\r\n\r\nSomeone to lust for.\r\n\r\nSomeone who will requite such affections.\r\n\r\nSomeone to make me feel vital (in more ways than one).\r\n\r\nI am looking to make new friends and acquaintences here, before I shoot of for parts yet to be determined. If a bond is formed so strong as that I might stay, well, so much the better. \r\n\r\nI\'m an adventurous sort, so my definition of activity is fairly broad and open minded. However, not being inclined towards decadence and falling squarely within Plato\'s \"most unfortunate class\", it does have limitations. But those are things we can discuss. \r\n\r\nMostly, I am looking for someone to inspire me. As an artist, I\'ll work with most any medium: drawing, writing, music -- just give me a muse. (Allow me to say I consider making Love the highest art, but few women can inspire me such.) \r\n \r\n', '31', '8', 'New Jersey', 'United_States.gif', 'BrianKessler@postmark.net', 'http://', 'My highest ambition in Life is to Love and to be Loved.  Its not that I have no other goals, but rather that I find all other aspirations to be significantly lower.  Without Love . . .  . . . There is Nothing-at-All.', 'here', '', 'jpg', 'approved', '19', '114', '6.0000', '0', 'yes', '4c0c62b38c2ab705869a6fdbb4836d12', '20050308181512', '20050717214812', '1', '3', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('530', 'wmn4me', '0afe34ac4c5ba82b', 'WHat is word?', 'James Johanson', 'I seek big, curvy, uninhibited, Chicago women ages 25-45 for casual sex. I am married, but need discreet secret \"fun\" on the side. Bigger and older anal women preferred. Bigger tits and bigger asses, too. Include a good time when we can chat on-line. I give mind-blowing oral. Pics? Show me yours and I\'ll show you mine. I am also interested in discreet phone sex with BBW anywhere in the US. I have a good cell-phone plan, and calling cards. U dig? ', '18', '8', 'Illinois', 'United_States.gif', 'djt19752003@yahoo.com', 'http://', '', 'here', '', 'JPG', 'approved', '23', '126', '5.4782', '0', 'yes', '34f3a55c35b857527f61524c81806950', '20050308170539', '20050730111146', '1', '1', '2005-03-09 16:31:58', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('531', 'kuppl', '248f525c0cf78526', 'truck', 'jojan', 'more to trade with other couples', '42', '7', 'Michigan', 'United_States.gif', 'beechkuppl@yahoo.com', 'http://', 'honey do, honey come and do me again', 'here', '', 'JPG', 'approved', '52', '338', '6.5000', '0', 'yes', '89fed252aac37417bb87f171266248b3', '20050308170952', '20050730111012', '1', '1', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('532', 'bigerdog2', '35172fc773952526', 'ball', 'joe k', 'fun cpl new at this', '38', '7', 'Pennsylvania', 'United_States.gif', 'joekcal@yahoo.com', 'http://', 'have fun', 'here', '', 'jpg', 'approved', '52', '350', '6.7307', '0', 'yes', 'e5271052325492318f94f7ee85aa4865', '20050308170953', '20050730105439', '1', '1', '2005-07-20 11:20:13', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('533', 'chuckychuck', '0bdd34fc5256e701', 'your old code', 'charlie', '5 11 hispanic atletic tone hazel eyes black hair  ', '20', '8', 'California', 'United_States.gif', 'chuckychuck84@msn.com', 'http://', '', 'here', '', 'bmp', 'disabled', '1', '10', '10.0000', '0', 'yes', '668fcead58ebcb16e61584f68e92b2f1', '20050308173928', '20050317222716', '1', '3', '0000-00-00 00:00:00', '2');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('534', 'deejay', '4b5698aa4603595b', 'same as before', 'Jason', 'We are new to this site but, actively on the prowl.', '18', '7', 'Florida', 'United_States.gif', 'jaydee0642@yahoo.com', 'http://', 'It is all good!', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b2371f69ae0f0fb13ba5ec44eb34a0fa', '20050308174510', '20050308174510', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('535', 'capamazing', '1cfb3437751e50a1', 'same', 'Captain Amazing', 'I\'m very sexy and have  a great personality.  I have a very nicel toned body (that\'s right, I work out) green eyes, buzzed brown hair, and a good size where it counts ladies.  Most of all though, I\'m fun to be around.', '27', '8', 'Nevada', 'United_States.gif', 'nickday21@hotmail.com', '', 'You would!', 'here', '', 'jpg', 'approved', '21', '123', '5.8571', '0', 'yes', '23f74c20d6a5d33fe9b496d813e5232a', '20050308175336', '20050730105451', '1', '1', '2005-07-25 11:16:38', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('536', 'romeomailer', '3193dbb34a147624', 'What is My name?', 'eric', '', '24', '8', 'California', 'United_States.gif', 'romeomailer@yahoo.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '280ff329834878c89e90b587ccafac18', '20050308175558', '20050309111656', '1', '0', '2005-03-09 11:16:56', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('538', 'k_b217', '6ad20e4906c516bc', 'doggy', 'kenny', 'fun and outgoing like to party', '18', '8', 'Indiana', 'United_States.gif', 'k_b217@yahoo.com', '', 'i yam what i yam-popeye', 'here', '', 'jpg', 'approved', '30', '160', '5.3333', '0', 'yes', 'bbe6807e2c7dc586f4a9f7d9b801cc5d', '20050308184230', '20050731092252', '1', '1', '2005-03-08 18:52:24', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('539', 'lennybenassi', '0a3d070d24371b4d', 'this shit will fuck you up', 'lenny', '', '21', '8', 'California', 'United_States.gif', 'lennybenassi@onecooldude.com', 'http://', 'this shit will fuck you up', 'there', '', '', 'enabled', '2', '19', '9.5000', '0', 'yes', '821c918e6332b23dccd42e9589e628f3', '20050308193013', '20050503172629', '1', '0', '2005-04-20 22:10:10', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('540', 'brandon2000', '3fe414ae59b7a740', '', 'brandon', 'work like you don\'t need the money, dance like nobody\'s watching,and love like you\'ve never been hurt', '18', '8', '', 'United_States.gif', 'cblaskoski@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '23', '114', '4.9565', '0', 'yes', 'f4c614b9563dd25398fc21339522d9ab', '20050308193102', '20050728133722', '1', '1', '2005-03-09 14:34:29', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('542', 'offenzmn02', '363f268124e8d507', 'summer house', 'Joshua', 'Nice guy looking for a fun time.', '18', '8', 'New Jersey', 'United_States.gif', 'offenzmn02@optonline.net', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'c2fc468cfece4dda16e0ffb204f2b70c', '20050309002442', '20050317222659', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('543', 'sic9886', '02fcb9b54e32be5c', 'number what?', 'Steve', '', '21', '8', 'Michigan', 'United_States.gif', 'bizkit2002@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '21', '89', '4.2380', '0', 'yes', '5d9135573cafd2513dafbe44342bf848', '20050309033356', '20050730110343', '1', '1', '2005-07-19 14:49:43', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('544', 'sweetpeajlf', '529b7d2f49f9cd6f', 'kid', 'jleigh', 'fun down to earth girl from the country loves to party and spend time with my faimly', '35', '6', 'Missouri', 'United_States.gif', 'sweetpeajlf@yahoo.com', 'http://', 'live and let live', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '4f81ce259f47e46d6def118bed71e66c', '20050309100909', '20050317222654', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('545', 'psugirl', '036cb0591d89da51', 'drivers license', 'kirby', '', '20', '6', 'Missouri', 'United_States.gif', 'k_hough_03@hotmail.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'd609d4c9fedb229c57e9116e99f1e980', '20050309124751', '20050317222647', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('546', 'tool123555', '7d62a6433e2d49bf', '', 'jack', '', '18', '8', 'California', 'United_States.gif', 'tool123555@aol.com', 'http://', 'I just slure words', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4df16058d83cbbbb9a7855a2a4507dd9', '20050309171032', '20050309171032', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('558', 'xxStarBurstXX', '1cacd7460f0f4ff0', 'jules', 'Starr', '', '20', '6', 'kansas', 'United_States.gif', 'misslizzy703@aol.com', 'http://', '', 'here', '', 'jpg', 'approved', '49', '327', '6.6734', '0', 'yes', '1f3aa7aec2ab0301a1c47c5f8e61ee3f', '20050322035544', '20050730110935', '1', '2', '2005-04-06 21:09:13', '19840703');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('548', 'ubu4me', '77640c5c09b45f03', 'dogs', 'lisa', 'We are a layed back couple,very much in tune with each other.Not a need for this Life style,just checking out the waters.', '45', '7', 'New York', 'United_States.gif', 'cecelimos@aol.com', 'http://', 'If you cant run with the big dogs stay on the porch..', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '06a37db343d2923eb358a00d60884514', '20050311123545', '20050311123545', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('551', 'chuckyray', '7eeec4eb6fcca5e7', 'work', 'ChevyMan', '', '36', '8', 'Missouri', 'United_States.gif', 'chevyman@fidmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8280190114f82f471268a5b553f135a5', '20050316174821', '20050316174821', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('552', 'CumNPlayN573', '6c84463771cf1f97', 'skylar', 'Dustin', '', '18', '8', 'Missouri', 'United_States.gif', 'xsentrikal@gmail.com', 'http://', '', 'there', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'f0d3fe1cf9ebfcf4c6e7836d698f58c5', '20050317114832', '20050317114832', '1', '0', '0000-00-00 00:00:00', '1');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('553', 'brooklyn00', '3bdafa7937cab984', 'email', 'Jessie', 'six foot tall one ince and many more inches to show', '23', '7', '', 'United_States.gif', 'brooklynbrawler87@yahoo.com', 'http://', 'Love me and leave me?', 'here', '', '', 'approved', '16', '100', '6.2500', '0', 'yes', 'c578c5aeb2f77ce5773c0d43d87c2d52', '20050318071841', '20050715003413', '1', '0', '2005-03-18 07:33:24', '19810821');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('555', 'tenduramax2', '662be4d749b44b37', 'yes', 'Shannon', 'Talk to all you ladies soon', '26', '8', 'Fayetteville, NC', 'United_States.gif', 'tenduramax2@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '23', '133', '5.7826', '0', 'yes', 'ef3c2385a2a0aacab8398200079a41f6', '20050319184502', '20050717215231', '1', '1', '2005-05-12 23:34:10', '19781201');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('556', 'devilstate', '5113f2bd01165347', 'icp', 'Keifer', '', '24', '8', 'Michigan', 'United_States.gif', 'devilstate666_420@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '706b3282d156856f1b812acbbf0a1507', '20050320004926', '20050320004926', '1', '0', '2005-03-20 00:49:26', '19780910');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('557', 'Dashell', '02153a287506c147', 'presley', 'dashell', 'Hot swinging couple', '33', '6', 'Columbus/OH', 'United_States.gif', 'dblaschka@wideopenwest.com', 'http://', 'Hooker', 'here', '', 'jpg', 'approved', '50', '319', '6.3800', '0', 'yes', '10368c5ea0c40cb888a8a30fca40cc16', '20050320172009', '20050730111204', '1', '2', '2005-04-30 07:44:04', '19700906');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('559', 'safenfun', '5cca7278475e1c9f', 'how  R  U  ?', 'subhash', 'able bold  charming  discreet....................Zestful.', '50', '8', 'bombay', 'India.gif', 'subhashbapat702@hotmail.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'aa2e7a7e4939a393bcea7b1ceba6be3e', '20050322223243', '20050323235837', '1', '0', '2005-03-23 23:58:37', '19520610');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('560', 'JDaddie', '5f99530717d1eb42', 'my car', 'Josh', '', '27', '8', 'elkhart/In', 'United_States.gif', 'undadawg420@aol.com', 'http://', '', 'here', '', '', 'approved', '19', '133', '7.0000', '0', 'yes', 'e9541d23f190a034bfba8cab9e093ed2', '20050324184812', '20050730110228', '1', '0', '2005-03-24 18:48:12', '19780106');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('561', 'LeetBrad', '017a23c353424785', 'not for you', 'brad', 'blonde , 6 foot , average in body type , blue eyes', '20', '8', 'great falls', 'United_States.gif', 'seksybrad@gmail.com', 'http://', 'brad is leet', 'here', '', 'jpg', 'approved', '22', '113', '5.1363', '0', 'yes', '7cead8fde4abd0945aa90b053e4ec829', '20050325013902', '20050730105431', '1', '3', '2005-03-25 01:39:02', '19841030');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('562', 'THEONE', '2440413711948921', 'dog', 'Joseph', '', '25', '8', 'Missouri', 'United_States.gif', 'theone669@hotmail.com', 'http://', 'The world is mine', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd6a8812c7f98404ea41d174feebfbe97', '20050325221655', '20050325222327', '1', '0', '2005-03-25 22:19:58', '19791122');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('563', 'swinging_8420', '1c08dddd42269188', 'dogs name', 'phoebe', 'we are a couple looking to meet new friends ', '26', '6', '', 'United_States.gif', 'swinging_8420@yahoo.co', 'http://', 'cum play with us', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ae96dcbe1e41d528b9828228778a6200', '20050326184901', '20050326185515', '1', '0', '2005-03-26 18:50:09', '19780808');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('564', 'TenderDon', '4c970a3a4621743c', 'whoami', 'Donald', 'Tall Dark and Handsome (or so I have been told) ', '43', '8', 'La Mesa', 'United_States.gif', 'donstinnett@hotmail.com', 'http://', 'time tells all', 'here', '', 'jpg', 'approved', '20', '93', '4.6500', '0', 'yes', '46b4fb1b5fe5c92af9297d14937b8de3', '20050327011655', '20050717215028', '1', '1', '2005-03-27 01:16:55', '19610724');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('565', 'Mrgiving', '2328f9384ae96b7d', 'car', 'del', 'Extremely fit, fun, and LARGE guy looking to make friends and have some fun!', '34', '8', '', 'United_States.gif', 'dangeranger3@hotmail.com', 'http://', '', 'here', '', 'JPG', 'approved', '17', '91', '5.3529', '1', 'yes', '2ac4e80ded61f7b5d7e179a8fbd9aa40', '20050329160622', '20050730110509', '1', '1', '2005-04-20 20:08:04', '19701126');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('566', 'irishboyxxx', '1f8962cd614752d8', 'name', 'killian', 'luvs drinking clubbing and hot females!!', '18', '8', 'Newry city', 'Ireland.gif', 'irishboyxxx@yahoo.com', 'http://', '\'suck my dick\'', 'here', '', 'JPG', 'approved', '21', '93', '4.4285', '0', 'yes', 'b9b409db40183c9810cbd49537e06391', '20050330175607', '20050731160703', '1', '1', '2005-03-31 09:35:55', '19860411');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('567', 'FLAswing4U', '5c848e4969d67021', 'favorite pet', 'sillydawg', 'attractive in shape \r\n5` 8\"\r\nsize 8\"', '41', '8', 'florida', 'United_States.gif', 'flatinman41@aol.com', 'http://', 'lick it before stick it', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '38ea0d4c09e17a4449c0aa2380ba866e', '20050402063820', '20050405152742', '1', '0', '2005-04-05 15:27:42', '19650620');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('568', 'funcpl317', '76256e706ebd8e7e', 'usally', 'Julie', 'fun loving couple who enjoys life.  We enjoy dinners, drinks with friends and adult good times', '31', '7', 'Indiana', 'United_States.gif', 'juliemil@yahoo.com', 'http://', 'have fun while you can', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'b98d1a11241cc767c36857ad12943597', '20050402112913', '20050404134450', '1', '0', '2005-04-04 13:44:50', '19730614');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('569', 'tazman197816', '4448dd9a39ab97e1', 'fave number', 'richard', '', '26', '8', 'ontario', 'Canada.gif', 'r_winstanley2002@msn.com', 'http://', 'live life to the fullest', 'here', '', 'bmp', 'approved', '11', '34', '3.0909', '0', 'yes', 'd65ce4fc3d4189257a0bca823a2832a7', '20050403234110', '20050620231024', '1', '1', '2005-04-03 23:41:10', '19781216');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('570', 'Jillian1708', '55548f7b762e8fc8', 'What am I?', 'Jill', 'Young curious female into role-play.  You will have to ask for the rest.', '18', '6', 'Johnstown/ PA', 'United_States.gif', 'jillian1708@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '31', '192', '6.1935', '0', 'yes', '5b84990dc5e3e63ff1b62d11fc5ec4ef', '20050404221532', '20050730110446', '1', '1', '2005-04-04 22:16:34', '19870514');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('571', 'evilkitty', '48c3b97c18346595', 'same', 'Lidia', '', '26', '7', 'Chicago, IL', 'United_States.gif', 'evilkitty666@mac.com', 'http://', 'sharing is fun', 'here', '', 'jpg', 'approved', '32', '177', '5.5312', '0', 'yes', 'd1717732b8ee68836eecbe9ea5a67e47', '20050407223551', '20050730110347', '1', '1', '2005-04-08 17:30:54', '19790911');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('572', 'times24now', '221f244861e476d0', 'dog name', 'Alan and MJ', '', '44', '7', '', 'United_States.gif', 'times24now@aol.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4fba4be0f9f8928e56ca017ac038e49f', '20050409163050', '20050409163203', '1', '0', '2005-04-09 16:32:03', '19691231');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('573', 'shorty_fats', '1439cbbc72b32f7e', 'wife', 'Lance', '', '25', '8', 'Nevada', 'United_States.gif', 'grnd_pnd79@hotmail.com', 'http://', 'FTW', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd6ead08696d9094f9398cb101b3dbce5', '20050412063416', '20050424042340', '1', '0', '2005-04-24 04:23:40', '19791211');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('574', 'rog4540', '403b05c418b76255', 'me an bee', 'roganddel', 'married 13 years just looking to step into another level of excitement.', '35', '7', 'grand rapids', 'United_States.gif', 'roger1611@netzero.net', 'http://', 'get er done', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '7ba9139e1845ec220dbf8a2d01382b13', '20050413221104', '20050423175451', '1', '0', '2005-04-23 17:54:51', '19700728');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('575', 'Supersloth03', '35e5b11b0d882803', 'young', 'Nick', 'hmmmm what to say to make me sound interesting...... I can do all the right things and I can cook one hell of a dinner ^_^', '20', '8', 'Columbia/MO', 'United_States.gif', 'Tokentaker83@yahoo.com', 'http://', '\"Sometimes the world makes me feel dead inside\" - Trent Reznor, NIN', 'here', '', 'jpg', 'approved', '17', '65', '3.8235', '0', 'yes', 'c3ccea556cd4828d5610d38a5396ceae', '20050414001128', '20050717214920', '1', '4', '2005-04-14 00:12:17', '19850114');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('576', 'gregrun', '01dffe887bc9cd17', 'quxfatfo', 'Gregory', '', '18', '8', 'Illinois', 'United_States.gif', 'gcr_triple7@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'bea5cca51bf83009827fa5d026acb1f4', '20050414055526', '20050414055706', '1', '0', '2005-04-14 05:55:43', '19821011');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('577', 'vally78', '0f32a5ae6e6583e3', 'elmo', 'Val&Randy', '27 yo couple in NW IL', '27', '7', 'NW IL', 'United_States.gif', 'vally78@yahoo.com', 'http://', '', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', 'e3a693120098f34fbfa798158cc44812', '20050418192134', '20050610083830', '1', '0', '2005-04-18 19:21:34', '19780206');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('578', 'echosrainbow', '762a58f029806cfc', 'stage name', 'Dawn', 'In a long term relationship with best friend and roomate Joan. We are both Bi and have enjoyed the swingers lifestyle since 1997.  We are in the Lansing MI area.', '48', '6', 'Michigan', 'United_States.gif', 'echosrainbow@yahoo.com', 'http://', 'Do: Do not do. There is no try.', 'here', '', 'JPG', 'approved', '21', '148', '7.0476', '0', 'yes', '8c556ea8c1754330b03c73b184d76140', '20050420185539', '20050731092215', '1', '1', '2005-07-21 18:47:26', '19570207');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('579', 'aafrican', '665c5db46fdcc37d', 'gospel group', 'philip', 'eduacted, open minded, willing to explore,erotic.With an tradition African feeling.', '24', '8', 'Orlando,FL', 'United_States.gif', 'proy02909@yahoo.com', 'http://', 'A man is what he makes himseelf out to be.', 'here', '', 'jpg', 'approved', '3', '23', '7.6666', '0', 'yes', '0e9543762a44915b1b7922238fa39bb3', '20050421023749', '20050717214833', '1', '3', '2005-04-21 02:37:49', '19800623');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('580', 'ocsocal2000', '68f74962181cd303', 'dog', 'louie the wrench', 'Hispanic male who loves to party for days', '42', '8', 'LaHabra', 'United_States.gif', 'louaguilar1@msn.com', 'http://', 'Enjoy the moment', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '141fb7913d3dba85a5c9f5454ec3a050', '20050421210115', '20050421210115', '1', '0', '2005-04-21 21:01:15', '19630412');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('581', 'sluu', '49c89d5b310ae254', 'lucas', 'robby', '', '39', '8', 'omaha,nebraska', 'United_States.gif', 'rxmca1@hotmail.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '045fe39470a7c9f7c198bc03db14c101', '20050422131637', '20050422131712', '1', '0', '2005-04-22 13:17:12', '19650802');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('582', 'fireball1', '694175f46d72b5b7', 'leo', 'michelle and m', 'se michigan cple, bi, looking for same', '34', '7', 'jackson, mi', 'United_States.gif', 'mjmath35@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'ba1b49a558041efd8713754473ee3287', '20050422233108', '20050422233148', '1', '0', '2005-04-22 23:31:48', '19710101');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('585', 'cstarkg11', '3f37dc613b4a544d', 'work id', 'Marie', '', '35', '7', '', 'United_States.gif', 'eday4him@yahoo.com', 'http://', '', 'here', '', 'JPG', 'approved', '11', '58', '5.2727', '0', 'yes', '32a163b0663ccaf31b53e8fbee64d910', '20050428215140', '20050730110148', '1', '1', '2005-04-30 07:54:03', '19690901');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('586', 'Willing', '72359b311c32d163', '', 'Mjbfd', 'Just a normal, happy person who takes most people and situations as they come without making judgements. Recently divorced and ready to explore.', '18', '8', 'Kansas City', 'United_States.gif', 'ima_ludite2@Yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '49fd5590bd5ff8137be3db8b393c2e0c', '20050429152309', '20050429152605', '1', '0', '2005-04-29 15:26:05', '19561017');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('587', 'derekremy', '05d0e1c80c5d119c', 'my car', 'derek', 'just looking to meet someone who can handle me :D', '29', '8', 'nj', 'United_States.gif', 'remytm@hotmail.com', 'http://', '', 'here', '', 'jpg', 'approved', '8', '48', '6.0000', '0', 'yes', '5abc78d166176c7e10d9cf15662d370e', '20050429195358', '20050730110158', '1', '2', '2005-07-27 17:32:36', '19760321');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('588', 'sexyatlcouple', '56c4c9ea19f3407f', 'last 6 ss#', 'W*****', 'Very attrictive couple in Georgia witha bifemale seeking couple /bifemale for fun and friends', '26', '7', 'newnan, ga', 'United_States.gif', 'haneyw@bellsouth.net', 'http://', '', 'here', '', 'JPG', 'approved', '14', '76', '5.4285', '0', 'yes', '411204537d5e20eb241d8d18dc96f132', '20050430122123', '20050730110406', '1', '1', '2005-04-30 12:21:23', '19781010');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('589', 'TivandNat', '65d0ce6c565fca27', 'whos your moma?', 'natalie', 'Hot midwest couple looking for a bi-female or couple who wants to experience some fun.', '24', '7', 'columbia,MO', 'United_States.gif', 'mistertivis@yahoo.com', 'http://', 'Wanna go again?', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '280e9c2a430235353d7a492b92032f90', '20050504105114', '20050610083917', '1', '0', '2005-05-04 10:51:14', '19800709');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('590', 'wetlover38', '1929c5ff7717250c', 'what am I', 'Rand', 'we are looking for a female for my sexy wife....', '27', '7', 'Central, MO', 'United_States.gif', 'clicker342000@yahoo.com', 'http://', 'good to the last drop', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e630d5be7f021f48b33b0ae83e4d9d7f', '20050506101032', '20050506101032', '1', '0', '2005-05-06 10:10:32', '19760216');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('591', 'sexlovers', '7b09967579034d6c', 'she is?', 'sandg', 'we are looking for select males and females and also couples for adult fun.', '42', '7', 'purdy', 'United_States.gif', 'twoofakind82@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '185fcb177a97a4e716648ed82083bc21', '20050509093207', '20050509093444', '1', '0', '2005-05-09 09:34:44', '19620604');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('592', 'domjen', '58ac683e44f1a63e', 'name', 'DomJen', 'Openminded couple who is fun.Looking for a girl to have some fun with.', '28', '7', '', 'United_States.gif', 'jen62239@yahoo.com', 'http://', '', 'here', '', 'JPG', 'approved', '6', '28', '4.6666', '0', 'yes', '81ef63d019ec372eddf59d2105f0ecdf', '20050513142223', '20050727201813', '1', '2', '2005-05-23 06:24:35', '19760324');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('593', 'hornyhubby', '7d6b438e36989d11', 'rush', 'brian', '', '18', '8', 'wood dale il', 'United_States.gif', 'Qmilkman1@aol.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '10e1af8733a0efef88c4de1e9c368227', '20050518124050', '20050518124050', '1', '0', '2005-05-18 12:40:50', '19710112');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('594', 'ernglo', '2809687b3617e859', 'me', 'ern bell', 'Great looking sensoul couple looking to explore our wild side.', '50', '7', 'O Fallon Missouri', 'United_States.gif', 'ernio06@aol.com', 'http://', 'Fuck it good', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '379f3d57f0d7cbed5919fee8f7aaf18a', '20050519223424', '20050519223424', '1', '0', '2005-05-19 22:34:24', '19541006');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('595', 'funilcoupld', '51e24fbb06cc38b6', 'hello', 'kirk', '', '30', '7', 'Peoria IL', 'United_States.gif', 'livestrong29@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4c98059c48d149a4d5be326d9efec326', '20050521010512', '20050521010512', '1', '0', '2005-05-21 01:05:12', '19750411');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('596', 'GOODONES', '5fe898731804345b', 'END OF DAY', 'RICHIE', '', '35', '8', 'CONCORD', 'United_States.gif', 'TORICHCONCORD@AOL.COM', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '8aaee15c9b1fe649c6e5e58e9a117f56', '20050521050639', '20050521050639', '1', '0', '2005-05-21 05:06:39', '19691018');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('597', 'freesex4you', '36f2be676955f6b3', 'dg', 'Gail', 'I am a married woman looking for some extra sex with men, women, both, couples,\r\nmultiples, groups, anything that I might of left out...', '45', '6', 'Schaumburg, IL', 'United_States.gif', 'mendoza1013@msn.com', 'http://', 'fuck me baby....', 'here', '', '', 'disabled', '1', '10', '10.0000', '0', 'yes', '529100c13a00a2021d36a24b4469db64', '20050525144306', '20050610083934', '1', '0', '2005-05-25 14:43:06', '19600515');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('598', 'playfulmocoupl', '5c7c077d0acd3419', 'kymbr', 'amy l', '', '29', '7', 'Missouri', 'United_States.gif', 'playfulmocouple@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '7', '36', '5.1428', '0', 'yes', 'ffb2d62ccde667895c6ffcc8a7554b7e', '20050526171951', '20050725142947', '1', '1', '2005-06-27 11:29:45', '19760408');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('601', 'DrJ0070', '491a1a6d3fe5c9a2', 'Sophie', 'Jeff Henegar', '', '39', '8', 'MS', 'United_States.gif', 'jhenegar@bellsouth.net', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '01fe53a42f4cc099208a1af3ba8b7a18', '20050611161732', '20050611161747', '1', '0', '2005-06-11 16:17:47', '19650804');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('599', 'willing1', '7ac89c86763b1d56', 'dog', 'ALMI', 'WILL GET TO THIS LATER', '47', '8', 'ST.LOUIS,MO', 'United_States.gif', 'nonomllr@aol.com', 'http://', 'HMMMMMMMMMMMMM', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0bafbf71a6b3eccfbc5bf3b8e574558a', '20050528075126', '20050528075355', '1', '0', '2005-05-28 07:53:55', '19580108');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('600', 'bigred9584', '1a74a80c0db7776c', 'jessie', 'Phil', '', '47', '8', 'elco', 'United_States.gif', 'bigred958@hotmail.com', 'http://', 'Git_R_done', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '475df5e4431d3812d064ec833ae790f2', '20050604111204', '20050604111253', '1', '0', '2005-06-04 11:12:53', '19600220');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('602', 'dougdoug', '683eaba5682d141e', 'doug', 'doug', '', '31', '7', 'columbia/mo', 'United_States.gif', 'doug@doug.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '97234545ffe8b5f55934d062b747c5eb', '20050612001343', '20050612001601', '1', '0', '2005-06-12 00:16:01', '19750101');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('603', 'shira86', '62c34a05389ef777', 'XYZ', 'XYZz', '', '19', '6', 'Warszawa', 'Poland.gif', 'shira16@o2.pl', 'http://', '??', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '5a02a05a59977999406677e790662ce5', '20050617181711', '20050617181934', '1', '0', '2005-06-17 18:19:34', '19860704');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('604', 'aimeeandbruce', '151a600b13781d50', 'i am mr what', 'aimeeandbruce', 'hello we are a married swinger couple who enjoys getting naked and partying. we love making home amateur porno. aimee is a true sexual goddess. she will blow or mind and a lot more. we are straight and seek males and females and couples. so if hanging out with someone down to earth then give us a try.', '34', '7', 'rock island illinois', 'United_States.gif', 'm4bvideos@hotmail.com', 'http://', 'you were supposed to destroy the sith not join him', 'here', '', 'jpg', 'approved', '7', '43', '6.1428', '0', 'yes', 'e8c333da2ebdd19999c6a1a283ee7e18', '20050618024332', '20050730110746', '1', '1', '2005-06-18 02:43:32', '19710607');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('605', 'J&DIsom', '368866ca182dd9b1', 'sex', 'Danielle Isom', 'My husband and I are looking for a couple in our area to either switch with, or all join together in clean sexual fun.', '25', '7', 'Rock Island, IL', 'United_States.gif', 'girlsrbratz3@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '46332692a59782bef07ddee3262a7ba0', '20050619201239', '20050619201322', '1', '0', '2005-06-19 20:13:22', '19800720');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('606', 'nastelove', '05e130057c7e2536', 'me', 'Nastelove', '', '29', '6', 'Chicago, IL', 'United_States.gif', 'nastelove2005@sbcglobal.net', 'http://', 'Live life to the fullest.', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'fe61d885cc6d8c3347c7d2d1f0a4027a', '20050624211247', '20050624211247', '1', '0', '2005-06-24 21:12:47', '19751221');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('607', 'garysmo', '683016920fe2c8bc', 'my x cat', 'felix', 'I am 6 ft 245# brown eyes and hair what there is left. I am a divorced father of 3 sons, youngest I have custody of. I love camping, canoeing and walking out at ha ha  tonka park.', '56', '8', 'Missouri', 'United_States.gif', 'garys_mo@yahoo.com', 'http://', 'whatever, duh', 'here', '', 'jpg', 'approved', '1', '10', '10.0000', '0', 'yes', '21f734b4bbed73d3b585f353144f17cc', '20050627174802', '20050720115237', '1', '3', '2005-06-27 17:48:02', '19490125');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('608', 'deputym', '301abaca7f659003', 'dogs name', 'mark', 'we are a couple in the st. louis area that will meet with other couples and singles if we like them ', '46', '7', 'st. louis', 'United_States.gif', 'deputym2002@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'c9e449ac70860ab4bb5205fc5fb997ce', '20050628132709', '20050628132709', '1', '0', '2005-06-28 13:27:09', '19600205');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('609', 'trigger0555', '64b969cc419ee51f', 'b-day yr', 'john', 'we are a couple late 30s looking for other sexy hot couples or single females have a lot more to share ck profile of both of us at  slowridexxx4u@yahoo.com', '36', '7', '', 'United_States.gif', 'trigger0555@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '5', '29', '5.8000', '1', 'yes', 'bdf8e0da7791ae2fa08a054e5e562289', '20050701161824', '20050730110433', '1', '3', '2005-07-01 16:18:24', '19660803');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('610', 'pta5', '1f62a3a8636ce826', 'big?', 'bandt', 'Couple looking to have fun', '47', '7', 'Rockford il', 'United_States.gif', 'pta52001@yahoo.com', 'http://', 'just do it', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'd939136c4ace53d707c149f963ff97f2', '20050702073536', '20050702073712', '1', '0', '2005-07-02 07:37:12', '19561014');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('611', 'wildaero', '7350751210e25656', 'son', 'Kristin', 'We are a couple looking for her first bi experience with another female.', '22', '7', 'Clinton twp/ Michigan', 'United_States.gif', 'wildaero@gmail.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '6eaaaf937a2bb0a4d94066bd38c9356d', '20050706000535', '20050706000535', '1', '0', '2005-07-06 00:05:35', '19830307');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('612', 'peejo', '12051be27a9df733', 'who is my name', 'peejo', '', '30', '8', 'Michigan/detroit', 'United_States.gif', 'peejo2001@hotmail.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', 'e4c2793949acfd782571fa6389e93d30', '20050706002224', '20050707215518', '1', '0', '2005-07-07 21:55:18', '19750201');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('613', 'John', '752125765f235a5e', 'son name', 'John', '', '37', '7', 'Grantspass/Oregon', 'United_States.gif', 'soldierboy114@hotmail.com', 'http://', '', 'here', '', 'jpg', 'disabled', '1', '10', '10.0000', '0', 'yes', '61409aa1fd47d4a5332de23cbf59a36f', '20050710111615', '20050720115306', '1', '1', '2005-07-10 15:30:07', '19680913');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('614', 'IsHe4Real', '6c76b7117b3d5568', 'daughter', 'kyron', '', '29', '8', 'newport news', 'United_States.gif', 'kyron1975@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '605d86345747ab25472b9e2648e71d6c', '20050713203957', '20050713203957', '1', '0', '2005-07-13 20:39:57', '19751119');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('615', 'club_passions', '0aa4c19840b04a75', 'daughter', 'Rod&Kat', '', '34', '7', 'Janesville, WI', 'United_States.gif', 'club_passions2005@yahoo.com', 'http://', 'Cum join us!!', 'here', '', '', 'approved', '3', '15', '5.0000', '0', 'yes', 'f53106d6c692d133f7e67735bbe16cd5', '20050717211807', '20050730105429', '1', '3', '2005-07-17 23:10:02', '19711007');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('616', 'crossville', '76b762851495f288', 'sec', 'dave', 'looking for couple to play with', '49', '8', 'crossville, tn', 'United_States.gif', 'schaumburgc29@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '0baa71ec91d1ce07c44e77d28aa5d77b', '20050718234415', '20050718234442', '1', '0', '2005-07-18 23:44:42', '19570709');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('617', 'ramdaddy', '5399402e2b24484f', 'classic 2', 'Anthony', '', '35', '8', 'Wshington, DC', 'United_States.gif', 'bigmek@aol.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '25e49287c80f136ce76ccaed7353afb8', '20050719134801', '20050719134905', '1', '0', '2005-07-19 13:49:05', '19700404');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('618', 'cjb_babe', '05e6b882300d7ab6', 'car', 'coby', 'wanting a female that is up for so fun', '21', '6', 'vic', 'Australia.gif', 'vl_chik_25@hotmail.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '67c7389bd17ef7a3158f481aded5f512', '20050719194623', '20050719194623', '1', '0', '2005-07-19 19:46:23', '19840325');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('619', 'miguy48827', '4515d43509a27197', 'Hot', 'Steve', 'Average build, with a few extra pounds.  Active and healthy.  Lots of grey.', '51', '8', 'Lansing/MI', 'United_States.gif', 'smlemaire@aol.com', 'http://', '', 'here', '', 'jpg', 'approved', '2', '14', '7.0000', '0', 'yes', 'f3a8f60306cd47d94b482a7c57d6de9c', '20050721003452', '20050731092307', '1', '1', '2005-07-22 00:09:18', '19540224');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('620', 'yaryar6969', '2ec62cbb573478d3', 'rain', 'yaryar', 'Looking to have fun with couples or single women.', '18', '8', 'Burlington n.c.', 'United_States.gif', 'rmorris@glenraven.com', 'http://', 'love to have fun', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '080b7b1d264c00b4478ca188e2a0f3c0', '20050724103105', '20050724103105', '1', '0', '2005-07-24 10:31:05', '19690320');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('621', 'gimfun2', '2111a68c7eba7825', 'aff', 'Annette and Heath', '', '29', '7', 'Illinois', 'United_States.gif', 'amhm1096@yahoo.com', 'http://', '', 'here', '', 'jpg', 'approved', '4', '38', '9.5000', '0', 'yes', '139153702ed0833b0d1c9078d706a4da', '20050724224420', '20050731160659', '1', '1', '2005-07-24 22:44:20', '19760227');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('622', 'spycpl', '480b86371c40e32e', 'pet', 'Boris', 'FUN COUPLE, NOT BARBIE AND KEN, BUT FUN', '51', '7', 'ELKHART, INDIANA', 'United_States.gif', 'spycpl@aol.com', 'http://', 'SUCKS TO BE YOU', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '470286a71d783fed3d36de7e9528dc9b', '20050730083816', '20050730083816', '1', '0', '2005-07-30 08:38:16', '19540727');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('623', 'making_friends', '127a7b3279cc24d5', '2400', 'TandU', 'Looking for friends more than that and if it happens to be a close friendship great if not we grow any way by meeting good (nonpushy) people', '40', '7', 'Newport News, Va', 'United_States.gif', 'making_friends_in_va@yahoo.com', 'http://', 'gotta luv me', 'here', '', 'jpg', 'queued', '1', '10', '10.0000', '0', 'yes', '2a47bad6481626d459279047362cefbb', '20050730105905', '20050730110650', '1', '1', '2005-07-30 10:59:05', '19640803');
INSERT INTO `platinum_users` (`id`, `username`, `password`, `hint`, `realname`, `description`, `age`, `user_type`, `state`, `country`, `email`, `url`, `quote`, `image`, `image_url`, `image_ext`, `image_status`, `total_ratings`, `total_points`, `average_rating`, `total_comments`, `subscribed`, `md5key`, `signup`, `timestamp`, `is_approved`, `total_files`, `last_logged`, `birthdate`) VALUES ('624', 'bothbi4u', '155a8b945330f7ac', 'buddy', 'Troy and Jackie', 'Bi couple she is 25 he is 24 both bi in the right situation', '24', '7', 'Peoria Il', 'United_States.gif', 'taz63050@yahoo.com', 'http://', '', 'here', '', '', 'enabled', '1', '10', '10.0000', '0', 'yes', '4be9f58a410fb5526f880d5b325e0b5e', '20050730191623', '20050730191703', '1', '0', '2005-07-30 19:17:03', '19800925');


# dumping data for swingornot2.platinum_users_blocked
INSERT INTO `platinum_users_blocked` (`block_id`, `user_id`, `blocked_user`) VALUES ('1', '439', '55');
INSERT INTO `platinum_users_blocked` (`block_id`, `user_id`, `blocked_user`) VALUES ('2', '395', '565');


# dumping data for swingornot2.platinum_visit_logs
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('1', 'brooklyn00', '553', '2005-03-18 07:33:14', '65.184.157.114');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('2', '', '0', '2005-03-18 14:37:27', '64.40.79.78');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('3', 'tenduramax2', '555', '2005-03-19 18:45:39', '69.134.233.66');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('4', 'tenduramax2', '555', '2005-03-19 19:45:26', '147.239.118.140');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('5', 'tenduramax2', '555', '2005-03-19 19:59:05', '147.239.118.140');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('6', '', '0', '2005-03-19 22:38:18', '65.30.39.146');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('7', 'pocket_aces', '466', '2005-03-20 00:07:53', '67.173.146.139');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('8', 'tenduramax2', '555', '2005-03-20 00:23:42', '147.239.118.140');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('9', 'tenduramax2', '555', '2005-03-20 16:58:39', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('10', 'Dashell', '557', '2005-03-20 17:45:47', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('11', 'Dashell', '557', '2005-03-21 06:36:08', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('12', 'tenduramax2', '555', '2005-03-21 06:47:02', '147.239.118.140');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('13', 'Dashell', '557', '2005-03-21 09:46:16', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('14', 'tenduramax2', '555', '2005-03-21 10:51:27', '147.239.118.140');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('15', 'WUmp', '308', '2005-03-21 23:14:09', '12.221.116.234');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('16', 'woppa', '136', '2005-03-22 08:49:53', '144.139.97.36');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('17', 'chad41', '390', '2005-03-22 15:18:09', '12.221.1.9');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('18', 'pocket_aces', '466', '2005-03-22 16:08:06', '67.173.146.139');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('19', '', '0', '2005-03-22 20:32:52', '152.163.101.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('20', '', '0', '2005-03-22 20:52:58', '152.163.101.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('21', '', '0', '2005-03-22 21:00:25', '152.163.101.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('22', '', '0', '2005-03-22 21:13:20', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('23', '', '0', '2005-03-22 22:28:28', '202.179.64.11');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('24', '', '0', '2005-03-22 23:58:12', '12.216.226.27');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('25', 'Dashell', '557', '2005-03-23 07:59:11', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('26', 'Slygrin', '529', '2005-03-23 09:48:47', '66.214.254.26');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('27', '', '0', '2005-03-23 17:03:17', '65.103.50.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('28', '', '0', '2005-03-23 17:14:40', '4.244.81.242');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('29', 'Slygrin', '529', '2005-03-23 20:03:37', '66.214.254.26');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('30', 'safenfun', '559', '2005-03-23 23:58:13', '202.63.185.136');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('31', '', '0', '2005-03-24 10:29:34', '69.218.219.213');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('32', 'THEONE', '562', '2005-03-25 22:19:36', '68.187.141.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('33', 'tre8uallnite', '384', '2005-03-25 22:31:34', '68.187.141.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('34', 'Dashell', '557', '2005-03-26 07:29:07', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('35', 'swinging_8420', '563', '2005-03-26 18:50:09', '208.54.14.1');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('36', '', '0', '2005-03-26 18:56:19', '216.106.74.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('37', 'Dashell', '557', '2005-03-27 06:43:53', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('38', 'LostRussian', '446', '2005-03-27 17:23:44', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('39', 'WUmp', '308', '2005-03-28 07:28:42', '12.221.116.234');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('40', '', '0', '2005-03-28 19:23:53', '69.26.90.52');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('41', 'LostRussian', '446', '2005-03-28 20:04:55', '205.188.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('42', 'Mrgiving', '565', '2005-03-29 21:33:56', '69.179.128.114');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('43', 'Seductress', '89', '2005-03-30 06:17:18', '152.163.101.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('44', 'Dashell', '557', '2005-03-30 06:53:07', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('45', 'pocket_aces', '466', '2005-03-30 10:07:16', '67.173.146.139');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('46', 'tenduramax2', '555', '2005-03-30 10:21:44', '205.188.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('47', 'Dashell', '557', '2005-03-31 06:30:59', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('48', 'capamazing', '535', '2005-03-31 08:46:41', '67.106.246.19');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('49', 'irishboyxxx', '566', '2005-03-31 09:35:40', '84.65.135.15');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('50', 'LostRussian', '446', '2005-03-31 20:17:00', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('51', 'eash71', '413', '2005-04-01 08:41:17', '209.58.242.171');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('52', '', '0', '2005-04-01 18:03:35', '207.12.114.219');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('53', '', '0', '2005-04-02 06:40:45', '81.134.139.8');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('54', 'skaffo', '0', '2005-04-02 11:30:41', '68.77.89.77');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('55', 'funcpl317', '568', '2005-04-04 13:44:25', '68.77.89.77');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('56', 'kam4u', '16', '2005-04-04 19:09:14', '12.214.90.63');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('57', 'FLAswing4U', '567', '2005-04-05 15:27:12', '205.188.117.11');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('58', '', '0', '2005-04-05 16:34:25', '207.12.114.219');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('59', 'two4funindana', '128', '2005-04-06 10:19:41', '207.69.138.6');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('60', '', '0', '2005-04-06 21:09:04', '24.206.240.81');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('61', 'LostRussian', '446', '2005-04-06 23:20:47', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('62', 'evilkitty', '571', '2005-04-07 23:06:58', '24.148.52.129');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('63', 'benandtatiana', '395', '2005-04-08 17:18:37', '24.125.186.191');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('64', 'times24now', '572', '2005-04-09 16:31:49', '152.163.101.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('65', 'Dashell', '557', '2005-04-11 07:02:23', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('66', '', '0', '2005-04-11 18:59:54', '65.54.154.17');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('67', '', '0', '2005-04-11 18:59:55', '65.54.154.17');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('68', '', '0', '2005-04-11 19:17:21', '24.188.141.54');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('69', 'shorty_fats', '573', '2005-04-12 06:34:32', '68.224.18.120');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('70', 'WUmp', '308', '2005-04-13 07:38:43', '12.221.116.234');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('71', 'britne', '423', '2005-04-13 15:43:20', '64.85.220.42');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('72', 'rog4540', '0', '2005-04-13 20:32:11', '69.221.224.6');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('73', 'gregrun', '576', '2005-04-14 05:55:37', '12.214.171.161');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('74', 'Dashell', '557', '2005-04-14 06:12:45', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('75', '', '0', '2005-04-14 07:05:03', '66.198.41.21');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('76', '', '0', '2005-04-15 12:00:42', '69.153.100.11');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('77', 'LostRussian', '446', '2005-04-15 12:11:26', '205.188.117.11');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('78', '', '0', '2005-04-15 16:18:53', '67.142.130.13');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('79', '', '0', '2005-04-15 16:19:29', '67.142.130.13');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('80', 'Slygrin', '529', '2005-04-15 16:44:33', '66.214.254.26');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('81', 'tre8uallnite', '384', '2005-04-16 16:28:36', '68.187.141.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('82', 'rog4540', '574', '2005-04-16 20:07:10', '69.221.224.6');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('83', 'Slygrin', '529', '2005-04-18 11:57:36', '66.214.254.26');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('84', 'rog4540', '574', '2005-04-18 20:31:21', '69.221.224.6');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('85', 'rog4540', '574', '2005-04-19 14:25:17', '69.221.224.6');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('86', '', '0', '2005-04-20 00:40:50', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('87', 'LostRussian', '446', '2005-04-20 00:41:01', '64.12.117.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('88', 'Mrgiving', '565', '2005-04-20 19:51:56', '69.179.168.181');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('89', 'Dashell', '557', '2005-04-21 05:42:01', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('90', 'haveapproval', '318', '2005-04-21 06:26:04', '68.184.10.49');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('91', 'rog4540', '574', '2005-04-21 06:42:00', '69.221.224.6');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('92', 'kam4u', '16', '2005-04-21 07:30:47', '12.214.90.63');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('93', '', '0', '2005-04-21 08:30:03', '68.88.34.93');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('94', 'Seductress', '89', '2005-04-21 08:30:40', '68.88.34.93');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('95', 'britne', '423', '2005-04-21 15:19:58', '64.85.221.189');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('96', 'haveapproval', '318', '2005-04-21 15:45:25', '68.184.10.49');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('97', 'sluu', '581', '2005-04-22 13:16:55', '68.110.16.130');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('98', 'fireball1', '582', '2005-04-22 23:31:32', '141.211.235.33');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('99', 'benandtatiana', '395', '2005-04-23 17:18:34', '24.125.186.191');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('100', 'benandtatiana', '395', '2005-04-23 17:35:46', '24.125.186.191');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('101', 'rog4540', '574', '2005-04-23 17:54:33', '69.214.2.208');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('102', 'shorty_fats', '573', '2005-04-24 04:23:20', '68.108.57.97');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('103', '', '0', '2005-04-24 05:20:32', '207.69.137.201');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('104', 'btrfly19_81', '583', '2005-04-24 10:49:28', '12.219.219.168');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('105', 'pocket_aces', '466', '2005-04-24 23:24:22', '67.173.146.139');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('106', '', '0', '2005-04-25 19:14:32', '67.142.130.13');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('107', '', '0', '2005-04-26 00:10:57', '12.215.234.124');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('108', '', '0', '2005-04-26 08:43:32', '62.56.179.135');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('109', 'cstarkg11', '585', '2005-04-29 00:12:34', '68.112.0.81');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('110', 'Slygrin', '529', '2005-04-29 14:55:37', '66.214.254.26');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('111', 'Willing', '586', '2005-04-29 15:23:31', '208.191.208.156');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('112', 'Dashell', '557', '2005-04-30 07:44:04', '65.60.196.222');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('113', 'cstarkg11', '585', '2005-04-30 07:53:54', '68.112.0.81');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('114', '', '0', '2005-05-01 20:46:39', '24.12.161.241');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('115', '', '0', '2005-05-01 20:50:58', '24.12.161.241');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('116', '', '0', '2005-05-01 20:52:32', '24.12.161.241');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('117', '', '0', '2005-05-01 21:35:29', '69.66.132.206');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('118', '', '0', '2005-05-01 22:48:25', '24.12.161.241');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('119', 'pocket_aces', '466', '2005-05-02 03:39:24', '67.173.146.139');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('120', 'derekremy', '587', '2005-05-02 18:13:30', '69.142.170.200');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('121', 'LostRussian', '446', '2005-05-03 01:35:49', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('122', 'LostRussian', '446', '2005-05-03 15:07:59', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('123', 'LostRussian', '446', '2005-05-03 15:13:12', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('124', 'LostRussian', '446', '2005-05-03 15:16:13', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('125', '', '0', '2005-05-03 17:21:17', '207.200.116.195');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('126', 'derekremy', '587', '2005-05-03 23:53:08', '69.142.170.200');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('127', 'tre8uallnite', '384', '2005-05-04 23:31:57', '12.215.234.124');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('128', 'derekremy', '587', '2005-05-05 22:15:43', '69.142.170.200');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('129', '', '0', '2005-05-06 22:29:59', '203.217.16.85');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('130', 'shvdnthick', '453', '2005-05-07 15:57:12', '24.98.203.245');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('131', 'pocket_aces', '466', '2005-05-07 20:10:11', '67.173.146.139');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('132', 'tenduramax2', '555', '2005-05-12 23:34:10', '152.163.101.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('133', '', '0', '2005-05-13 20:47:05', '4.131.14.145');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('134', '', '0', '2005-05-14 08:06:25', '12.215.226.130');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('135', '', '0', '2005-05-14 08:08:19', '12.215.226.130');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('136', 'domjen', '592', '2005-05-14 13:13:08', '24.171.55.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('137', '', '0', '2005-05-17 19:29:20', '24.171.55.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('138', 'domjen', '592', '2005-05-17 19:31:52', '24.171.55.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('139', 'domjen', '592', '2005-05-18 11:49:58', '24.171.55.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('140', '', '0', '2005-05-18 18:44:42', '12.215.226.130');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('141', '', '0', '2005-05-20 13:14:16', '12.215.226.130');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('142', 'domjen', '592', '2005-05-21 17:15:31', '24.171.55.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('143', 'domjen', '592', '2005-05-23 06:24:21', '24.171.55.198');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('144', '', '0', '2005-05-23 15:28:43', '24.253.148.93');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('145', 'LostRussian', '446', '2005-05-25 03:36:46', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('146', '', '0', '2005-05-25 08:43:02', '65.5.199.244');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('147', '', '0', '2005-05-25 12:54:38', '24.211.165.15');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('148', '', '0', '2005-05-25 12:55:07', '24.211.165.15');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('149', '2daextreme', '261', '2005-05-26 09:17:18', '216.146.70.166');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('150', 'playfulmocoupl', '598', '2005-05-27 17:48:20', '66.136.146.64');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('151', '', '0', '2005-05-27 22:00:02', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('152', '', '0', '2005-05-28 14:28:04', '205.188.117.68');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('153', '', '0', '2005-06-01 12:56:40', '24.75.97.143');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('154', 'Slygrin', '529', '2005-06-04 09:29:50', '207.200.116.195');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('155', '', '0', '2005-06-04 10:37:30', '207.200.116.195');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('156', 'crystal', '524', '2005-06-04 14:15:48', '68.89.11.60');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('157', 'crystal', '524', '2005-06-04 14:47:15', '68.89.11.60');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('158', 'DrJ0070', '601', '2005-06-11 16:17:47', '65.7.253.59');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('159', 'dougdoug', '602', '2005-06-12 00:15:48', '12.227.157.47');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('160', 'nastygurl', '424', '2005-06-14 17:50:45', '216.12.108.5');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('161', 'crystal', '524', '2005-06-14 21:16:47', '67.67.254.69');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('162', '', '0', '2005-06-15 07:32:31', '163.151.2.10');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('163', '', '0', '2005-06-19 14:21:21', '62.252.32.15');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('164', 'J&DIsom', '605', '2005-06-19 20:13:22', '12.74.16.253');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('165', '', '0', '2005-06-19 20:21:38', '12.74.16.253');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('166', '', '0', '2005-06-19 20:25:27', '12.74.16.253');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('167', 'utopian', '382', '2005-06-20 06:56:58', '67.68.8.45');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('168', 'LostRussian', '446', '2005-06-21 22:33:15', '205.188.117.11');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('169', '', '0', '2005-06-22 12:51:06', '12.203.241.26');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('170', 'crystal', '524', '2005-06-25 19:44:15', '69.155.100.177');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('171', 'playfulmocoupl', '598', '2005-06-27 11:29:45', '66.143.52.130');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('172', '', '0', '2005-06-27 17:40:37', '209.180.33.112');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('173', '', '0', '2005-06-30 09:02:46', '85.99.25.28');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('174', 'pta5', '610', '2005-07-02 07:36:57', '68.115.25.168');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('175', 'kam4u', '16', '2005-07-03 08:40:19', '12.214.90.63');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('176', '', '0', '2005-07-05 09:42:49', '163.151.2.10');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('177', '', '0', '2005-07-05 13:08:32', '151.201.133.17');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('178', 'peejo', '612', '2005-07-07 21:55:00', '69.209.156.48');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('179', 'John', '613', '2005-07-10 15:30:07', '84.170.240.24');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('180', '', '0', '2005-07-15 12:26:29', '67.133.42.134');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('181', 'club_passions', '615', '2005-07-17 23:10:02', '24.196.100.117');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('182', '', '0', '2005-07-18 16:44:21', '85.11.218.142');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('183', 'sic9886', '543', '2005-07-19 14:49:43', '66.227.216.128');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('184', '', '0', '2005-07-19 16:37:04', '68.82.113.7');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('185', 'shvdnthick', '453', '2005-07-19 20:07:52', '24.98.203.178');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('186', 'bigerdog2', '532', '2005-07-20 11:20:13', '207.255.15.159');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('187', '', '0', '2005-07-20 22:34:48', '68.187.212.131');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('188', 'miguy48827', '619', '2005-07-21 17:18:31', '67.162.217.49');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('189', 'echosrainbow', '578', '2005-07-21 18:47:26', '24.56.205.244');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('190', 'miguy48827', '619', '2005-07-22 00:09:02', '67.162.217.49');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('191', '', '0', '2005-07-23 21:35:03', '68.78.165.141');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('192', 'capamazing', '535', '2005-07-25 11:16:38', '69.68.99.229');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('193', '', '0', '2005-07-26 00:42:32', '63.164.209.111');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('194', 'derekremy', '587', '2005-07-27 17:32:36', '69.142.170.200');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('195', 'kam4u', '16', '2005-07-29 22:19:31', '12.214.90.63');
INSERT INTO `platinum_visit_logs` (`id`, `username`, `userid`, `logdate`, `ip`) VALUES ('196', 'bothbi4u', '624', '2005-07-30 19:16:44', '12.221.223.42');




