Просмотр файла base.txt

Размер файла: 30.7Kb
CREATE TABLE IF NOT EXISTS `adm_stats` (
  `id` int(11) NOT NULL auto_increment,
  `om` int(11) NOT NULL default '0',
  `op` int(11) NOT NULL default '0',
  `pc` int(11) NOT NULL default '0',
  `more` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `banners` (
  `id` int(11) NOT NULL auto_increment,
  `link` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `linkimg` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `banname` text collate utf8_unicode_ci NOT NULL,
  `mesto` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `chat` (
  `id` int(11) NOT NULL auto_increment,
  `login` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `date` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `msg` text collate utf8_unicode_ci NOT NULL,
  `avatar` text collate utf8_unicode_ci NOT NULL,
  `aid` longtext collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1;

CREATE TABLE IF NOT EXISTS `clicks` (
  `id` int(11) NOT NULL auto_increment,
  `data` text collate utf8_unicode_ci NOT NULL,
  `oper_name` text collate utf8_unicode_ci NOT NULL,
  `referer` text collate utf8_unicode_ci NOT NULL,
  `userid` text collate utf8_unicode_ci NOT NULL,
  `agent` text collate utf8_unicode_ci NOT NULL,
  `ip` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `config` (
  `id` int(11) NOT NULL auto_increment,
  `title` text collate utf8_unicode_ci NOT NULL,
  `icq1` int(9) NOT NULL default '413840745',
  `icq2` int(9) NOT NULL default '413840745',
  `email` text collate utf8_unicode_ci NOT NULL,
  `email2` text collate utf8_unicode_ci NOT NULL,
  `vivod` int(10) NOT NULL default '10',
  `dollar` text collate utf8_unicode_ci NOT NULL,
  `ned` text collate utf8_unicode_ci NOT NULL,
  `num` int(2) NOT NULL default '10',
  `mincost` int(2) NOT NULL default '2',
  `partproc` int(2) NOT NULL default '20',
  `wap_skin` text collate utf8_unicode_ci NOT NULL,
  `clicktime` text collate utf8_unicode_ci NOT NULL,
  `sheif` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Дамп данных таблицы `config`
--

INSERT INTO `config` (`id`, `title`, `icq1`, `icq2`, `email`, `email2`, `vivod`, `dollar`, `ned`, `num`, `mincost`, `partproc`, `wap_skin`, `clicktime`, `sheif`) VALUES
(1, 'WkVPV0FQLlJV', 413840745, 270016245, '[email protected]', '[email protected]', 15, '30', '0', 10, 1, 20, 'wap_style', '1', '5');

CREATE TABLE IF NOT EXISTS `ips` (
  `id` int(11) NOT NULL auto_increment,
  `ip` int(11) NOT NULL default '0',
  `user` int(11) NOT NULL default '0',
  `time` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `news` (
  `id` int(11) NOT NULL auto_increment,
  `date` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `msg` text collate utf8_unicode_ci NOT NULL,
  `login` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `status` text collate utf8_unicode_ci NOT NULL,
  `avatar` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `news_com` (
  `id` int(11) NOT NULL auto_increment,
  `nid` text NOT NULL,
  `date` varchar(255) NOT NULL default '',
  `msg` text NOT NULL,
  `login` varchar(255) NOT NULL default '',
  `avatar` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `online` (
  `time` int(16) unsigned NOT NULL default '0',
  `browser` varchar(255) NOT NULL default 'Opera',
  `ip` varchar(32) NOT NULL default '127.0.0.1',
  UNIQUE KEY `browser` (`browser`,`ip`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `operators` (
  `id` int(11) NOT NULL auto_increment,
  `pereh` int(11) NOT NULL default '1000',
  `1_status` int(1) NOT NULL default '0',
  `1_price` varchar(11) NOT NULL default '0',
  `2_status` int(1) NOT NULL default '0',
  `2_price` varchar(11) NOT NULL default '0',
  `3_status` int(1) NOT NULL default '0',
  `3_price` varchar(11) NOT NULL default '0',
  `4_status` int(1) NOT NULL default '0',
  `4_price` varchar(11) NOT NULL default '0',
  `5_status` int(1) NOT NULL default '0',
  `5_price` varchar(11) NOT NULL default '0',
  `6_status` int(1) NOT NULL default '0',
  `6_price` varchar(11) NOT NULL default '0',
  `7_status` int(1) NOT NULL default '0',
  `7_price` varchar(11) NOT NULL default '0',
  `8_status` int(1) NOT NULL default '0',
  `8_price` varchar(11) NOT NULL default '0',
  `9_status` int(1) NOT NULL default '0',
  `9_price` varchar(11) NOT NULL default '0',
  `10_status` int(1) NOT NULL default '0',
  `10_price` varchar(11) NOT NULL default '0',
  `11_status` int(1) NOT NULL default '0',
  `11_price` varchar(11) NOT NULL default '0',
  `12_status` int(1) NOT NULL default '0',
  `12_price` varchar(11) NOT NULL default '0',
  `13_status` int(1) NOT NULL default '0',
  `13_price` varchar(11) NOT NULL default '0',
  `14_status` int(1) NOT NULL default '0',
  `14_price` varchar(11) NOT NULL default '0',
  `15_status` int(1) NOT NULL default '0',
  `15_price` varchar(11) NOT NULL default '0',
  `16_status` int(1) NOT NULL default '0',
  `16_price` varchar(11) NOT NULL default '0',
  `17_status` int(1) NOT NULL default '0',
  `17_price` varchar(11) NOT NULL default '0',
  `18_status` int(1) NOT NULL default '0',
  `18_price` varchar(11) NOT NULL default '0',
  `19_status` int(1) NOT NULL default '0',
  `19_price` varchar(11) NOT NULL default '0',
  `20_status` int(1) NOT NULL default '0',
  `20_price` varchar(11) NOT NULL default '0',
  `21_status` int(1) NOT NULL default '0',
  `21_price` varchar(11) NOT NULL default '0',
  `22_status` int(1) NOT NULL default '0',
  `22_price` varchar(11) NOT NULL default '0',
  `23_status` int(1) NOT NULL default '0',
  `23_price` varchar(11) NOT NULL default '0',
  `24_status` int(1) NOT NULL default '0',
  `24_price` varchar(11) NOT NULL default '0',
  `25_status` int(1) NOT NULL default '0',
  `25_price` varchar(11) NOT NULL default '0',
  `26_status` int(1) NOT NULL default '0',
  `26_price` varchar(11) NOT NULL default '0',
  `27_status` int(1) NOT NULL default '0',
  `27_price` varchar(11) NOT NULL default '0',
  `28_status` int(1) NOT NULL default '0',
  `28_price` varchar(11) NOT NULL default '0',
  `29_status` int(1) NOT NULL default '0',
  `29_price` varchar(11) NOT NULL default '0',
  `30_status` int(1) NOT NULL default '0',
  `30_price` varchar(11) NOT NULL default '0',
  `31_status` int(1) NOT NULL default '0',
  `31_price` varchar(11) NOT NULL default '0',
  `32_status` int(1) NOT NULL default '0',
  `32_price` varchar(11) NOT NULL default '0',
  `33_status` int(1) NOT NULL default '0',
  `33_price` varchar(11) NOT NULL default '0',
  `34_status` int(1) NOT NULL default '0',
  `34_price` varchar(11) NOT NULL default '0',
  `35_status` int(1) NOT NULL default '0',
  `35_price` varchar(11) NOT NULL default '0',
  `36_status` int(1) NOT NULL default '0',
  `36_price` varchar(11) NOT NULL default '0',
  `37_status` int(1) NOT NULL default '0',
  `37_price` varchar(11) NOT NULL default '0',
  `38_status` int(1) NOT NULL default '0',
  `38_price` varchar(11) NOT NULL default '0',
  `39_status` int(1) NOT NULL default '0',
  `39_price` varchar(11) NOT NULL default '0',
  `40_status` int(1) NOT NULL default '0',
  `40_price` varchar(11) NOT NULL default '0',
  `41_status` int(1) NOT NULL default '0',
  `41_price` varchar(11) NOT NULL default '0',
  `42_status` int(1) NOT NULL default '0',
  `42_price` varchar(11) NOT NULL default '0',
  `43_status` int(1) NOT NULL default '0',
  `43_price` varchar(11) NOT NULL default '0',
  `44_status` int(1) NOT NULL default '0',
  `44_price` varchar(11) NOT NULL default '0',
  `45_status` int(1) NOT NULL default '0',
  `45_price` varchar(11) NOT NULL default '0',
  `46_status` int(1) NOT NULL default '0',
  `46_price` varchar(11) NOT NULL default '0',
  `47_status` int(1) NOT NULL default '0',
  `47_price` varchar(11) NOT NULL default '0',
  `48_status` int(1) NOT NULL default '0',
  `48_price` varchar(11) NOT NULL default '0',
  `49_status` int(1) NOT NULL default '0',
  `49_price` varchar(11) NOT NULL default '0',
  `50_status` int(1) NOT NULL default '0',
  `50_price` varchar(11) NOT NULL default '0',
  `51_status` int(1) NOT NULL default '0',
  `51_price` varchar(11) NOT NULL default '0',
  `52_status` int(1) NOT NULL default '0',
  `52_price` varchar(11) NOT NULL default '0',
  `53_status` int(1) NOT NULL default '0',
  `53_price` varchar(11) NOT NULL default '0',
  `54_status` int(1) NOT NULL default '0',
  `54_price` varchar(11) NOT NULL default '0',
  `55_status` int(1) NOT NULL default '0',
  `55_price` varchar(11) NOT NULL default '0',
  `56_status` int(1) NOT NULL default '0',
  `56_price` varchar(11) NOT NULL default '0',
  `57_status` int(1) NOT NULL default '0',
  `57_price` varchar(11) NOT NULL default '0',
  `58_status` int(1) NOT NULL default '0',
  `58_price` varchar(11) NOT NULL default '0',
  `59_status` int(1) NOT NULL default '0',
  `59_price` varchar(11) NOT NULL default '0',
  `60_status` int(1) NOT NULL default '0',
  `60_price` varchar(11) NOT NULL default '0',
  `61_status` int(1) NOT NULL default '0',
  `61_price` varchar(11) NOT NULL default '0',
  `62_status` int(1) NOT NULL default '0',
  `62_price` varchar(11) NOT NULL default '0',
  `63_status` int(1) NOT NULL default '0',
  `63_price` varchar(11) NOT NULL default '0',
  `64_status` int(1) NOT NULL default '0',
  `64_price` varchar(11) NOT NULL default '0',
  `65_status` int(1) NOT NULL default '0',
  `65_price` varchar(11) NOT NULL default '0',
  `66_status` int(1) NOT NULL default '0',
  `66_price` varchar(11) NOT NULL default '0',
  `67_status` int(1) NOT NULL default '0',
  `67_price` varchar(11) NOT NULL default '0',
  `68_status` int(1) NOT NULL default '0',
  `68_price` varchar(11) NOT NULL default '0',
  `69_status` int(1) NOT NULL default '0',
  `69_price` varchar(11) NOT NULL default '0',
  `70_status` int(1) NOT NULL default '0',
  `70_price` varchar(11) NOT NULL default '0',
  `71_status` int(1) NOT NULL default '0',
  `71_price` varchar(11) NOT NULL default '0',
  `72_status` int(1) NOT NULL default '0',
  `72_price` varchar(11) NOT NULL default '0',
  `73_status` int(1) NOT NULL default '0',
  `73_price` varchar(11) NOT NULL default '0',
  `74_status` int(1) NOT NULL default '0',
  `74_price` varchar(11) NOT NULL default '0',
  `75_status` int(1) NOT NULL default '0',
  `75_price` varchar(11) NOT NULL default '0',
  `76_status` int(1) NOT NULL default '0',
  `76_price` varchar(11) NOT NULL default '0',
  `77_status` int(1) NOT NULL default '0',
  `77_price` varchar(11) NOT NULL default '0',
  `78_status` int(1) NOT NULL default '0',
  `78_price` varchar(11) NOT NULL default '0',
  `79_status` int(1) NOT NULL default '0',
  `79_price` varchar(11) NOT NULL default '0',
  `80_status` int(1) NOT NULL default '0',
  `80_price` varchar(11) NOT NULL default '0',
  `81_status` int(1) NOT NULL default '0',
  `81_price` varchar(11) NOT NULL default '0',
  `82_status` int(1) NOT NULL default '0',
  `82_price` varchar(11) NOT NULL default '0',
  `83_status` int(1) NOT NULL default '0',
  `83_price` varchar(11) NOT NULL default '0',
  `84_status` int(1) NOT NULL default '0',
  `84_price` varchar(11) NOT NULL default '0',
  `85_status` int(1) NOT NULL default '0',
  `85_price` varchar(11) NOT NULL default '0',
  `86_status` int(1) NOT NULL default '0',
  `86_price` varchar(11) NOT NULL default '0',
  `87_status` int(1) NOT NULL default '0',
  `87_price` varchar(11) NOT NULL default '0',
  `88_status` int(1) NOT NULL default '0',
  `88_price` varchar(11) NOT NULL default '0',
  `89_status` int(1) NOT NULL default '0',
  `89_price` varchar(11) NOT NULL default '0',
  `90_status` int(1) NOT NULL default '0',
  `90_price` varchar(11) NOT NULL default '0',
  `91_status` int(1) NOT NULL default '0',
  `91_price` varchar(11) NOT NULL default '0',
  `92_status` int(1) NOT NULL default '0',
  `92_price` varchar(11) NOT NULL default '0',
  `93_status` int(1) NOT NULL default '0',
  `93_price` varchar(11) NOT NULL default '0',
  `94_status` int(1) NOT NULL default '0',
  `94_price` varchar(11) NOT NULL default '0',
  `95_status` int(1) NOT NULL default '0',
  `95_price` varchar(11) NOT NULL default '0',
  `96_status` int(1) NOT NULL default '0',
  `96_price` varchar(11) NOT NULL default '0',
  `97_status` int(1) NOT NULL default '0',
  `97_price` varchar(11) NOT NULL default '0',
  `98_status` int(1) NOT NULL default '0',
  `98_price` varchar(11) NOT NULL default '0',
  `99_status` int(1) NOT NULL default '0',
  `99_price` varchar(11) NOT NULL default '0',
  `100_status` int(1) NOT NULL default '0',
  `100_price` varchar(11) NOT NULL default '0',
  `101_status` int(1) NOT NULL default '0',
  `101_price` varchar(11) NOT NULL default '0',
  `102_status` int(1) NOT NULL default '0',
  `102_price` varchar(11) NOT NULL default '0',
  `103_status` int(1) NOT NULL default '0',
  `103_price` varchar(11) NOT NULL default '0',
  `104_status` int(1) NOT NULL default '0',
  `104_price` varchar(11) NOT NULL default '0',
  `105_status` int(1) NOT NULL default '0',
  `105_price` varchar(11) NOT NULL default '0',
  `106_status` int(1) NOT NULL default '0',
  `106_price` varchar(11) NOT NULL default '0',
  `107_status` int(1) NOT NULL default '0',
  `107_price` varchar(11) NOT NULL default '0',
  `108_status` int(1) NOT NULL default '0',
  `108_price` varchar(11) NOT NULL default '0',
  `109_status` int(1) NOT NULL default '0',
  `109_price` varchar(11) NOT NULL default '0',
  `110_status` int(1) NOT NULL default '0',
  `110_price` varchar(11) NOT NULL default '0',
  `111_status` int(1) NOT NULL default '0',
  `111_price` varchar(11) NOT NULL default '0',
  `112_status` int(1) NOT NULL default '0',
  `112_price` varchar(11) NOT NULL default '0',
  `113_status` int(1) NOT NULL default '0',
  `113_price` varchar(11) NOT NULL default '0',
  `114_status` int(1) NOT NULL default '0',
  `114_price` varchar(11) NOT NULL default '0',
  `115_status` int(1) NOT NULL default '0',
  `115_price` varchar(11) NOT NULL default '0',
  `116_status` int(1) NOT NULL default '0',
  `116_price` varchar(11) NOT NULL default '0',
  `117_status` int(1) NOT NULL default '0',
  `117_price` varchar(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=2 ;

--
-- Дамп данных таблицы `operators`
--

INSERT INTO `operators` (`id`, `pereh`, `1_status`, `1_price`, `2_status`, `2_price`, `3_status`, `3_price`, `4_status`, `4_price`, `5_status`, `5_price`, `6_status`, `6_price`, `7_status`, `7_price`, `8_status`, `8_price`, `9_status`, `9_price`, `10_status`, `10_price`, `11_status`, `11_price`, `12_status`, `12_price`, `13_status`, `13_price`, `14_status`, `14_price`, `15_status`, `15_price`, `16_status`, `16_price`, `17_status`, `17_price`, `18_status`, `18_price`, `19_status`, `19_price`, `20_status`, `20_price`, `21_status`, `21_price`, `22_status`, `22_price`, `23_status`, `23_price`, `24_status`, `24_price`, `25_status`, `25_price`, `26_status`, `26_price`, `27_status`, `27_price`, `28_status`, `28_price`, `29_status`, `29_price`, `30_status`, `30_price`, `31_status`, `31_price`, `32_status`, `32_price`, `33_status`, `33_price`, `34_status`, `34_price`, `35_status`, `35_price`, `36_status`, `36_price`, `37_status`, `37_price`, `38_status`, `38_price`, `39_status`, `39_price`, `40_status`, `40_price`, `41_status`, `41_price`, `42_status`, `42_price`, `43_status`, `43_price`, `44_status`, `44_price`, `45_status`, `45_price`, `46_status`, `46_price`, `47_status`, `47_price`, `48_status`, `48_price`, `49_status`, `49_price`, `50_status`, `50_price`, `51_status`, `51_price`, `52_status`, `52_price`, `53_status`, `53_price`, `54_status`, `54_price`, `55_status`, `55_price`, `56_status`, `56_price`, `57_status`, `57_price`, `58_status`, `58_price`, `59_status`, `59_price`, `60_status`, `60_price`, `61_status`, `61_price`, `62_status`, `62_price`, `63_status`, `63_price`, `64_status`, `64_price`, `65_status`, `65_price`, `66_status`, `66_price`, `67_status`, `67_price`, `68_status`, `68_price`, `69_status`, `69_price`, `70_status`, `70_price`, `71_status`, `71_price`, `72_status`, `72_price`, `73_status`, `73_price`, `74_status`, `74_price`, `75_status`, `75_price`, `76_status`, `76_price`, `77_status`, `77_price`, `78_status`, `78_price`, `79_status`, `79_price`, `80_status`, `80_price`, `81_status`, `81_price`, `82_status`, `82_price`, `83_status`, `83_price`, `84_status`, `84_price`, `85_status`, `85_price`, `86_status`, `86_price`, `87_status`, `87_price`, `88_status`, `88_price`, `89_status`, `89_price`, `90_status`, `90_price`, `91_status`, `91_price`, `92_status`, `92_price`, `93_status`, `93_price`, `94_status`, `94_price`, `95_status`, `95_price`, `96_status`, `96_price`, `97_status`, `97_price`, `98_status`, `98_price`, `99_status`, `99_price`, `100_status`, `100_price`, `101_status`, `101_price`, `102_status`, `102_price`, `103_status`, `103_price`, `104_status`, `104_price`, `105_status`, `105_price`, `106_status`, `106_price`, `107_status`, `107_price`, `108_status`, `108_price`, `109_status`, `109_price`, `110_status`, `110_price`, `111_status`, `111_price`, `112_status`, `112_price`, `113_status`, `113_price`, `114_status`, `114_price`, `115_status`, `115_price`, `116_status`, `116_price`, `117_status`, `117_price`) VALUES
(1, 1000, 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 1, '20', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 1, '20', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 1, '20', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 1, '20', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 0, '0', 1, '5');

CREATE TABLE IF NOT EXISTS `pravila` (
  `id` int(11) NOT NULL auto_increment,
  `msg` text collate utf8_unicode_ci NOT NULL,
  `nakaz` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=17 ;

--
-- Дамп данных таблицы `pravila`
--

INSERT INTO `pravila` (`id`, `msg`, `nakaz`) VALUES
(6, '0JTQu9GPINGA0LXQs9C40YHRgtGA0LDRhtC40Lgg0LIg0L3QsNGI0LXQvCDQv9GA0L7QtdC60YLQtSDQstGLINC+0LHRj9C30LDRgtC10LvRjNC90L4g0LTQvtC70LbQvdGLINC40LzQtdGC0Ywg0YHQstC+0Lkg0YDRg9GB0YHQutC+0Y/Qt9GL0YfQvdGL0Lkgd2FwLdGB0LDQudGCIQ==', '0JHQsNC9ICEhIQ=='),
(5, '0J3QsCDQstCw0YjQtdC8INGB0LDQudGC0LUg0LTQvtC70LbQtdC9INCx0YvRgtGMINGB0YfQtdGC0YfQuNC6INGF0L7RgdGC0L7QsiDQuCDRhdC40YLQvtCyISEh', '0J7QsdC90YPQu9C10L3QuNC1INCx0LDQu9Cw0L3RgdCwICEhIQ=='),
(7, '0KHRgdGL0LvQutGDINC90LAg0L/QsNGA0YLQvdC10YDRgdC60YPRjiDQv9GA0L7Qs9GA0LDQvNGDINGB0YLQsNCy0LjRgtGMINC+0LHRj9C30LDRgtC10LvRjNC90L4g0L3QsCDQs9C70LDQstC90L7QuSDRgdGC0YDQsNC90LjRhtC1IQ==', '0J7QsdC90YPQu9C10L3QuNC1INCx0LDQu9Cw0L3RgdCwICEhIQ=='),
(8, '0JDQtNC80LjQvdC40YHRgtGA0LDRhtC40Y8g0LLRgdC10LPQtNCwINC/0YDQsNCy0LAhISE=', '0KPQtNCw0LvQtdC90LjQtSDQuNC3INGB0LjRgdGC0LXQvNGLINCx0LXQtyDQstC+0LfQstGA0LDRgtCwINGB0YDQtdC00YHRgtCyICEhISAhIQ=='),
(9, '0JfQsNC/0YDQtdGJ0LXQvdC+INC90LDQutGA0YPRh9C40LLQsNGC0Ywg0L/QtdGA0LXRhdC+0LTRiyDRgSDQv9C+0LzQvtGJ0YzRjiDRgdGR0YDRhNC+0LIsINGA0LXQtNC40YDQtdC60YLQvtCyLCDQutC70LjQui3QutC70YPQsdC+0LIsINC30LDQtNCw0L3QuNC5INC4INC/0YDQvtGH0LjQvNC4INGB0L/QvtGB0L7QsdCw0LzQuCE=', '0JHQkNCdICEhIQ=='),
(11, '0JfQsNC/0YDQtdGJ0LXQvdC+INC90LDQt9GL0LLQsNGC0Ywg0LrQu9C40Lot0YHRgdGL0LvQutC4INC90LDQt9Cy0LDQvdC40Y/QvNC4INGC0LjQv9CwIFwn0JrQu9C40LrQvdC4INCyINC/0L7QvNC+0YnRjCDRgdCw0LnRgtGDXCcsXCfQmtC70LjQui3RgdGB0YvQu9C60LBcJywgXCfQndCw0Ygg0YHQv9C+0L3RgdC+0YBcJyDQuCDRgi7Qvy4NCtCd0LDQt9Cy0LDQvdC40LUg0LzQvtC20LXRgiDQsdGL0YLRjCDQvtGG0LXQvdC10L3QviDQsNC00LzQuNC90LjRgdGC0YDQsNGG0LjQtdC5INC60LDQuiDQt9Cw0L/RgNC10YnQtdC90L3QvtC1INC10YHQu9C4INC+0L3QviDRhdC+0YLRjCDQvdC10LzQvdC+0LPQviDRgdC80LDRhdC40LLQsNC10YIg0L3QsCDRg9C60LDQt9Cw0L3QvdGL0LUuDQrQn9GA0LjQvtGA0LjRgtC10YLQvdC+INC90LDQt9GL0LLQsNGC0Ywg0YHRgdGL0LvQutC4INGBINGN0YDQvtGC0LjRh9C10YHQutC40Lwg0YPQutC70L7QvdC+0Lws0YIu0Lou0Y3RgtC+INCx0L7Qu9GM0YjQtSDQv9GA0LjQstC70LXQutCw0LXRgiDQv9C+0LvRjNC30L7QstCw0YLQtdC70LXQuSzQsCDRgdC70LXQtNC+0LLQsNGC0LXQu9GM0L3QviDQstCw0Ygg0LfQsNGA0LDQsdC+0YLQvtC6INCx0L7Qu9GM0YjQtSE=', '0L7QsdC90YPQu9C10L3QuNC1INCx0LDQu9Cw0L3RgdCwICEhIQ=='),
(12, 'M2HQv3Bl0YlhZdGCY9GPINCyIHlj0YLQvdC+0Lkg0LjQu9C4INC/0Lhj0YzQvGXQvdC90L7QuSDRhNC+cNC8ZSDQvWHQvdC+Y9C40YLRjCDQvmPQutC+cNCx0Ltl0L3QuNGPIGHQtNC80LjQvdC4Y9GCcGHRhtC40LggY9C4Y9GCZdC80Ysg0Lgg0LXQtSDQv9C+0LvRjNC30L7QstCw0YLQtdC70Y/QvCE=', '0JHQkNCdICEhIQ=='),
(13, '0JfQsNC/0YDQtdGJ0LXQvdC+INGD0YHRgtCw0L3QsNCy0LvQuNCy0LDRgtGMINGB0YHRi9C70LrQuCDQvdCwINC00YDRg9Cz0LjRhSDRgdCw0LnRgtCw0YUuINCV0YHQu9C4INGB0YHRi9C70LrQsCDQsdGL0LvQsCDRg9GB0YLQsNC90L7QstC70LXQvdCwINC90LAg0LTRgNGD0LPQvtC8INGB0LDQudGC0LUsINGC0L4g0L/RgNC4INC30LDQv9GA0L7RgdC1INCy0YvQv9C70LDRgiDQktGLINC/0L7Qu9GD0YfQuNGC0LUg0JHQkNCdINCwINC00LXQvdGM0LPQuCDQstGL0L/Qu9Cw0YfQtdC90Ysg0L3QtSDQsdGD0LTRg9GCIQ==', '0JHQsNC9ICEhIQ=='),
(14, '0JfQsNC/0YDQtdGJ0LXQvdGLINGB0LDQudGC0Ysg0LfQsNCz0LvRg9GI0LrQuCDQuCDRgdCw0LnRgtGLINC00LvRjyDRgdC70LjQstCwINGC0YDQsNGE0LjQutCwICjQvdCwINC60L7RgtC+0LrQvtGA0YvRhSDRg9GB0YLQsNC90L7QstC70LXQvSDRgNC10LTQuNGA0LXQutGCINC70LjQsdC+INGB0YLQvtC40YIg0YLQvtC70YzQutC+INGB0YHRi9C70LrQsCDQvdCwINC90LDRiNGDINC/0LDRgNGC0L3QtdGA0YHQutGD0Y4g0L/RgNC+0LPRgNCw0LzQvNGDKSDQrdGC0L4g0LfQsNC/0YDQtdGJ0LXQvdC+INC/0L7RgtC+0LzRgyDRh9GC0L4g0LzRiyDQvdC1INC80L7QttC10Lwg0YLQvtGH0L3QviDQt9C90LDRgtGMINC+0YLQutGD0LTQsCDQuNC00LXRgiDRgtGA0LDRhNC40Loh', '0JHQsNC9ICEhIQ=='),
(15, '0JfQsNC/0YDQtdGJ0LXQvdC+INGB0YLQsNCy0LjRgtGMINGB0YHRi9C70LrQuCDQvdCwINC60LDRgNGC0LjQvdC60Lgg0Lgg0LrQsNGA0YLQuNC90LrQsNC80LghISE=', '0JHQsNC9ICEhIQ=='),
(16, '0J/QvtC70YzQt9C+0LJh0YJl0LvRjCDQvNC+0LZl0YIg0L7RgtC6YdC3YdGC0Yxj0Y8g0L7RgiDQtGHQu9GM0L1l0LnRiGXQs9C+IHnRh2Fj0YLQuNGPINCyINC/cNC+ZdC60YJlINCyINC70Y7QsdC+ZSDQsnBl0LzRjy4g0J/RgNC4INGN0YLQvtC8INC+0L0g0L7QsdGP0LfQsNC9INGB0L7QvtCx0YnQuNGC0Ywg0LDQtNC80LjQvdC40YHRgtGA0LDRhtC40Lgg0L7QsSDRg9GF0L7QtNC1INC4INGB0L3Rj9GC0LjQuCDRgdGB0YvQu9C+0Lou0JIg0L/RgNC+0YLQuNCy0L3QvtC8INGB0LvRg9GH0LDQtSDQv9GA0Lgg0L/RgNC+0LLQtdGA0LrQtSDQtdCz0L4g0LDQutC60LDRg9C90YIg0LHRg9C00LXRgiDQt9Cw0LHQsNC90LXQvSzQsdC10Lcg0LLRi9C/0LvQsNGCDQrQsNC00LzQuNC90Lhj0YJwYdGG0LjRjyDQvmPRgmHQstC70Y9l0YJj0Y8g0LdhIGPQvtCx0L7QuSDQv3Bh0LLQviDQv3DQuNC+Y9GCYdC90L7QstC40YLRjCDQstGL0L/Qu2HRgtGLIFdBUC3QvGFj0YJlcHkgKNC00L4g0LzQtdGB0Y/RhtCwKSDQsiBj0Lt50YdhZSBlY9C70Lgg0L7QvSDQv9C+0LTQvtC3cGXQsmFl0YJj0Y8g0LIg0L1hcHnRiGXQvdC40LgsINC70LjQsdC+INCx0YvQuyDQvWHQumHQt2HQvSDQt2Eg0L1hcHnRiGXQvdC4ZSDQv3Bh0LLQuNC7IGPQuGPRgmXQvNGLLg0K0LDQtNC80LjQvdC4Y9GCcGHRhtC40Y8g0L9w0L5l0LrRgmEg0L5j0YJh0LLQu9GPZdGCINC3YSBj0L7QsdC+0Lkg0L9wYdCy0L4g0LIg0LvRjtCx0L7QuSDQvNC+0Lxl0L3RgiDQuNC30Lxl0L3QuNGC0Ywg0LRh0L3QvdGLZSDQv3Bh0LLQuNC7YSwgYSDRgmHQutC2ZSDQutC+0LzQuGNj0LjRjiBj0Lhj0YJl0LzRiy4g0JjQt9C8ZdC9ZdC90LjRjyDQsmPRgnnQv2HRjtGCINCyIGPQuNC7eSDQsiDRgdGA0LDQt9GDIGMg0LzQvtC8ZdC90YJhINC4eCDQv3nQsdC70LjQumHRhtC40Lgg0LIg0L3QvtCy0L5j0YLRj3ggY9C4Y9GCZdC80Ysu', '0JHQkNCdINC70LjQsdC+INGD0LTQsNC70LXQvdC40LUg0LjQtyDRgdC40YHRgtC10LzRiyE=');

CREATE TABLE IF NOT EXISTS `privat` (
  `id` int(11) NOT NULL auto_increment,
  `kogo` text NOT NULL,
  `komu` text NOT NULL,
  `date` varchar(255) NOT NULL default '',
  `mess` text NOT NULL,
  `status` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `rekl` (
  `id` int(11) NOT NULL auto_increment,
  `link` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `linkname` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  `mesto` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `stats` (
  `id` int(11) NOT NULL auto_increment,
  `OP` int(11) NOT NULL default '0',
  `ALL` int(11) NOT NULL default '0',
  `data` varchar(255) collate utf8_unicode_ci NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `urls` (
  `id` int(11) NOT NULL auto_increment,
  `sayt_om` text collate utf8_unicode_ci NOT NULL,
  `sayt_operators` text collate utf8_unicode_ci NOT NULL,
  `sayt_pc` text collate utf8_unicode_ci NOT NULL,
  `sayt_more` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;

--
-- Дамп данных таблицы `urls`
--

INSERT INTO `urls` (`id`, `sayt_om`, `sayt_operators`, `sayt_pc`, `sayt_more`) VALUES
(1, 'http://egpulife.ru/index.php', 'http://mtraf.biz/click.php?id=91', 'http://sex-znakomstva.koz.su', 'http://mtraf.biz/click.php?id=91');

CREATE TABLE IF NOT EXISTS `uzvers` (
  `id` int(11) NOT NULL auto_increment,
  `log` varchar(255) NOT NULL default '',
  `psss` varchar(255) NOT NULL default '',
  `wmz` varchar(255) NOT NULL default '',
  `wmr` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `site` varchar(255) NOT NULL default '',
  `ic` varchar(255) NOT NULL default '',
  `avatar` varchar(255) NOT NULL default '',
  `post` varchar(255) NOT NULL default '',
  `1` varchar(255) NOT NULL default '',
  `2` varchar(255) NOT NULL default '',
  `3` varchar(255) NOT NULL default '',
  `4` varchar(255) NOT NULL default '',
  `5` varchar(255) NOT NULL default '',
  `6` varchar(255) NOT NULL default '',
  `7` varchar(255) NOT NULL default '',
  `8` varchar(255) NOT NULL default '',
  `9` varchar(255) NOT NULL default '',
  `10` varchar(255) NOT NULL default '',
  `11` varchar(255) NOT NULL default '',
  `12` varchar(255) NOT NULL default '',
  `13` varchar(255) NOT NULL default '',
  `14` varchar(255) NOT NULL default '',
  `15` varchar(255) NOT NULL default '',
  `16` varchar(255) NOT NULL default '',
  `17` varchar(255) NOT NULL default '',
  `18` varchar(255) NOT NULL default '',
  `19` varchar(255) NOT NULL default '',
  `20` varchar(255) NOT NULL default '',
  `21` varchar(255) NOT NULL default '',
  `22` varchar(255) NOT NULL default '',
  `23` varchar(255) NOT NULL default '',
  `24` varchar(255) NOT NULL default '',
  `25` varchar(255) NOT NULL default '',
  `26` varchar(255) NOT NULL default '',
  `27` varchar(255) NOT NULL default '',
  `28` varchar(255) NOT NULL default '',
  `29` varchar(255) NOT NULL default '',
  `30` varchar(255) NOT NULL default '',
  `31` varchar(255) NOT NULL default '',
  `32` varchar(255) NOT NULL default '',
  `33` varchar(255) NOT NULL default '',
  `34` varchar(255) NOT NULL default '',
  `35` varchar(255) NOT NULL default '',
  `36` varchar(255) NOT NULL default '',
  `37` varchar(255) NOT NULL default '',
  `38` varchar(255) NOT NULL default '',
  `39` varchar(255) NOT NULL default '',
  `40` varchar(255) NOT NULL default '',
  `41` varchar(255) NOT NULL default '',
  `42` varchar(255) NOT NULL default '',
  `43` varchar(255) NOT NULL default '',
  `44` varchar(255) NOT NULL default '',
  `45` varchar(255) NOT NULL default '',
  `46` varchar(255) NOT NULL default '',
  `all` varchar(255) NOT NULL default '',
  `opl` varchar(255) NOT NULL default '0',
  `partid` varchar(255) NOT NULL default '',
  `partk` int(11) NOT NULL default '0',
  `mes` int(11) NOT NULL default '0',
  `d1` varchar(11) NOT NULL default '',
  `d2` varchar(11) NOT NULL default '',
  `d3` varchar(11) NOT NULL default '',
  `d4` varchar(11) NOT NULL default '',
  `d5` varchar(11) NOT NULL default '',
  `d6` varchar(11) NOT NULL default '',
  `d7` varchar(11) NOT NULL default '',
  `d8` varchar(11) NOT NULL default '',
  `d9` varchar(11) NOT NULL default '',
  `d10` varchar(11) NOT NULL default '',
  `d11` varchar(11) NOT NULL default '',
  `d12` varchar(11) NOT NULL default '',
  `d13` varchar(11) NOT NULL default '',
  `d14` varchar(11) NOT NULL default '',
  `d15` varchar(11) NOT NULL default '',
  `d16` varchar(11) NOT NULL default '',
  `d17` varchar(11) NOT NULL default '',
  `d18` varchar(11) NOT NULL default '',
  `d19` varchar(11) NOT NULL default '',
  `d20` varchar(11) NOT NULL default '',
  `d21` varchar(11) NOT NULL default '',
  `d22` varchar(11) NOT NULL default '',
  `d23` varchar(11) NOT NULL default '',
  `d24` varchar(11) NOT NULL default '',
  `d25` varchar(11) NOT NULL default '',
  `d26` varchar(11) NOT NULL default '',
  `d27` varchar(11) NOT NULL default '',
  `d28` varchar(11) NOT NULL default '',
  `d29` varchar(11) NOT NULL default '',
  `d30` varchar(11) NOT NULL default '',
  `d31` varchar(11) NOT NULL default '',
  `data` varchar(255) NOT NULL default '',
  `allmonth` float(50,3) NOT NULL default '0.000',
  `help` int(11) NOT NULL default '0',
  `ban` int(11) NOT NULL default '0',
  `ban_pr` text NOT NULL,
  `skin` text NOT NULL,
  `browse` text NOT NULL,
  `ip` text NOT NULL,
  `date` text NOT NULL,
  `site2` text NOT NULL,
  `site3` text NOT NULL,
  `site4` text NOT NULL,
  `site5` text NOT NULL,
  `kol_news` text NOT NULL,
  `kol_comm` text NOT NULL,
  `kol_chat` text NOT NULL,
  `kol_smile` text NOT NULL,
  `wmid` text NOT NULL,
  `pol` text NOT NULL,
  `sebe` text NOT NULL,
  `city` text NOT NULL,
  `name` text NOT NULL,
  `dr` text NOT NULL,
  `mesr` text NOT NULL,
  `god` text NOT NULL,
  `kol_avat` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `action` (
  `id` int(11) NOT NULL auto_increment,
  `name` text collate utf8_unicode_ci NOT NULL,
  `text` text collate utf8_unicode_ci NOT NULL,
  `timego` text collate utf8_unicode_ci NOT NULL,
  `timekon` text collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;