Files
nexusphp/_db/dbstructure.sql
T

2505 lines
289 KiB
SQL
Raw Normal View History

2020-12-26 01:42:23 +08:00
-- phpMyAdmin SQL Dump
-- version 3.3.2deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 18, 2010 at 01:10 AM
-- Server version: 5.1.41
-- PHP Version: 5.3.2-1ubuntu4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `nexus20100517`
--
-- --------------------------------------------------------
--
-- Table structure for table `adminpanel`
--
CREATE TABLE IF NOT EXISTS `adminpanel` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`info` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
--
-- Dumping data for table `adminpanel`
--
INSERT INTO `adminpanel` (`id`, `name`, `url`, `info`) VALUES
(1, 'Add user', 'adduser.php', 'Create new user account'),
(3, 'Reset Users Password', 'reset.php', 'Rest lost Passwords'),
(4, 'Mass PM', 'staffmess.php', 'Send PM to all users'),
(5, 'List Unconnectable Users', 'notconnectable.php', 'View All Unconnectable Users'),
(6, 'Poll overview', 'polloverview.php', 'View poll votes'),
(7, 'Warned users', 'warned.php', 'See all warned users on tracker'),
(8, 'FreeLeech', 'freeleech.php', 'Set ALL Torrents At Special State.'),
(9, 'FAQ Management', 'faqmanage.php', 'Edit/Add/Delete FAQ Page'),
(10, 'Rules Management', 'modrules.php', 'Edit/Add/Delete RULES Page'),
(11, 'Category Manage', 'catmanage.php', 'Manage torrents categories at your site');
-- --------------------------------------------------------
--
-- Table structure for table `advertisements`
--
CREATE TABLE IF NOT EXISTS `advertisements` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`enabled` tinyint(1) NOT NULL DEFAULT '0',
`type` enum('bbcodes','xhtml','text','image','flash') NOT NULL,
`position` enum('header','footer','belownav','belowsearchbox','torrentdetail','comment','interoverforums','forumpost','popup') NOT NULL,
`displayorder` tinyint(3) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`parameters` text NOT NULL,
`code` text NOT NULL,
`starttime` datetime NOT NULL,
`endtime` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `advertisements`
--
-- --------------------------------------------------------
--
-- Table structure for table `agent_allowed_exception`
--
CREATE TABLE IF NOT EXISTS `agent_allowed_exception` (
`family_id` tinyint(3) unsigned NOT NULL,
`name` varchar(100) NOT NULL DEFAULT '',
`peer_id` varchar(20) NOT NULL,
`agent` varchar(100) NOT NULL,
`comment` varchar(200) NOT NULL DEFAULT '',
KEY `family_id` (`family_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `agent_allowed_exception`
--
INSERT INTO `agent_allowed_exception` (`family_id`, `name`, `peer_id`, `agent`, `comment`) VALUES
(16, 'uTorrent 1.80B (Build 6838)', '-UT180B-', 'uTorrent/180B(6838)', 'buggy build that always seeding bad request');
-- --------------------------------------------------------
--
-- Table structure for table `agent_allowed_family`
--
CREATE TABLE IF NOT EXISTS `agent_allowed_family` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`family` varchar(50) NOT NULL DEFAULT '',
`start_name` varchar(100) NOT NULL DEFAULT '',
`peer_id_pattern` varchar(200) NOT NULL,
`peer_id_match_num` tinyint(3) unsigned NOT NULL,
`peer_id_matchtype` enum('dec','hex') NOT NULL DEFAULT 'dec',
`peer_id_start` varchar(20) NOT NULL,
`agent_pattern` varchar(200) NOT NULL,
`agent_match_num` tinyint(3) unsigned NOT NULL,
`agent_matchtype` enum('dec','hex') NOT NULL DEFAULT 'dec',
`agent_start` varchar(100) NOT NULL,
`exception` enum('yes','no') NOT NULL DEFAULT 'no',
`allowhttps` enum('yes','no') NOT NULL DEFAULT 'no',
`comment` varchar(200) NOT NULL DEFAULT '',
`hits` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `agent_allowed_family`
--
INSERT INTO `agent_allowed_family` (`id`, `family`, `start_name`, `peer_id_pattern`, `peer_id_match_num`, `peer_id_matchtype`, `peer_id_start`, `agent_pattern`, `agent_match_num`, `agent_matchtype`, `agent_start`, `exception`, `allowhttps`, `comment`, `hits`) VALUES
(1, 'Azureus 2.5.0.4', 'Azureus 2.5.0.4', '/^-AZ2504-/', 0, 'dec', '-AZ2504-', '/^Azureus 2.5.0.4/', 0, 'dec', 'Azureus 2.5.0.4', 'no', 'yes', '', 0),
(2, 'uTorrent 1.6.1', 'uTorrent 1.6.1', '/^-UT1610-/', 0, 'dec', '-UT1610-', '/^uTorrent\\/1610/', 0, 'dec', 'uTorrent/1610', 'no', 'no', '', 0),
(3, 'Bittorrent 6.x', 'Bittorrent 6.0.1', '/^M6-([0-9])-([0-9])--/', 2, 'dec', 'M6-0-1--', '/^BitTorrent\\/6([0-9])([0-9])([0-9])/', 3, 'dec', 'BitTorrent/6010', 'no', 'yes', '', 0),
(4, 'Deluge 0.x', 'Deluge 0.5.8.9', '/^-DE0([0-9])([0-9])([0-9])-/', 3, 'dec', '-DE0589-', '/^Deluge 0\\.([0-9])\\.([0-9])\\.([0-9])/', 3, 'dec', 'Deluge 0.5.8.9', 'no', 'yes', '', 0),
(5, 'Transmission1.x', 'Transmission 1.06 (build 5136)', '/^-TR1([0-9])([0-9])([0-9])-/', 3, 'dec', '-TR1060-', '/^Transmission\\/1\\.([0-9])([0-9])/', 3, 'dec', 'Transmission/1.06', 'no', 'yes', '', 0),
(6, 'RTorrent 0.x(with libtorrent 0.x)', 'rTorrent 0.8.0 (with libtorrent 0.12.0)', '/^-lt([0-9A-E])([0-9A-E])([0-9A-E])([0-9A-E])-/', 4, 'hex', '-lt0C00-', '/^rtorrent\\/0\\.([0-9])\\.([0-9])\\/0\\.([1-9][0-9]*)\\.(0|[1-9][0-9]*)/', 4, 'dec', 'rtorrent/0.8.0/0.12.0', 'no', 'no', '', 3),
(7, 'Rufus 0.x', 'Rufus 0.6.9', '', 0, 'dec', '', '/^Rufus\\/0\\.([0-9])\\.([0-9])/', 2, 'dec', 'Rufus/0.6.9', 'no', 'no', '', 0),
(8, 'Azureus 3.x', 'Azureus 3.0.5.0', '/^-AZ3([0-9])([0-9])([0-9])-/', 3, 'dec', '-AZ3050-', '/^Azureus 3\\.([0-9])\\.([0-9])\\.([0-9])/', 3, 'dec', 'Azureus 3.0.5.0', 'no', 'yes', '', 0),
(9, 'uTorrent 1.7.x', 'uTorrent 1.7.5', '/^-UT17([0-9])([0-9])-/', 2, 'dec', '-UT1750-', '/^uTorrent\\/17([0-9])([0-9])/', 2, 'dec', 'uTorrent/1750', 'no', 'yes', '', 0),
(10, 'BitRocket 0.x', 'BitRocket 0.3.3(32)', '/^-BR0([0-9])([1-9][0-9]*)-/', 2, 'dec', '-BR0332-', '/^BitRocket\\/0\\.([0-9])\\.([0-9])\\(([1-9][0-9]*)\\) libtorrent\\/0\\.([1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)/', 6, 'dec', 'BitRocket/0.3.3(32) libtorrent/0.13.0.0', 'no', 'yes', '', 0),
(11, 'MLDonkey 2.9.x', 'MLDonkey 2.9.2', '/^-ML2\\.9\\.([0-9])-/', 1, 'dec', '-ML2.9.2-', '/^MLDonkey\\/2\\.9\\.([0-9])/', 1, 'dec', 'MLDonkey/2.9.2', 'no', 'yes', '', 0),
(12, 'uTorrent 1.8.x', 'uTorrent 1.8.0', '/^-UT18([0-9])([0-9])-/', 2, 'dec', '-UT1800-', '/^uTorrent\\/18([0-9])([0-9])/', 2, 'dec', 'uTorrent/1800', 'no', 'yes', '', 0),
(13, 'Azureus 4.x', 'Vuze 4.0.0.2', '/^-AZ4([0-9])([0-9])([0-9])-/', 3, 'dec', '-AZ4002-', '/^Azureus 4\\.([0-9])\\.([0-9])\\.([0-9])/', 3, 'dec', 'Azureus 4.0.0.2', 'no', 'yes', '', 0),
(14, 'SymTorrent', '', '', 0, 'dec', '', '/^SymTorrent/', 0, 'dec', 'SymTorrent', 'no', 'no', '', 0),
(15, 'Deluge 1.x', 'Deluge 1.1.6', '/^-DE1([0-9])([0-9])([0-9])-/', 3, 'dec', '-DE1160-', '/^Deluge 1\\.([0-9])\\.([0-9])/', 2, 'dec', 'Deluge 1.1.6', 'no', 'yes', '', 0),
(16, 'uTorrent 1.8xB', 'uTorrent 1.80 Beta (build 9137)', '/^-UT18([0-9])B-/', 1, 'dec', '-UT180B-', '/^uTorrent\\/18([0-9])B\\(([1-9][0-9]*)\\)/', 2, 'dec', 'uTorrent/180B(9137)', 'no', 'yes', '', 0),
(17, 'uTorrent 2.x.x', 'uTorrent 2.0(build 17624)', '/^-UT2([0-9])([0-9])([0-9])-/', 3, 'dec', '-UT2000-', '/^uTorrent\\/2([0-9])([0-9])([0-9])/', 3, 'dec', 'uTorrent/2000', 'no', 'yes', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `allowedemails`
--
CREATE TABLE IF NOT EXISTS `allowedemails` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`value` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `allowedemails`
--
INSERT INTO `allowedemails` (`id`, `value`) VALUES
(1, '@st.zju.edu.cn @gstu.zju.edu.cn @fa.zju.edu.cn @zuaa.zju.edu.cn');
-- --------------------------------------------------------
--
-- Table structure for table `attachments`
--
CREATE TABLE IF NOT EXISTS `attachments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`width` smallint(6) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`filename` varchar(255) NOT NULL DEFAULT '',
`dlkey` char(32) NOT NULL,
`filetype` varchar(50) NOT NULL DEFAULT '',
`filesize` bigint(20) unsigned NOT NULL DEFAULT '0',
`location` varchar(255) NOT NULL,
`downloads` mediumint(8) NOT NULL DEFAULT '0',
`isimage` tinyint(1) unsigned NOT NULL DEFAULT '0',
`thumb` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `pid` (`userid`,`id`),
KEY `dateline` (`added`,`isimage`,`downloads`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `attachments`
--
-- --------------------------------------------------------
--
-- Table structure for table `audiocodecs`
--
CREATE TABLE IF NOT EXISTS `audiocodecs` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`image` varchar(255) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=10 ;
--
-- Dumping data for table `audiocodecs`
--
INSERT INTO `audiocodecs` (`id`, `name`, `image`, `sort_index`) VALUES
(1, 'FLAC', '', 0),
(2, 'APE', '', 0),
(3, 'DTS', '', 0),
(4, 'MP3', '', 0),
(5, 'OGG', '', 0),
(6, 'AAC', '', 0),
(7, 'Other', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `avps`
--
CREATE TABLE IF NOT EXISTS `avps` (
`arg` varchar(20) NOT NULL DEFAULT '',
`value_s` text NOT NULL,
`value_i` int(11) NOT NULL DEFAULT '0',
`value_u` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`arg`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `avps`
--
INSERT INTO `avps` (`arg`, `value_s`, `value_i`, `value_u`) VALUES
('lastcleantime', '', 0, 1274104801),
('last24', '', 947, 1211708476),
('lastcleantime2', '', 0, 1274103601),
('lastcleantime3', '', 0, 1274101801),
('lastcleantime4', '', 0, 1274079901),
('lastcleantime5', '', 0, 1273652875);
-- --------------------------------------------------------
--
-- Table structure for table `bannedemails`
--
CREATE TABLE IF NOT EXISTS `bannedemails` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`value` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `bannedemails`
--
INSERT INTO `bannedemails` (`id`, `value`) VALUES
(1, '@test.com');
-- --------------------------------------------------------
--
-- Table structure for table `bans`
--
CREATE TABLE IF NOT EXISTS `bans` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`addedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`comment` varchar(255) NOT NULL DEFAULT '',
`first` bigint(20) NOT NULL,
`last` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
KEY `first_last` (`first`,`last`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `bans`
--
-- --------------------------------------------------------
--
-- Table structure for table `bitbucket`
--
CREATE TABLE IF NOT EXISTS `bitbucket` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`owner` mediumint(8) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`public` enum('0','1') NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `bitbucket`
--
-- --------------------------------------------------------
--
-- Table structure for table `blocks`
--
CREATE TABLE IF NOT EXISTS `blocks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`blockid` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `userfriend` (`userid`,`blockid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `blocks`
--
-- --------------------------------------------------------
--
-- Table structure for table `bookmarks`
--
CREATE TABLE IF NOT EXISTS `bookmarks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `userid_torrentid` (`userid`,`torrentid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `bookmarks`
--
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE IF NOT EXISTS `categories` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`mode` tinyint(3) unsigned NOT NULL DEFAULT '1',
`class_name` varchar(255) NOT NULL DEFAULT '',
`name` varchar(30) NOT NULL,
`image` varchar(255) NOT NULL,
`sort_index` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `mode_sort` (`mode`,`sort_index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=410 ;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `mode`, `class_name`, `name`, `image`, `sort_index`) VALUES
(401, 4, 'c_movies', 'Movies', 'catsprites.png', 0),
(402, 4, 'c_tvseries', 'TV Series', 'catsprites.png', 3),
(403, 4, 'c_tvshows', 'TV Shows', 'catsprites.png', 4),
(404, 4, 'c_doc', 'Documentaries', 'catsprites.png', 1),
(405, 4, 'c_anime', 'Animations', 'catsprites.png', 2),
(406, 4, 'c_mv', 'Music Videos', 'catsprites.png', 5),
(407, 4, 'c_sports', 'Sports', 'catsprites.png', 6),
(408, 4, 'c_hqaudio', 'HQ Audio', 'catsprites.png', 8),
(409, 4, 'c_misc', 'Misc', 'catsprites.png', 7);
-- --------------------------------------------------------
--
-- Table structure for table `caticons`
--
CREATE TABLE IF NOT EXISTS `caticons` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL DEFAULT '',
`folder` varchar(255) NOT NULL,
`cssfile` varchar(255) NOT NULL DEFAULT '',
`multilang` enum('yes','no') NOT NULL DEFAULT 'no',
`secondicon` enum('yes','no') NOT NULL DEFAULT 'no',
`designer` varchar(50) NOT NULL DEFAULT '',
`comment` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `caticons`
--
INSERT INTO `caticons` (`id`, `name`, `folder`, `cssfile`, `multilang`, `secondicon`, `designer`, `comment`) VALUES
(1, 'SceneTorrents mod', 'scenetorrents/', 'pic/category/chd/scenetorrents/catsprites.css', 'yes', 'no', 'NexusPHP', 'Modified from SceneTorrents');
-- --------------------------------------------------------
--
-- Table structure for table `cheaters`
--
CREATE TABLE IF NOT EXISTS `cheaters` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`anctime` mediumint(8) unsigned NOT NULL DEFAULT '0',
`seeders` mediumint(5) unsigned NOT NULL DEFAULT '0',
`leechers` mediumint(8) unsigned NOT NULL DEFAULT '0',
`hit` tinyint(3) unsigned NOT NULL DEFAULT '0',
`dealtby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`dealtwith` tinyint(1) NOT NULL DEFAULT '0',
`comment` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `cheaters`
--
-- --------------------------------------------------------
--
-- Table structure for table `chronicle`
--
CREATE TABLE IF NOT EXISTS `chronicle` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`txt` text,
PRIMARY KEY (`id`),
KEY `added` (`added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `chronicle`
--
-- --------------------------------------------------------
--
-- Table structure for table `codecs`
--
CREATE TABLE IF NOT EXISTS `codecs` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
--
-- Dumping data for table `codecs`
--
INSERT INTO `codecs` (`id`, `name`, `sort_index`) VALUES
(1, 'H.264', 0),
(2, 'VC-1', 0),
(3, 'Xvid', 0),
(4, 'MPEG-2', 0),
(5, 'Other', 0);
-- --------------------------------------------------------
--
-- Table structure for table `comments`
--
CREATE TABLE IF NOT EXISTS `comments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user` mediumint(8) unsigned NOT NULL DEFAULT '0',
`torrent` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`text` text,
`ori_text` text,
`editedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`editdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`offer` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `user` (`user`),
KEY `torrent_id` (`torrent`,`id`),
KEY `offer_id` (`offer`,`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `comments`
--
-- --------------------------------------------------------
--
-- Table structure for table `countries`
--
CREATE TABLE IF NOT EXISTS `countries` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`flagpic` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=108 ;
--
-- Dumping data for table `countries`
--
INSERT INTO `countries` (`id`, `name`, `flagpic`) VALUES
(1, 'Sweden', 'sweden.gif'),
(2, 'United States of America', 'usa.gif'),
(3, 'Russia', 'russia.gif'),
(4, 'Finland', 'finland.gif'),
(5, 'Canada', 'canada.gif'),
(6, 'France', 'france.gif'),
(7, 'Germany', 'germany.gif'),
(8, '荳ュ蝗ス', 'china.gif'),
(9, 'Italy', 'italy.gif'),
(10, 'Denmark', 'denmark.gif'),
(11, 'Norway', 'norway.gif'),
(12, 'United Kingdom', 'uk.gif'),
(13, 'Ireland', 'ireland.gif'),
(14, 'Poland', 'poland.gif'),
(15, 'Netherlands', 'netherlands.gif'),
(16, 'Belgium', 'belgium.gif'),
(17, 'Japan', 'japan.gif'),
(18, 'Brazil', 'brazil.gif'),
(19, 'Argentina', 'argentina.gif'),
(20, 'Australia', 'australia.gif'),
(21, 'New Zealand', 'newzealand.gif'),
(23, 'Spain', 'spain.gif'),
(24, 'Portugal', 'portugal.gif'),
(25, 'Mexico', 'mexico.gif'),
(26, 'Singapore', 'singapore.gif'),
(70, 'India', 'india.gif'),
(65, 'Albania', 'albania.gif'),
(29, 'South Africa', 'southafrica.gif'),
(30, 'South Korea', 'southkorea.gif'),
(31, 'Jamaica', 'jamaica.gif'),
(32, 'Luxembourg', 'luxembourg.gif'),
(34, 'Belize', 'belize.gif'),
(35, 'Algeria', 'algeria.gif'),
(36, 'Angola', 'angola.gif'),
(37, 'Austria', 'austria.gif'),
(38, 'Yugoslavia', 'yugoslavia.gif'),
(39, 'Western Samoa', 'westernsamoa.gif'),
(40, 'Malaysia', 'malaysia.gif'),
(41, 'Dominican Republic', 'dominicanrep.gif'),
(42, 'Greece', 'greece.gif'),
(43, 'Guatemala', 'guatemala.gif'),
(44, 'Israel', 'israel.gif'),
(45, 'Pakistan', 'pakistan.gif'),
(46, 'Czech Republic', 'czechrep.gif'),
(47, 'Serbia', 'serbia.gif'),
(48, 'Seychelles', 'seychelles.gif'),
(50, 'Puerto Rico', 'puertorico.gif'),
(51, 'Chile', 'chile.gif'),
(52, 'Cuba', 'cuba.gif'),
(53, 'Congo', 'congo.gif'),
(54, 'Afghanistan', 'afghanistan.gif'),
(55, 'Turkey', 'turkey.gif'),
(56, 'Uzbekistan', 'uzbekistan.gif'),
(57, 'Switzerland', 'switzerland.gif'),
(58, 'Kiribati', 'kiribati.gif'),
(59, 'Philippines', 'philippines.gif'),
(60, 'Burkina Faso', 'burkinafaso.gif'),
(61, 'Nigeria', 'nigeria.gif'),
(62, 'Iceland', 'iceland.gif'),
(63, 'Nauru', 'nauru.gif'),
(64, 'Slovenia', 'slovenia.gif'),
(66, 'Turkmenistan', 'turkmenistan.gif'),
(67, 'Bosnia Herzegovina', 'bosniaherzegovina.gif'),
(68, 'Andorra', 'andorra.gif'),
(69, 'Lithuania', 'lithuania.gif'),
(71, 'Netherlands Antilles', 'nethantilles.gif'),
(72, 'Ukraine', 'ukraine.gif'),
(73, 'Venezuela', 'venezuela.gif'),
(74, 'Hungary', 'hungary.gif'),
(75, 'Romania', 'romania.gif'),
(76, 'Vanuatu', 'vanuatu.gif'),
(77, 'Vietnam', 'vietnam.gif'),
(78, 'Trinidad & Tobago', 'trinidadandtobago.gif'),
(79, 'Honduras', 'honduras.gif'),
(80, 'Kyrgyzstan', 'kyrgyzstan.gif'),
(81, 'Ecuador', 'ecuador.gif'),
(82, 'Bahamas', 'bahamas.gif'),
(83, 'Peru', 'peru.gif'),
(84, 'Cambodia', 'cambodia.gif'),
(85, 'Barbados', 'barbados.gif'),
(86, 'Bangladesh', 'bangladesh.gif'),
(87, 'Laos', 'laos.gif'),
(88, 'Uruguay', 'uruguay.gif'),
(89, 'Antigua Barbuda', 'antiguabarbuda.gif'),
(90, 'Paraguay', 'paraguay.gif'),
(93, 'Thailand', 'thailand.gif'),
(92, 'Union of Soviet Socialist Republics', 'ussr.gif'),
(94, 'Senegal', 'senegal.gif'),
(95, 'Togo', 'togo.gif'),
(96, 'North Korea', 'northkorea.gif'),
(97, 'Croatia', 'croatia.gif'),
(98, 'Estonia', 'estonia.gif'),
(99, 'Colombia', 'colombia.gif'),
(100, 'Lebanon', 'lebanon.gif'),
(101, 'Latvia', 'latvia.gif'),
(102, 'Costa Rica', 'costarica.gif'),
(103, 'Egypt', 'egypt.gif'),
(104, 'Bulgaria', 'bulgaria.gif'),
(105, 'Isla de Muerte', 'jollyroger.gif'),
(107, 'Pirates', 'jollyroger.gif');
-- --------------------------------------------------------
--
-- Table structure for table `downloadspeed`
--
CREATE TABLE IF NOT EXISTS `downloadspeed` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;
--
-- Dumping data for table `downloadspeed`
--
INSERT INTO `downloadspeed` (`id`, `name`) VALUES
(1, '64kbps'),
(2, '128kbps'),
(3, '256kbps'),
(4, '512kbps'),
(5, '768kbps'),
(6, '1Mbps'),
(7, '1.5Mbps'),
(8, '2Mbps'),
(9, '3Mbps'),
(10, '4Mbps'),
(11, '5Mbps'),
(12, '6Mbps'),
(13, '7Mbps'),
(14, '8Mbps'),
(15, '9Mbps'),
(16, '10Mbps'),
(17, '48Mbps'),
(18, '100Mbit');
-- --------------------------------------------------------
--
-- Table structure for table `faq`
--
CREATE TABLE IF NOT EXISTS `faq` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`link_id` smallint(5) unsigned NOT NULL,
`lang_id` smallint(5) unsigned NOT NULL DEFAULT '6',
`type` enum('categ','item') NOT NULL DEFAULT 'item',
`question` text NOT NULL,
`answer` text NOT NULL,
`flag` tinyint(3) unsigned NOT NULL DEFAULT '1',
`categ` smallint(5) unsigned NOT NULL DEFAULT '0',
`order` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=476 ;
--
-- Dumping data for table `faq`
--
INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES
(1, 1, 25, 'categ', '遶咏せ菫。諱ッ', '', 1, 0, 1),
(2, 2, 25, 'categ', '逕ィ謌キ菫。諱ッ', '', 1, 0, 2),
(3, 3, 25, 'categ', '謨ー謐ョ扈溯ョ。', '', 1, 0, 3),
(4, 4, 25, 'categ', '蜿大ク', '', 1, 0, 4),
(5, 5, 25, 'categ', '荳玖スス', '', 1, 0, 5),
(6, 6, 25, 'categ', '謌題ッ・諤取キ謠仙合荳玖スス騾溷コヲ', '', 1, 0, 6),
(7, 7, 25, 'categ', '謌醍噪鄂醍サ懈署萓帛膚SP我スソ逕ィ莠€乗莉」逅€よ蠎碑ッ・諤惹ケ亥★', '', 1, 0, 7),
(8, 8, 25, 'categ', '荳コ莉€荵域霑樔ク堺ク奇シ滄埓驕捺陲ォ鄂醍ォ吝ア剰反莠', '', 1, 0, 8),
(9, 9, 25, 'categ', '螯よ棡莉手ソ咎㈹謇セ荳榊芦謌醍噪髣ョ鬚倡噪隗」遲費シ梧隸・諤惹ケ亥萱', '', 1, 0, 9),
(10, 10, 25, 'item', '蛻ー蠎穂サ€荵域弍BTittorrent会シ滓隕∝ヲゆス墓燕閭ス蠑芦霑咏アサ遞句コ擾シ', '蜿ら恚<a class="faqlink" href="http://www.btfaq.com/">Brian逧ВitTorrent FAQ蜿頑欠蟇シ</a>縲', 1, 1, 1),
(11, 11, 25, 'item', '謌台サャ謐仙譚・逧蝶荳雁頭蜆ソ蜴サ莠', '謇€譛画告蜉ゥ逧蝶逕ィ莠守サエ謚、譛榊苅蝎ィ逧エケ逕ィ縲', 1, 1, 2),
(12, 12, 25, 'item', '謌台サ主頭驥悟庄莉・謳槫芦貅蝉サ」遐∫噪諡キ雍晢シ', '霑吩クェTracker菴ソ逕ィ逧弍NexusPHP逧サ」遐√€ゆサ」遐∬執蜿紋コ句ョ懶シ瑚ッキ逵<a class="faqlink" href="aboutnexus.php">霑咎㈹</a>縲<br />\r\nNexusPHP逧サ」遐∵弍譬ケ謐ョTBSource逧コ千∵隼蜀咏噪縲5BDev鄂醍ォ呻シ卦racker貅蝉サ」遐∽サ・蜿顔、セ蛹コ隶コ蝮幃蝨ィ霑咎㈹<a class="faqlink" href="http://www.tbdev.net/">TBDev.net</a>縲', 1, 1, 3),
(13, 13, 25, 'item', '謌第ウィ蜀御コク€荳ェ雍ヲ蜿キ菴弍蜊エ豐。譛画噺蛻ー鬪瑚ッぐ莉カ', '霑吝セ域怏蜿ッ閭ス譏ッTracker謇€蝨ィ逧恪蜉。蝎ィ鄂醍サ懷邇ー莠琉鬚倥€ゆス蜿ッ莉・蝪ォ蜀<a href="confirm_resend.php" class="faqlink">霑吩クェ陦ィ譬シ</a>隶ゥ譛榊苅蝎ィ驥榊書鬪瑚ッぐ莉カ縲<br />\r\n騾壼クク豐。譛牙セ怜芦遑ョ隶、逧ウィ蜀悟ク先姐莨壼惠24蟆乗慮蜷手「ォ蛻髯、梧園莉・菴蜿ッ莉・蝨ィ隨ャ莠悟、ゥ驥崎ッ輔€る怙隕∵ウィ諢冗噪譏ッ悟ヲよ棡菴隨ャ荳€谺。豐。譛画噺蛻ー遑ョ隶、菫。檎ャャ莠梧ャ。譛牙セ亥、ァ逧庄閭ス莉咲┯譌豕墓噺蛻ー遑ョ隶、菫。梧園莉・謐「荳€荳ェE-mail蝨ー蝮€譏ッ荳€荳ェ荳埼漠逧クサ諢上€', 1, 2, 1),
(14, 14, 25, 'item', '謌大ソ倩ョー莠畑謌キ蜷/蟇∽コシ瑚蟶ョ謌第伽蝗樊擂荵茨シ', '隸キ蝪ォ蜀<a class="faqlink" href="recover.php">霑吩クェ陦ィ蜊</a>莉ャ蟆滑逋サ蠖戊ッヲ諠書霑倡サ吩ス', 1, 2, 2),
(15, 15, 25, 'item', '謌大庄莉・扈呎エヲ蜿キ謾ケ荳ェ蜷榊ュ嶺ケ茨シ', '謌台サャ蟷カ荳肴髪謖∫サ呵エヲ蜿キ謾ケ蜷阪€', 1, 2, 3),
(16, 16, 25, 'item', '蜿ッ莉・蛻髯、荳€荳ェ亥キイ遑ョ隶、逧シ芽エヲ蜿キ荵茨シ', '謌台サャ荳€闊ャ荳肴署萓幄ッ・邀サ譛榊苅梧園莉・荳崎ヲ∬ッキ豎ょ唖髯、莉サ菴穂ク€荳ェ陲ォ菴驍€隸キ逧ク仙捷縲', 1, 2, 4),
(17, 17, 25, 'item', '驍」荵茨シ御サ€荵域弍謌醍噪蛻コォ邇atio会シ', '蟆ア蝨ィ鬘オ髱「蜉溯玄逧ク矩擇縲<br />\r\n<br />\r\n<img src="pic/ratio.png" alt="ratio" />\r\n<br />\r\n<br />\r\n蛹コ蛻紛菴灘莠ォ邇柱迢ャ遶句莠ォ邇弍蠕磯㍾隕∫噪縲よ紛菴灘莠ォ邇豕ィ逧弍閾ェ莉惹ス蜈・遶咏せ莉・譚・瑚エヲ蜿キ逧紛菴謎ク贋シ荳惹ク玖スス驥上€り€檎峡遶句莠ォ邇髓亥ッケ豈丈ク€荳ェ菴豁」蝨ィ荳玖スス謌門★遘咲噪譁サカ縲r\n<br />\r\n<br />\r\n菴蜿ッ閭ス逵句芦荳、遘咲ャヲ蜿キ譚・莉」譖ソ謨ー蟄暦シ"Inf."瑚ソ吩クェ譏ッ譌髯撰シnfinity臥噪郛ゥ蜀呻シ梧э諤晄弍菴ク玖スス驥丈クコ0蟄苓鰍瑚€御ク贋シ驥丞譏ッ莉サ諢丈ク€荳ェ髱樣峺逧€シ(荳贋シ/荳玖スス驥=譌遨キ螟ァ)"---"悟コ碑ッ・陲ォ隗クコ窶應ク榊庄逕ィ窶晢シ瑚ソ呵ッエ譏惹コク玖スス驥丞柱荳贋シ驥城譏ッ0蟄苓鰍縲(荳贋シ/荳玖スス驥=0/0 霑呎弍荳€荳ェ荳咲。ョ螳夂噪驥)縲r\n', 1, 2, 5),
(18, 18, 25, 'item', '荳コ莉€荵域逧ИP蝨ー蝮€譏セ遉コ蝨ィ謌醍噪荳ェ莠コ菫。諱ッ鬘オ髱「荳奇シ', '蜿ェ譛我ス閾ェ蟾ア蜥檎ス醍ォ儁oderator蜿贋サ・荳顔噪邂。逅遭蜿ッ莉・逵句芦菴逧ИP蝨ー蝮€蜥窪mail縲よ勸騾夂畑謌キ譏ッ逵倶ク榊芦霑吩コ帑ソ。諱ッ逧€', 1, 2, 6),
(21, 21, 25, 'item', '荳コ莉€荵域€懷庄霑樊磁窶晄弍窶懷凄窶晢シ滂シ井サ・蜿贋クコ莉€荵域髴€隕∝豕ィ霑吩クェ髣ョ鬚假シ滂シ', 'Tracker譛榊苅蝎ィ隶、荳コ菴蝨ィ髦イ轣ォ蠅吝錘惠NAT譯・謗・蜷趣シ悟ケカ荳疲裏豕墓磁謾カ蜈カ莉鳳eer逧ソ樊磁隸キ豎ゅ€r\n<br />\r\n<br />\r\n霑呎э蜻ウ逹€蜈カ螳噪螟ァ謇ケPeer譌豕戊ソ樊磁蛻ー菴悟宵閭ス逕ア菴霑樊磁蛻ー莉紋サャ縲よ峩邉溽ウ慕噪諠譏ッ悟ヲよ棡荳、荳ェPeer驛ス螟コ手ソ呎キ逧憾諤シ御サ紋サャ蟆ョ悟豕戊ソ樊磁蛻ー蟇ケ譁ケ縲りソ吝ッケ莠取紛菴馴€溷コヲ譛臥捩髱槫クク荳榊茜逧スア蜩阪€r\n<br />\r\n<br />\r\n蟇ケ莠手ソ吩クェ髣ョ鬚假シ梧怏莉・荳玖ァ」蜀ウ譁ケ蠑擾シ壼ッケ莠朱亟轣ォ蠅呻シ梧遠蠑€逕ィ莠取磁謾カ霑樊磁逧ォッ蜿」亥叉菴蝨ィBT螳「謌キ遶ッ荳ュ螳壻ケ臥噪遶ッ蜿」会シ帛ッケ莠晒AT御ス髴€隕鄂ョNAT譛榊苅蝎ィ菴ソ逕ィBasic NAT譁ケ蠑剰€御ク肴弍NAPT井ク榊酔逧キッ逕ア譛臥捩荳榊酔逧ソ占。梧婿蠑上€らソサ髦キッ逕ア譁。」謌門ョ「譛崎ョコ蝮帙€ゆス荵溷庄莉・蝨ィ<a class="faqlink" href="http://portforward.com/">PortForward</a>謇セ蛻ー蜈ウ莠取ュ、髣ョ鬚倡噪螟ァ驥丈ソ。諱ッ峨€r\n\r\n\r\n\r\n\r\n\r\n', 1, 2, 9),
(22, 22, 25, 'item', '荳榊酔逧畑謌キ遲臥コァ莉」陦ィ莠サ€荵亥性荵会シ', '<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n<td class="embedded" width="200" valign="top">&nbsp; <b class="Peasant_Name">Peasant</b></td>\r\n<td class="embedded" width="5">&nbsp;</td>\r\n<td class="embedded"> 陲ォ髯咲コァ逧畑謌キ御サ紋サャ譛30螟ゥ譌カ髣エ譚・謠仙合蛻コォ邇シ悟凄蛻吩サ紋サャ莨夊「ォ雕「縲ゆク崎蜿題。ィ雜」蜻ウ逶貞螳ケ帑ク崎逕ウ隸キ蜿区ュ體セ謗・帑ク崎荳贋シ蟄怜ケ輔€r\n</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="User_Name">User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">譁ー逕ィ謌キ逧サ倩ョ、郤ァ蛻ォ縲ょ宵閭ス蝨ィ豈丞捉蜈ュ荳ュ蜊12轤ケ閾ウ豈丞捉譌・譎壻ク11轤ケ59蛻書蟶ァ榊ュ舌€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="PowerUser_Name">Power User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦荳€荳ェ驍€隸キ蜷埼「晢シ帛庄莉・逶エ謗・蜿大クァ榊ュ撰シ帛庄莉・譟・逵起FO譁。」帛庄莉・譟・逵狗畑謌キ蛻苓。ィ帛庄莉・隸キ豎らサュ遘搾シ 蜿ッ莉・蜿鷹€隸キ 蜿ッ莉・譟・逵区賜陦梧ヲ懶シ帛庄莉・譟・逵句畑謌キ逧ァ榊ュ仙紙蜿イ(螯よ棡逕ィ謌キ髫千ァ∫ュ臥コァ譛ェ隶セ鄂ョ荳コ"蠑コ") 蜿ッ莉・蛻髯、閾ェ蟾ア荳贋シュ怜ケ輔€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="EliteUser_Name">Elite User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded"><b class="EliteUser_Name">Elite User</b>蜿贋サ・荳顔畑謌キ蟆∝ュ倩エヲ蜿キ蜷惹ク堺シ夊「ォ蛻髯、縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="CrazyUser_Name">Crazy User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦荳、荳ェ驍€隸キ蜷埼「晢シ帛庄莉・蝨ィ蛛夂ァ/荳玖スス/蜿大ク噪譌カ蛟咎€画叫蛹ソ蜷肴ィ。蠑上€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="InsaneUser_Name">Insane User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蜿ッ莉・譟・逵区勸騾壽律蠢励€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VeteranUser_Name">Veteran User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦荳我クェ驍€隸キ蜷埼「晢シ帛庄莉・譟・逵句畑謌キ逧ョコ縲∝ク門ュ仙紙蜿イ縲<b class="VeteranUser_Name">Veteran User</b>蜿贋サ・荳顔畑謌キ莨壽ーク霑應ソ晉蕗雍ヲ蜿キ縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="ExtremeUser_Name">Extreme User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蜿ッ莉・譖エ譁ー霑悄逧、夜Κ菫。諱ッ帛庄莉・譟・逵畿xtreme User隶コ蝮帙€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="UltimateUser_Name">Ultimate User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦莠比クェ驍€隸キ蜷埼「昴€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="NexusMaster_Name">Nexus Master</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦蜊∽クェ驍€隸キ蜷埼「昴€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <img class="star" src="pic/trans.gif" alt="Star" /></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">荳コ鄂醍ォ呎告谺セ逧クサ縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VIP_Name">雍オ螳セ(VIP)</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">蜥<b class="NexusMaster_Name">Nexus Master</b>諡・譛臥嶌蜷梧揀髯仙ケカ陲ォ隶、荳コ譏ッ邊セ闍ア謌仙遭縲ょ髯、閾ェ蜉ィ髯咲コァ縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="User_Name">蜈カ螳</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">閾ェ螳壻ケ臥ュ臥コァ縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="Retiree_Name">蜈サ閠∵酪(Retiree)</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">騾€莨大錘逧ョ。逅蜻倥€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="Uploader_Name">蜿大ク遭(Uploader)</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">荳捺ウィ逧書蟶€€ょ髯、閾ェ蜉ィ髯咲コァ帛庄莉・譟・逵句諺蜷咲畑謌キ逧悄螳櫁コォ莉ス縲</td>\r\n</tr>\r\n<tr>\r\n<td cla
(23, 23, 25, 'item', '', '<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n<td class="embedded" width="200" valign="top">&nbsp; <b class="Peasant_Name">Peasant</b></td>\r\n<td class="embedded" width="5">&nbsp;</td>\r\n<td class="embedded" valign="top"><br />\r\n1.ソ50GB0.4€<br />\r\n2.ソ100GB0.5€<br />\r\n3.ソ200GB0.6€<br />\r\n4.ソ400GB0.7€<br />\r\n5.ソ800GB0.8€</td>\r\n</tr>\r\n\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="PowerUser_Name">Power User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">450G1.05<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆0.95</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="EliteUser_Name">Elite User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">8120G1.55r\n<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆1.45</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="CrazyUser_Name">Crazy User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">15300G2.05r\n<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆1.95</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="InsaneUser_Name">Insane User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">25500G2.55<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆2.45</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VeteranUser_Name">Veteran User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">40750G3.05<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆2.95</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="ExtremeUser_Name">Extreme User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">601TB3.55<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆3.45</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="UltimateUser_Name">Ultimate User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">801.5TB4.05<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆3.95</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="NexusMaster_Name">Nexus Master</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">1003TB4.55<br />\r\n蠖捺擅莉カ隨ヲ蜷域慮蟆4.45</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <img class="star" src="pic/trans.gif" alt="Star" /></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">€
(25, 25, 25, 'item', '荳コ莉€荵域恚蜿倶ク崎蜈・', '逕ィ謌キ謨ー逶ョ譛画園髯仙宛井ス蜿ッ莉・譟・逵銀€憺ヲ夜。オ-&gt;遶咏せ謨ー謐ョ-&gt;荳企剞窶晢シ峨€ょス楢セセ蛻ー驍」荳ェ謨ー逶ョ譌カ莉ャ莨壼●豁「謗・蜿玲眠謌仙遭縲<br />\r\n逕ア莠朱撼豢サ霍畑謌キ(髟ソ譛滉ク堺スソ逕ィ雍ヲ蜿キ逧畑謌キ)蠑戊オキ雍ヲ蜿キ襍コ先オェ雍ケ悟屏豁、謌台サャ蟆炊隸・驛ィ蛻畑謌キ御クコ蜈カ莉匁Φ蜉蜈・逕ィ謌キ閻セ蜃コ遨コ髣エ縲<br />\r\n蜈ウ莠朱撼豢サ霍畑謌キ貂炊隗悟盾閠<a class="faqlink" href="rules.php">隗</a>縲', 1, 2, 13),
(26, 26, 25, 'item', '諤取キ閾ェ螳壻ケ牙、エ蜒擾シ', '鬥門梧伽荳€荳ェ菴蝟懈ャ「逧崟迚シ悟ス鍋┯莠ク崎霑晏渚謌台サャ逧<a class="faqlink" href="rules.php">隗</a>縲ら┯蜷惹ス隕∵伽荳€荳ェ蟄俶叛螳噪蝨ー譁ケ梧ッ疲婿隸エ謌台サャ閾ェ蟾ア逧<a class="faqlink" href="bitbucket-upload.php">荳贋シ蝎ィ</a>縲ょ莠取恪蜉。蝎ィ雍溯スス逧€莉ャ譖エ蟶梧悍菴崟迚ク贋シ蛻ー蛻ォ逧ス醍ォ呻シ檎┯蜷主ーURL邊倩エエ蛻ー菴<a class="faqlink" href="usercp.php?action=personal">謗ァ蛻カ髱「譚ソ</a>逧、エ蜒酋RL驛ィ蛻€ <br />\r\n<br />\r\n隸キ荳崎ヲ∽クコ莠オ玖ッ募、エ蜒剰€悟書蟶悶€ょヲよ棡荳€蛻。コ蛻ゥ御ス惠菴ッヲ諠。オ髱「逵句芦螳€', 1, 2, 14),
(27, 27, 25, 'item', '譛€蟶ク隗∫噪謨ー謐ョ譛ェ閭ス蠕怜芦譖エ譁ー逧次蝗', '<ul>\r\n<li>譛榊苅蝎ィ霑スス/譛ェ蜩榊コ斐€ょ宵隕∝ー晁ッ慕捩菫晄戟莨夊ッ晉峩蛻ー譛榊苅蝎ィ諱「螟榊桃蠎(荳肴耳闕占ソ樒サュ謇句勘蛻キ譁ー瑚ソ呎キ莨壼刈驥肴恪蜉。蝎ィ雍溯スス)縲</li>\r\n<li>菴豁」蝨ィ菴ソ逕ィ荳咲ィウ螳夂噪螳「謌キ遶ッ縲ょヲよ棡菴諠ウ隕∽スソ逕ィ豬玖ッ慕沿謌冶€VS迚域悽御ス髴€隕∬蟾ア謇ソ諡罰豁、蟶ヲ譚・逧」朱勦縲</li>\r\n</ul>', 1, 3, 1),
(28, 28, 25, 'item', '譛€菴ウ逧ー晁ッ', '<ul>\r\n<li>螯よ棡菴蠖灘燕豁」荳玖スス/荳贋シァ榊ュ仙ケカ荳榊惠菴畑謌キ隸ヲ諠。オ髱「荳ュ御ス蜿ッ莉・遲我ク€莨壽シコ蛻カ霑幄。梧焔蜉ィ譖エ譁ー縲</li>\r\n<li>遑ョ菫昜ス豁」遑ョ蝨ー蜈ウ髣ュ莠ョ「謌キ遶ッ霓ッ莉カ悟凄蛻儺racker譛榊苅蝎ィ譌豕墓噺蛻ー"event=completed"逧ソ。蜿キ縲</li>\r\n<li>螯よ棡Tracker譛榊苅蝎ィ謖ゆコシ御ク崎ヲ∝●豁「荳贋シ縲ょ宵隕∝惠菴騾€蜃コ螳「謌キ遶ッ荵句燕譛榊苅蝎ィ諱「螟榊キ・菴懶シ梧園譛臥噪謨ー謐ョ驛ス莨壼セ怜芦豁」遑ョ蝨ー譖エ譁ー縲</li>\r\n</ul>', 1, 3, 2),
(29, 29, 25, 'item', '謌大庄莉・莉サ諢城€画叫Bittorrent螳「謌キ遶ッ霓ッ莉カ荵茨シ', '譬ケ謐ョ<a class="faqlink" href="aboutnexus.php">NexusPHP</a>蟇ケ蟶ク隗。itTorrent螳「謌キ遶ッ逧オ玖ッ包シ檎岼蜑肴悽遶儺racker<b>蜿ェ蜈∬ョク</b>菴ソ逕ィ莉・荳狗噪BitTorrent螳「謌キ遶ッ霓ッ莉カ縲<br />\r\n<a class="faqlink" href="aboutnexus.php">NexusPHP</a>逧オ玖ッ墓冠蜻雁庄<a class="faqlink" href="http://www.nexusphp.com/wiki/%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%B5%8B%E8%AF%95%E6%8A%A5%E5%91%8A">蝨ィ豁、譟・逵</a>縲r\n<br />\r\n<b>Windows:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://www.utorrent.com">uTorrent</a>: 1.6.1, 1.7.5, 1.7.6, 1.7.7, 1.8Beta(Build 10364), 2.0(Build 17624)蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://www.bittorrent.com">BitTorrent</a>: 6.0.1, 6.0.2, 6.0.3蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://deluge-torrent.org">Deluge</a>: 0.5.9.1, 1.1.6蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://rufus.sourceforge.net">Rufus</a>: 0.6.9, 0.7.0蜿雁錘扈ュ迚域悽</li>\r\n</ul>\r\n<b>Linux:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://deluge-torrent.org">Deluge</a>: 0.5.9.1, 1.1.6蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://rufus.sourceforge.net">Rufus</a>: 0.6.9, 0.7.0蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://www.transmissionbt.com">Transmission</a>: 1.21蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://libtorrent.rakshasa.no">rTorrent</a>: 0.8.0ibtorrent 0.12.0謌門錘扈ュ迚域悽牙所蜷守サュ迚域悽</li>\r\n<li><a class="faqlink" href="http://www.rahul.net/dholmes/ctorrent/">Enhanced CTorrent</a>: 3.3.2蜿雁錘扈ュ迚域悽</li>\r\n</ul>\r\n<b>MacOS X:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://www.transmissionbt.com">Transmission</a>: 1.21蜿雁錘扈ュ迚域悽</li>\r\n<li><a class="faqlink" href="http://sourceforge.net/projects/bitrocket/">BitRocket</a>: 0.3.3(32)蜿雁錘扈ュ迚域悽</li>\r\n</ul>\r\n<b>Symbian (莉セ帶オ玖ッ):</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://amorg.aut.bme.hu/projects/symtorrent">SymTorrent</a>: 1.41蜿雁錘扈ュ迚域悽</li>\r\n</ul>\r\n<br />\r\n\r\n<b>莉・荳雁ョ「謌キ遶ッ蝨ィhttps謾ッ謖∵婿髱「</b>\r\n<ul>\r\n<li>uTorrent 1.61: 譌豕募㊥遑ョ隗」譫辛ttps逧дracker, 蜷梧慮蝨ィ菴ソ逕ィ莨壼ー蟾ア譬クコuTorrent 1.5</li>\r\n<li>Rufus: 豐。譛栄ttps謾ッ謖, 蟷カ荳泌キイ扈丞蟷エ豐。譛臥サァ扈ュ蠑€蜿</li>\r\n<li>rtorrent: 髴€隕∵焔蟾・隶セ鄂ョSSL隸∽ケヲ, 隸ヲ扈ソ。諱ッ隸キ閾ェ陦梧衍髦螳俶婿鄂醍ォ呵ッエ譏</li>\r\n</ul>\r\n\r\n<br />\r\n\r\n蜷梧慮隸キ蟆ス驥城∩蜈堺スソ逕ィ螟コ取オ玖ッ墓悄逧ョ「謌キ遶ッ霓ッ莉カ, 螯VTorrent 1.8.0B縲r\n\r\n荳コ莠サ取悽遶吝セ怜芦譛€螂ス逧ク玖スス菴馴ェ,謌台サャ鬮伜コヲ謗ィ闕<a class="faqlink" href="http://www.utorrent.com/download.php">uTorrent</a> 莉・蜿<a class="faqlink" href="http://azureus.sourceforge.net/download.php">Azureus</a>霑吩ク、荳ェ霓ッ莉カ逧怙譁ー遞ウ螳夂沿縲', 1, 5, 3),
(30, 30, 25, 'item', '荳コ莉€荵域豁」蝨ィ荳玖スス/蛛夂ァ咲噪荳€荳ェ遘榊ュ蝉シ壼惠謌醍噪隸ヲ諠。オ髱「荳ュ陲ォ蛻怜螟壽ャ。', '螯よ棡蝗荳コ譟蝉コ帛次蝗(豈疲婿隸エ豁サ譛コ悟ョ「謌キ遶ッ螟ア蜴サ蜩榊コ)菴ョ「謌キ遶ッ髱樊ュ」蟶ク騾€蜃コ蟷カ荳比ス蜿磯㍾譁ー謇灘シ€螳シ悟ョシ夊「ォ蛻蛻ー荳€荳ェ蜈ィ譁ー逧Пeer ID, 霑呎キ螳仞遉コ荳コ荳€荳ェ蜈ィ譁ー逧ァ榊ュ舌€り€梧立逧ァ榊ュ仙ーーク霑應ク堺シ壽噺蛻ー窶彳vent=completed窶晄窶彳vent=stopped窶晉噪菫。蜿キ悟屏豁、蟆ク€逶エ陲ォ蛻怜逶エ蛻ーTracker貂炊雜慮逧Пeer縲ーア蜿ッ莉・莠シ悟ョ怙蜷惹シ壽カ亥、ア逧€', 1, 3, 4),
(31, 31, 25, 'item', '荳コ莉€荵域蟾イ扈丞ョ梧/蜿匁カ育噪遘榊ュ蝉サ咲┯蝨ィ謌醍噪隸ヲ諠。オ髱「驥鯉シ', '譛我ク€莠帛ョ「謌キ遶ッ梧ッ泌ヲりッエTorrentStorm蜥君ova Torrent悟惠蜿匁カ域ョ梧荳€荳ェ莉サ蜉。逧慮蛟吩ク崎蜷禅racker譛榊苅蝎ィ豁」遑ョ蜿鷹€∽ソ。蜿キ縲ょ惠驍」譬キ逧ュ蜀オ荳具シ卦racker譛榊苅蝎ィ蟆ク€逶エ菫晄戟遲牙セソ。蜿キ逧憾諤シ亥屏豁、莨壻ク€逶エ蛻怜遘榊ュ千噪迥カ諤∽クコ蛛夂ァ/荳玖スス逧憾諤シ臥峩蛻ーTracker貂炊雜慮逧Пeer縲よ裏隗ーア蜿ッ莉・莠シ悟ョ怙蜷惹シ壽カ亥、ア逧€', 1, 3, 5),
(33, 33, 25, 'item', '螟唔P蜿ッ莉・莉惹ク榊酔逧鳩閼醍匳蠖/荳玖スス蜷暦シ滂シ', '譏ッ逧シ檎岼蜑控racker譛榊苅蝎ィ謾ッ謖∝黒荳ェ逕ィ謌キ莉惹ササ諢丈クェ謨ー逧ИP蝨ー蝮€蜷梧慮隶ソ髣ョ/荳玖スス縲<br />\r\n辟カ閠鯉シ悟ッケ莠主黒遘肴弍譛蛾剞蛻カ逧€ょッケ莠取ッ丈クェ遘榊ュ撰シ梧怙螟壼隶ク3荳ェ蛛夂ァ咲噪霑樊磁梧怙螟壼宵蜈∬ョク1荳ェ荳玖スス逧ソ樊磁郁ソ呎э蜻ウ逹€悟ッケ莠取汾荳ェ遘榊ュ蝉ス荳€谺。蜿ェ閭ス蝨ィ荳€荳ェ蝨ー譁ケ荳玖スス峨€', 1, 3, 7),
(36, 36, 25, 'item', '荳コ莉€荵域荳崎蜿大クァ榊ュ撰シ', '隸キ逵<a class="faqlink" href="rules.php">隗</a>縲', 1, 4, 1),
(37, 37, 25, 'item', '謌鷹怙隕∵サ。雜ウ蜩ェ莠帶擅莉カ謇崎蜈・蜿大クー冗サ', '謇€蠢。サ貊。雜ウ逧擅莉カ喀r\n<ul>\r\n<li>蜈キ譛臥ィウ螳夂噪襍コ先擂貅</li>\r\n<li>蟷ウ蝮ッ丞捉襍コ仙書蟶焚驥丈ク榊ー台コ5荳ェ</li>\r\n</ul>\r\n菴。サ遑ョ菫晏書蟶噪譁サカ隨ヲ蜷井サ・荳狗音蠕:\r\n<ul>\r\n<li>荳崎カソ7螟ゥ荵句燕</li>\r\n<li>菴。サ隕∵怏蛛夂ァ咲噪閭ス蜉幢シ梧庄莉・遑ョ菫晁蟆第怏謨井セ帷ァ24蟆乗慮縲</li>\r\n<li>菴髴€隕∵怏閾ウ蟆題セセ蛻ー2MBit逧ク贋シ蟶ヲ螳ス縲</li>\r\n</ul>\r\n螯よ棡菴隶、荳コ菴隨ヲ蜷井サ・荳頑擅莉カ碁ぅ荵井ク崎ヲ∫柑雎ォ<a class="faqlink" href="contactstaff.php">閨皮ウサ邂。逅</a>蜷ァ縲<br />\r\n<b>隶ー菴擾シ</b> 莉皮サ。ォ蜀吩ス筏隸キ∫。ョ菫晉筏隸キ荳ュ蛹性菴ク贋シ騾溷コヲ莉・蜿贋ス隶。蛻貞書蟶噪蜀ョケ逧アサ蝙九€<br />\r\n蜿ェ譛我サ皮サ。ォ蜀吝ケカ荳皮サ剰ソ驥崎€剔逧筏隸キ謇堺シ夂コウ蜈・謌台サャ逧㍽縲', 1, 4, 2),
(38, 38, 25, 'item', '謌大庄莉・蜿大ク莉ャ霑咎㈹逧ァ榊ュ仙芦蛻ォ逧Уracker譛榊苅蝎ィ荵茨シ', '荳崎縲よ莉ャ譏ッ荳€荳ェ蟆溜逧€剞蛻カ逕ィ謌キ謨ー逧、セ蛹コ縲ょ宵譛画ウィ蜀檎畑謌キ謇崎螟滉スソ逕ィ謌台サャ逧Уracker縲ょー莉ャ逧ァ榊ュ先枚莉カ蜿大ク芦蜈カ莉傍racker譛榊苅蝎ィ譏ッ蠕貞患逧シ悟屏荳コ扈晏、ァ螟壽焚隸募崟荳玖スス霑吩コ帶枚莉カ逧ココ蟆裏豕戊ソ樊磁蛻ー謌台サャ逧恪蜉。蝎ィ縲ょー莉ャ逧ァ榊ュ仙書蟶芦蜈カ莉傍racker蜿ェ隶ゥ驍」驥檎噪逕ィ謌キ諱シ諤抵シ亥屏荳コ譌豕穂ク玖スス牙ケカ荳泌ッケ謌台サャ莠ァ逕滓阜蟇ケ諠サェ梧園莉・霑咏ァ崎。御クコ譏ッ謌台サャ譏ッ荳崎螳ケ蠢咲噪縲<br />\r\n<br />\r\n螯よ棡蜈カ莉也ス醍ォ咏噪邂。逅遭蜷第莉ャ荳セ謚・謌台サャ逧ァ榊ュ占「ォ蜿大ク惠莉紋サャ逧ォ咏せ荳奇シ悟ッケ豁、雍溯エ」逧畑謌キ蟆屏豁、陲ォ遘サ蜃コ謌台サャ逧、セ蛹コ縲<br />\r\n<br />\r\n菴弍蟇ケ莠惹サ取莉ャ霑咎㈹荳玖スス蠕怜芦逧枚莉カ御ス蜿ッ莉・髫乗э謫肴而螳サャ亥書蟶€遑ョ隸エ譏惹クコ<b>迢ャ蜊</b>逧コ宣勁螟厄シ峨€ゆス蜿ッ莉・蛻カ菴懷嘗荳€荳ェ遘榊ュ撰シ悟蜈・蜈カ莉傍racker逧慍蝮€悟ケカ蜿大ク芦菴蝟懈ャ「逧ォ咏せ荳翫€', 1, 4, 3),
(39, 39, 25, 'item', '荳玖スス譚・逧枚莉カ隸・諤惹ケ域遠蠑€', '蝨ィ霑吩サス<a class="faqlink" href="formats.php">謖</a>驥碁擇謇セ謇セ逵句制縲', 1, 5, 1),
(40, 40, 25, 'item', '謌台ク玖スス莠ク€驛ィ逕オ蠖ア御ス弍荳肴逋スCAM/TS/TC/SCR譏ッ莉€荵域э諤?', '蝨ィ霑吩サス<a class="faqlink" href="videoformats.php">謖</a>驥碁擇謇セ謇セ逵句制縲', 1, 5, 2),
(41, 41, 25, 'item', '荳コ莉€荵井ク€荳ェ蜿ッ逕ィ逧ァ榊ュ仙ソス辟カ蟆ア豸亥、ア莠', '莉・荳句次蝗驛ス莨壼ッシ閾エ霑吩クェ邇ー雎。逧邇ー:<br />\r\n(<b>1</b>) 謖臥<a class="faqlink" href="rules.php">鄂醍ォ呵ァ</a>瑚ソ吩クェ遘榊ュ蝉ク咲ャヲ蜷郁ァ蟾イ陲ォ蛻髯、縲r\n<br />\r\n(<b>2</b>) 蜿大ク€屏荳コ譁サカ蟄伜惠髣ョ鬚倩€悟唖髯、莠€ゆク€闊ャ譚・隸エ悟書蟶€シ壼書蟶ク€荳ェ譖ソ莉」逧沿譛ャ逧€<br />\r\n(<b>3</b>) 蝨ィ髟ソ譌カ髣エ譁ュ遘榊錘遘榊ュ占「ォ閾ェ蜉ィ蛻髯、莠€', 1, 5, 3),
(42, 42, 25, 'item', '謌題ッ・諤取キ扈ュ莨サカ謌冶€サ吩ク€荳ェ譁サカ扈ュ遘榊造', '謇灘シ€謇ゥ螻募錐荳コ.torrent逧枚莉カ悟ス謎スョ「謌キ遶ッ霓ッ莉カ隸「髣ョ菫晏ュ倡噪逶ョ蠖墓慮碁€画叫蟾イ扈丞ュ伜惠逧枚莉カ蟄俶叛逧岼蠖包シ悟ョーア閭ス螟溷シ€蟋狗サュ莨/扈ュ遘堺コ€', 1, 5, 4),
(43, 43, 25, 'item', '荳コ莉€荵域ク玖スス譛画慮蛟吝●蝨ィ99%?', '謇€荳玖スス蛻ー逧援谿オ雜雁、夲シ悟ッサ謇セ諡・譛我ス謇€郛コ蟆醍噪迚ョオ逧酔莨エ蟆ア蟆序蠕苓カ雁峅髫セ縲りソ吝ーア譏ッ荳コ莉€荵域怏譌カ蛟吝惠荳玖スス蜊ウ蟆ョ梧慮蛟呻シ碁€溷コヲ莨壼序蠕鈴撼蟶ク諷「檎爆閾ウ螳悟蛛懈ュ「莠€ょ宵隕∬€仙ソュ牙€呻シ梧譌ゥ謌匁劒蜑ゥ荳狗噪驛ィ蛻ク€螳夊螟滉ク玖スス蛻ー逧€', 1, 5, 5),
(44, 44, 25, 'item', '"驛ィ蛻嶋蟶碁ェ瑚ッ∝"霑呎擅菫。諱ッ譏ッ莉€荵域э諤晢シ', 'BT逧ョ「謌キ遶ッ莨壽」€譟・螳園謾カ蛻ー逧焚謐ョ逧ョ梧紛諤ァ縲ょヲよ棡譟蝉ク€荳ェ迚ョオ蝨ィ鬪瑚ッ∽クュ蜃コ髞呻シ碁ぅ荵郁ソ吩クェ迚ョオ蟆「ォ驥肴眠荳玖スス縲ょ蟆皮噪蜩亥ク碁ェ瑚ッ漠隸ッ譏ッ髱槫クク蟶ク隗∫噪邇ー雎。御ク咲畑諡ソ€<br />\r\n<br />\r\n譛我コ帛ョ「謌キ遶ッ譛牙ア剰反蜷台ス蜿鷹€漠隸ッ謨ー謐ョ逧莉門ョ「謌キ遶ッ逧粥閭ス縲ょヲよ棡譛芽ソ吩クェ騾蛾。ケ梧怙螂ス謇灘シ€螳€ょ屏荳コ霑呎キ蜿ッ莉・菫晁ッ∝ヲよ棡譟蝉クェ蜷御シエ扈丞クク蜷台ス蜿鷹€漠隸ッ逧焚謐ョ譌カ悟ョシ夊「ォ螻剰反縲', 1, 5, 6),
(45, 45, 25, 'item', '100MB螟ァ蟆冗噪遘榊ュ撰シ梧諤惹ケ井ク倶コ120MB逧ク懆・ソ蝗樊擂?', '蜿りァ∝嶋蟶碁ェ瑚ッ∝、ア雍・逧ぅ荳ェ髣ョ鬚倥€ょヲよ棡菴ョ「謌キ遶ッ謾カ蛻ー莠漠隸ッ逧焚謐ョ碁ぅ荵亥ョシ夐㍾譁ー荳玖スス霑吩ク€驛ィ蛻シ悟屏豁、諤サ荳玖スス驥乗怏蜿ッ閭ス豈皮ァ榊ュ仙、ァ蟆冗払蠕ョ螟ァ荳€莠帙€ら。ョ菫昶€懷ア剰反蜿鷹€漠隸ッ謨ー謐ョ逧ョ「謌キ遶ッ窶晉噪驍」荳ェ騾蛾。ケ陲ォ謇灘シ€莠シ瑚ソ呎キ蜿ッ莉・蜃丞ー鷹「晏、也噪荳玖スス縲', 1, 5, 7),
(46, 46, 25, 'item', '荳コ莉€荵域ョ「謌キ遶ッ逧Уracker譛榊苅蝎ィ迥カ諤∝邇ー"Your ratio is too low! You need to wait xx h to start"逧漠隸ッ', '蝨ィ<b>譁ー</b>遘榊ュ占「ォ荳贋シ蛻ーTracker譛榊苅蝎ィ荵句錘梧怏荳€莠帷畑謌キ蠢。サ遲我ク€莠帶慮髣エ謇崎蠑€蟋倶ク玖スス縲<br>\r\n霑吩クェ蟒カ霑溷宵莨壼スア蜩埼ぅ莠帛莠ォ邇ス惹ク比ク玖スス驥丞、ァ莠10G逧畑謌キ縲<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.4</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ霑</td>\r\n <td class="embedded" width="100">24蟆乗慮</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.5</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ霑</td>\r\n <td class="embedded" width="100">12蟆乗慮</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.6</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ霑</td>\r\n <td class="embedded" width="100">6蟆乗慮</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.8</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ霑</td>\r\n <td class="embedded" width="100">3蟆乗慮</td>\r\n</tr>\r\n</table>', 0, 5, 8),
(47, 47, 25, 'item', '荳コ莉€荵亥書逕滉コソ吩クェ髞呵ッッ "Port xxxx is blacklisted"?', 'ョ「謌キ遶ッ蜷禅racker譛榊苅蝎ィ謚・蜻雁ョュ」蝨ィ菴ソ逕ィ譟蝉クェ鮟倩ョ、逧ВT蜊剰ョョ遶ッ蜿」(6881-6889)謌匁弍莉サ菴募莉門クク隗 ̄2P遶ッ蜿」譚・菴應クコ霑樊磁遶ッ蜿」縲<br />\r\n<br />\r\n譛ャ遶吩ク榊隶ク霑吩コ幃€壼クク陲ォP2P蜊剰ョョ鮟倩ョ、菴ソ逕ィ逧ォッ蜿」縲ょ次蝗譏ッ逶ョ蜑巧SP蟶ク蟶ク蟇ケ霑吩コ帷ォッ蜿」霑幄。碁剞騾溘€<br />\r\n<br />\r\n陲ォ螻剰反逧ォッ蜿」螯ゆク具シ<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n <tr>\r\n <td class="embedded" width="100">Direct Connect</td>\r\n <td class="embedded" width="100">411 - 413</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">BitTorrent</td>\r\n <td class="embedded" width="100">6881 - 6889</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Kazza</td>\r\n <td class="embedded" width="100">1214</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Gnutella</td>\r\n <td class="embedded" width="100">6346 - 6347</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Emule</td>\r\n <td class="embedded" width="100">4662</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">WinMX</td>\r\n <td class="embedded" width="100">6699</td>\r\n </tr>\r\n</table>\r\n<br />\r\n隕∽スソ逕ィ謌台サャ逧Уracker譛榊苅蝎ィ御ス。サ驟咲スョ菴ョ「謌キ遶ッ菴ソ逕ィ譛ェ蝨ィ荳企擇蛻怜ォッ蜿」闌峩(莉49152蛻ー65535驛ス譏ッ荳埼漠逧€画叫悟盾逵<a class="faqlink" href="http://www.iana.org/assignments/port-numbers">IANA</a>)縲よウィ諢乗汾莠帛ョ「謌キ遶ッ悟ヲzureus 2.0.7.0謌匁峩鬮倡沿譛ャ悟ッケ謇€譛臥噪遘榊ュ宣菴ソ逕ィ蜷御ク€遶ッ蜿」縲り€悟莉門、ァ螟壽焚螳「謌キ遶ッ荳コ豈丈ク€荳ェ遘榊ュ仙シ€謾セ荳€荳ェ遶ッ蜿」御ス蝨ィ騾画叫遶ッ蜿」闌峩蠎碑€剔蛻ー霑吩クェ髣ョ鬚假シ井ク€闊ャ譚・隸エ遶ッ蜿」闌峩蟆丈コ10縲りョセ鄂ョ荳€荳ェ霑、ァ逧激蝗エ蟷カ荳堺ク€螳壽怏螂ス螟シ瑚€御ク泌庄閭ス譛牙ョ牙髫先ぅ)縲 <br />\r\n<br />\r\n霑吩コ帷ォッ蜿」譏ッ逕ィ莠主酔莨エ髣エ騾壻ソ。逧シ瑚€碁撼逕ィ莠主ョ「謌キ遶ッ霑樊磁蛻ーTracker譛榊苅蝎ィ縲ょ屏豁、霑吩クェ謾ケ蜉ィ蟷カ荳堺シ壼スア蜩堺ス菴ソ逕ィ蜈カ莉傍racker譛榊苅蝎ィ井コ句ョ樔ク奇シ悟ョ爆閾ウ蜿ッ閭ス<i>蜉蠢ォ</i>謇€譛欝racker譛榊苅蝎ィ荳顔ァ榊ュ千噪騾溷コヲ峨€ゆスョ「謌キ遶ッ荵滉サ咲┯閭ス螟溯ソ樊磁蛻ー驍」莠帑スソ逕ィ鮟倩ョ、遶ッ蜿」逧酔莨エ縲ょヲよ棡菴ョ「謌キ遶ッ荳肴髪謖∬蟾ア閾ェ螳壻ケ臥ォッ蜿」碁ぅ荵域困荳€荳ェ蜷ァ縲<br />\r\n<br />\r\n荳崎ヲ∝髄謌台サャ隸「髣ョ惠隶コ蝮幃㈹髱「謠宣琉遨カ遶溷コ碑ッ・騾画叫莉€荵育ォッ蜿」縲よ莉ャ逧畑謌キ騾画叫逧ォッ蜿」雜企囂譛コ栗SP蟆ア雜企埓莉・謐画尊貂・壽莉ャ菴ソ逕ィ逧ォッ蜿」御サ手€梧裏豕募ッケ謌台サャ逧ォッ蜿」霑幄。碁剞騾溘€ょヲよ棡謌台サャ蜿ェ譏ッ邂€蜊募慍隗ョ壻ク€荳ェ闌碁ぅ荵SP蜿井シ壼セ亥ソォ蟇ケ驍」荳ェ闌峩蜀噪遶ッ蜿」霑幄。碁剞騾溽噪縲<br />\r\n<br />\r\n譛€蜷手ソ倩ヲ∬ッエ逧瑚ョー蠕怜惠菴キッ逕ア蜥/謌夜亟轣ォ蠅吩ク頑遠蠑€菴騾画叫逧ォッ蜿」悟ヲよ棡菴譛芽ソ吩コ帑ク懆・ソ逧ッ昴€', 1, 5, 9),
(48, 48, 25, 'item', '驍」荵郁ソ吩クェ蜻「 窶廬O髞呵ッッ - [髞呵ッッ蜿キ13] 隶ク蜿ッ陲ォ諡堤サ昶€晢シ', '螯よ棡菴蜿ェ譏ッ諠ウ隕∬ァ」蜀ウ霑吩クェ髣ョ鬚倡噪隸晢シ碁㍾譁ー蜷ッ蜉ィ菴鳩閼大コ碑ッ・蟆ア蜿ッ莉・莠€ょ凄蛻咏噪隸晢シ檎サァ扈ュ隸サ荳句悉縲<br />\r\n<br />\r\nIO髞呵ッッ謖噪譏ッ霎灘-霎灘髞呵ッッ瑚ソ呎弍荳€荳ェ譁サカ邉サ扈滄漠隸ッ瑚€碁撼譚・閾ェ謌台サャ逧Уracker譛榊苅蝎ィ縲ょス謎スョ「謌キ遶ッ逕ア莠取汾莠帛次蝗荳崎謇灘シ€遘榊ュ蝉クュ譛ェ荳玖スス螳梧枚莉カ譌カ瑚ソ吩クェ髞呵ッッ蟆ア莨壼書逕溘€ 騾壼クク蜴溷屏譏ッ螳「謌キ遶ッ逧ク、荳ェ螳樔セ句酔譌カ蝨ィ霑占。鯉シ壼ス謎ク贋ク€谺。蜈ウ髣ュ螳「謌キ遶ッ譌カ蝗荳コ譟千ァ榊次蝗イ。譛芽「ォ逵滓ュ」蜈ウ髣ュ御サ手€悟ァ狗サ亥惠蜷主床霑占。後€ょ屏豁、譁サカ陲ォ髞∝ョ夲シ御スソ蠕玲眠逧ョ樔セ倶ク崎謇灘シ€霑吩クェ譁サカ縲<br />\r\n<br />\r\n蜿ヲ螟紋ク€荳ェ荳榊クク蜃コ邇ー逧次蝗譏ッ蝗荳コ閠∵立逧ЁAT譁サカ邉サ扈溘€よ汾莠帷ウサ扈溷エゥ貅庄閭ス蟇シ閾エ譛ェ荳玖スス螳梧枚莉カ謐溷搶梧磁逹€蟆ア蜃コ邇ー莠ソ吩クェ髞呵ッッ縲りソ占。御ク€谺。scandisk蠎碑ッ・蜿ッ莉・隗」蜀ウ霑吩クェ髣ョ鬚倥€よウィ諢擾シ悟宵譛牙ス謎ス菴ソ逕ィWindows 9X謫堺ス懃ウサ扈滂シ亥宵謾ッ謖:AT譁サカ邉サ扈滂シ画惠Windows NT/2000/XP荳ュ菴ソ逕ィFAT譁サカ邉サ扈溽噪譌カ蛟呎燕豈碑セ庄閭ス蜃コ邇ー霑吩クェ髣ョ鬚倥€TFS譁サカ邉サ扈溯ヲ∝▼螢ョ隶ク螟夲シ御ク榊、ェ蜿ッ閭ス蜃コ邇ー霑呎キ逧琉鬚倥€', 1, 5, 10),
(50, 50, 25, 'item', '荳崎ヲゥャ荳贋ク玖スス譁ー蜿大ク噪遘榊ュ', '荳玖スス騾溷コヲ荳サ隕∝叙蜀ウ莠惹ク贋シ/荳玖スス閠(SLR)縲ょヲよ棡譏ッ遘榊ュ先弍譁ー蜿大ク噪荳秘撼蟶ク蜿玲ャ「霑手€郡LR蜿亥セ井ス守噪遘榊ュ撰シ御ク玖スス騾溷コヲ菴取弍蟶ク隗∫噪髣ョ鬚倥€<br />\r\n<br />\r\n隸キ迚「隶ー菴荳榊万谺「菴朱€滉ク玖スス縲よ園莉・螟<b>荳贋シ</b>隶ゥ蛻ォ莠コ荳咲畑蠢崎€仙酔譬キ逧峅謇ー縲r\n<br />\r\n<br />逕ア蜈カ譏ッ蠖謎スクヲ螳ス霎御ク崎ヲゥャ荳贋ク玖スス譁ー蜿大ク噪遘榊ュ舌€よ怙螂ス逧ク玖スス騾溷コヲ騾壼クク蝨ィ荳€荳ェ遘榊ュ千函蜻ス蜻ィ譛溽噪荳€蜊頑慮蜃コ邇ー梧ュ、譌カSLR霎セ蛻ー譛€螟ァ蛟シ井ク崎ソシ瑚ソ呎慮荳玖スス逧シコ轤ケ譏ッ菴ク贋シ驥丈ク堺シ壼セ亥、壹€らゥカ遶溷ヲゆス募ケウ陦。莨倡せ荳守シコ轤ケ悟叙蜀ウ莠惹ス閾ェ蟾ア)縲', 1, 6, 1),
(51, 51, 25, 'item', '髯仙宛荳贋シ騾溷コヲ', '荳贋シ騾溷コヲ蟆サ惹サ・荳倶ク、遘肴婿蠑乗仞闡怜スア蜩堺ク玖スス騾溷コヲ喀r\n<ul>\r\n <li>Bittorrent逧酔莨エ蛟セ蜷台コ主屓鬥磯ぅ莠帷サ吝ョサャ謠蝉ク贋シ酔莨エ縲りソ吝ーア諢丞袖逹€螯よ棡A蜥沓豁」蝨ィ蜷梧慮荳玖スス荳€荳ェ譁サカ瑚€窟蜿亥惠鬮倬€溷髄B莨騾∵焚謐ョ碁ぅ荵シ壼ー晁ッ慕捩蝗樊冠A縲ょ屏豁、鬮倬€滉ク贋シッシ閾エ鬮倬€滉ク玖スス縲</li>\r\n\r\n <li>逕ア莠撒CP蜊剰ョョ逧キ・菴懈婿蠑擾シ悟ス鄭豁」莉撮荳玖スス譟蝉コ帑ク懆・ソ逧慮蛟呻シ窟蠢。サ荳榊●蝨ー蜷腺蜿鷹€∵蜉滓噺蛻ーB謇€蜿鷹€∵擂逧焚謐ョ逧ソ。蜿キ郁「ォ遘ー荳コ遑ョ隶、笏€笏€ACK 笏€笏€ 譟千ァ坂€懷キイ謾カ蛻ー窶晉噪菫。諱ッ)縲ょヲよ棡A豐。譛牙書騾、CK菫。蜿キ碁ぅ荵嘯蛛懷髄A蜿鷹€∵焚謐ョ蟷カ荳碑ソ帛遲牙€咏憾諤√€ょヲよ棡A豁」蝨ィ蜈ィ騾滉ク贋シ悟セ域怏蜿ッ閭ス豐。譛臥畑譚・蜿鷹€、CK菫。蜿キ逧クヲ螳ス悟屏豁、ACK菫。蜿キ陲ォ閠ス謳√€ょ惠霑咏ァ肴ュ蜀オ荳具シ瑚ソォ倬€溷コヲ逧ク贋シ蟇シ閾エ莠ス朱€溽噪荳玖スス縲</li>\r\n</ul>\r\n螳樣刔逧譜譫懈弍莉・荳贋ク、荳ェ蜴溷屏逧サ灘粋縲ゆク贋シ騾溷コヲ蠎碑ッ・蝨ィ菫晁ッ、CK閭ス豁」蟶ク莨霎鍋噪蜑肴署荳玖「ォ隶セ蠕怜ース驥城ォ倥€ <b>荳€荳ェ蠕亥・ス逧ョ櫁キオ逅ョコ譏ッ菫晄戟荳贋シ騾溷コヲ蝨ィ逅ョコ荳企剞逧80%縲</b>菴荵溷庄莉・扈皮ゥカ莉€荵域弍譛€騾ょ粋菴€溷コヲ亥酔譌カ荵溯ッキ隶ー菴城ォ倬€滉ク贋シ蟇ケ莠惹ス莠ォ邇セ域怏蟶ョ蜉ゥ峨€<br />\r\n<br />\r\n螯よ棡菴豁」蝨ィ霑占。御ク€荳ェ莉・荳顔噪遘榊ュ蝉ササ蜉。御ス蠎碑ッ・閠剔逧弍蜈ィ螻€荳贋シ騾溷コヲ縲よ汾莠帛ョ「謌キ遶ッ閭ス髯仙宛莠螻€荳贋シ騾溷コヲ莉也噪蛻呵蟇ケ豈丈ク€荳ェ遘榊ュ仙蛻ォ霑幄。瑚ョセ鄂ョ縲ゆコァ」菴ョ「謌キ遶ッ縲ょヲよ棡菴豁」蝨ィ菴ソ逕ィ菴鳩閼大★蛻ォ逧汾莠帛コ皮畑域ッ疲婿隸エ荳顔ス第サ薩TP諡紋ク懆・ソ会シ御ケ滄怙閠剔荳€荳句ョサャ蟇ケ莠主螻€荳贋シスア蜩阪€', 1, 6, 2),
(52, 52, 25, 'item', '髯仙宛蜷梧慮霑樊磁謨ー', '譟蝉コ帶桃菴懃ウサ扈滂シ井セ句ヲ8indows 9X牙ッケ莠主、ァ驥剰ソ樊磁謨ー謾ッ謖∽ク榊ョ悟埋檎爆閾ウ譛牙庄閭ス蝗豁、閠悟エゥ貅€ゆケ滓怏荳€莠帛ョカ逕ィ霍ッ逕ア亥ー、蜈カ蠖楢ソ占。檎捩NAT莉・蜿/謌冶€遠蠑€髦イ轣ォ蠅咏憾諤∵」€譟・譛榊苅譌カ我シ壼屏螟ァ驥剰ソ樊磁謨ー閠悟序蠕怜セ域謌冶€エゥ貅€ょッケ莠手ソ樊磁謨ー豐。譛牙崋螳夂噪譛€菴ウ蛟シ御ス蜿ッ莉・隸戊ッ慕恚60謌冶€100縲りョー菴剰ソ吩コ幄ソ樊磁謨ー譏ッ邏ッ蜉シ梧園莉・螯よ棡菴ョ「謌キ遶ッ霑占。御コク、荳ェ莨夊ッ晢シ瑚ソ吩ク、荳ェ謨ー蟄苓ヲ∝刈蝨ィ荳€襍キ縲', 1, 6, 3),
(53, 53, 25, 'item', '髯仙宛蜷梧慮荳贋シ謨ー', '荳贋シ謨ー髫セ驕灘柱霑樊磁謨ー譛我サ€荵井ク堺ク€譬キ蜷暦シ滓弍逧シ御ク、閠弍荳榊酔逧€りソ樊磁謨ー髯仙宛莠ョ「謌キ遶ッ謇€閭ス蟇ケ隸昜サ・蜿/謌冶€ク玖スス逧酔莨エ謨ー縲ゆク贋シ謨ー蛻咎剞蛻カ莠ョ「謌キ遶ッ螳樣刔閭ス荳贋シ酔莨エ謨ー縲ら炊諠ウ逧焚蛟シ荳€闊ャ隕∵ッ碑ソ樊磁謨ー菴手ョク螟夲シ悟ケカ荳比ク惹ス黄逅クヲ螳ス鬮伜コヲ逶ク蜈ウ縲', 1, 6, 4),
(54, 54, 25, 'item', '驍」諤惹ケ亥萱溽ュ牙セク€莨壼制', '螯よ莉ャ蝨ィ荳企擇謇€隗」驥顔噪悟惠BT荳玖スス霑ィ倶クュ荳€荳ェ蜷御シエ譖エ蜉蛟セ蜷台コ主屓謚・驍」莠帑ク贋シ扈吝ョ噪蜷御シエ縲ょス謎ス蠑€蟋倶ク€荳ェ譁ー逧ク玖スス莉サ蜉。譌カ御ス豐。譛画枚莉カ迚妙謠宣ォ倡サ吝莉門酔莨エ悟屏豁、莉紋サャ騾壼クク莨壽裏隗縲りソ吩スソ蠕怜シ€蟋矩亳谿オ逧ク玖スス髱槫クク郛捺檎罰蜈カ譏ッ蠖謎ス謇€霑樊磁蛻ー逧酔莨エ蜿ェ譛牙セ亥ー第弍イ。譛会シ牙★遘崎€€ゆク€譌ヲ菴闔キ蠕嶺コク€莠幄逕ィ莠主莠ォ逧枚莉カ迚御ク玖スス騾溷コヲ莨壽怏謇€謾ケ隗ゅ€', 1, 6, 5),
(55, 55, 25, 'item', '荳コ莉€荵亥惠謌台ク玖スス逧慮蛟呎オ剰ァ育ス鷹。オ騾溷コヲ螯よュ、荵区', 'ク玖スス蟶ヲ螳ス譏ッ譛蛾剞逧€ょヲよ棡菴豁」蝨ィ荳玖スス荳€荳ェ騾溷コヲ蠕亥ソォ逧ァ榊ュ撰シ悟ョ荵手け螳壼ー頃貊。菴ク玖スス蟶ヲ螳ス縲りソ呎弍豬剰ァ育ス鷹。オ譏セ辟カ蟆ア莨壼序諷「縲ょセ亥、咤T螳「謌キ遶ッ蜈∬ョク菴髯仙宛荳玖スス騾溷コヲ御ス蜿ッ莉・隸戊ッ輔€<br />\r\n<br />\r\n豬剰ァ育ス鷹。オ蜿ェ譏ッ菴應クコ荳セ萓倶ケ倶ク€悟酔譬キ逧琉鬚倅ケ滉シ壼邇ー蝨ィ貂ク謌擾シ悟叉譌カ騾壻ソ。霓ッ莉カ荳......', 1, 6, 6),
(56, 56, 25, 'item', '莉€荵域弍莉」逅', '蝓コ譛ャ荳願ッエ御サ」逅ーア譏ッ荳ュ髣エ莠コ縲ょス謎ス騾夊ソサ」逅ョソ髣ョ譟蝉クェ遶咏せ逧慮蛟呻シ御スッキ豎ょーヲ門陲ォ蜿鷹€∝芦莉」逅シ檎┯蜷守罰莉」逅スャ蜿大芦菴謇€隸キ豎ら噪遶咏せ瑚€御ク肴弍菴逶エ謗・霑樣€壼芦鄂醍ォ吶€ゆク矩擇譏ッ蜃遘榊蝙狗噪莉」逅邀サ域惘隸ュ荳肴弍驍」荵育噪隗会シ<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n <tr>\r\n <td class="embedded" valign="top" width="100">&nbsp;騾乗莉」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">騾乗莉」逅惠螳「謌キ遶ッ譌髴€驟咲スョ縲ゆサ門ー蜉ィ謚80遶ッ蜿」逧ソ。諱ッ驥榊ョ壼髄蛻ー莉」逅(譛画慮蛟吩ケ滉ス應クコ髱槫諺蜷堺サ」逅噪蜷御ケ芽ッ)</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;譏セ蠑丈サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">豬剰ァ亥勣蠢。サ扈剰ソ鄂ョ謇崎菴ソ逕ィ莉」逅</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;蛹ソ蜷堺サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">莉」逅ク堺シ壽滑螳「謌キ譬ョー蜿鷹€∬譛榊苅蝎ィ遶ッ (HTTP_X_FORWARDED_FOR螟エ譬ソ怜ーク崎「ォ蜿鷹€√€よ恪蜉。蝎ィ荵溷屏豁、逵倶ク榊芦菴逧ИP)</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;鬮伜コヲ蛹ソ蜷堺サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">莉」逅ク堺シ壽滑螳「謌キ譬ョー謌紋サ」逅ョー蜿鷹€∬譛榊苅蝎ィ遶ッ (HTTP_X_FORWARDED_FOR蜥粂TTP_VIA and HTTP_PROXY_CONNECTION螟エ譬ソ怜ーク崎「ォ蜿鷹€√€よ恪蜉。蝎ィ逵倶ク榊芦菴逧ИP檎爆閾ウ荳咲衍驕謎ス豁」蝨ィ菴ソ逕ィ莉」逅)</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;蜈ャ逕ィ</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">(荳崎ィ€閾ェ譏惹コ)縲</td>\r\n </tr>\r\n</table>\r\n<br />\r\n騾乗莉」逅庄閭ス譏ッ蛹ソ蜷咲噪御ケ溷庄閭ス譏ッ髱槫諺蜷咲噪御ク泌諺蜷堺ケ滓怏逶ク蠎皮噪遲臥コァ縲', 1, 7, 1),
(57, 57, 25, 'item', '謌題ッ・諤取キ蜿醍鴫閾ェ蟾ア豁」螟コ惹ク€荳ェ磯€乗/蛹ソ蜷咲噪我サ」逅錘髱「', '隸戊ッ慕恚<a href="http://proxyjudge.org" class="faqlink">ProxyJudge</a>縲ょョ蜃コ莠恪蜉。蝎ィ遶ッ莉惹ス霑咎㈹謇€謾カ蛻ー逧ЗTTP逧、エ譬ソ励€ら嶌蜈ウ逧荳ェ譬ソ玲弍HTTP_CLIENT_IP粂TTP_X_FORWARDED_FOR蜥軍EMOTE_ADDR縲', 1, 7, 2),
(75, 75, 25, 'item', '謌醍噪窶懷庄霑樊磁窶晄弍窶懷凄窶晏ース邂。謌大ケカ豐。譛丑AT謌冶€亟轣ォ蠅呻シ', 'Tracker譛榊苅蝎ィ蝨ィ蟇サ謇セ菴悄螳曵P譁ケ髱「髱槫クク譛牙、ゥ襍九€ゆス弍霑咎怙隕∽サ」逅書騾?TTP螟エ譬ソ幽TTP_X_FORWARDED_FOR縲ょヲよ棡菴逧ИSP逧サ」逅イ。譛芽ソ吩ケ亥★逧ッ晢シ卦racker譛榊苅蝎ィ蟆滑莉」逅噪IP蠖謎ス應スョ「謌キ遶ッ逧ИP縲よ園莉・蠖謎ス逋サ蠖穂ケ句錘卦racker譛榊苅蝎ィ蟆晁ッ戊ソ樊磁菴ョ「謌キ遶ッ譚・遑ョ菫。菴豐。譛我スソ逕ィNAT/髦イ轣ォ蠅呻シ梧恪蜉。蝎ィ螳樣刔荳雁ーッ募崟霑樊磁莉」逅噪IP井スソ逕ィ菴逧ВT螳「謌キ遶ッ謚・蜻顔噪謗・謾カ霑樊磁遶ッ蜿」峨€ょセ郁辟カ蝨ー御サ」逅恪蜉。蝎ィ蟷カ豐。譛臥尅蜷ャ驍」荳ェ遶ッ蜿」縲ょヲよュ、霑樊磁莨壼、ア雍・瑚€卦racker譛榊苅蝎ィ荵溷屏豁、隶、荳コ菴菴ソ逕ィ莠AT/髦イ轣ォ蠅吶€', 1, 7, 3),
(62, 62, 25, 'item', '荵溯ョク譏ッ蝗荳コ謌醍噪IP蝨ー蝮€陲ォ蛻怜鮟大錐蜊穂コ', '霑吩クェ鄂醍ォ呎怏螻剰反陲ォ遖∫畑謌キ謌匁判蜃サ閠噪IP蝨ー蝮€逧粥閭ス縲りッ・蜉溯蝨ィApache/PHP螻る擇荳願オキ菴懃畑御ク泌宵閭ス螻剰反莉手ソ吩コ帛慍蝮€<i>逋サ蠖</i>鄂醍ォ吶€りソ吩ク堺シ夐仆豁「菴<i>霑樊磁</i>蛻ー鄂醍ォ呻シ梧峩譌豕穂サ主コ募アら噪蜊剰ョョ螻る擇霑幄。悟ア剰反縲ょ叉萓ソ菴慍蝮€蟾イ扈剰「ォ蛻怜サ大錐蜊包シ御ス蠎碑ッ・莉崎螟滄€夊ソ㎝ing/traceroute蜻ス莉、霑槫酔譛榊苅蝎ィ縲ょヲよ棡菴荳崎霑樣€壽恪蜉。蝎ィ碁ぅ荵磯琉鬚倡噪蜴溷屏蝨ィ蛻ォ螟€<br />\r\n<br />\r\n螯よ棡菴逧ИP蝨ー蝮€蝗譟千ァ榊次蝗髞呵ッッ蝨ー陲ォ謌台サャ螻剰反莠シ瑚ッキ閨皮ウサ謌台サャ縲', 1, 8, 1),
(63, 63, 25, 'item', '逧ИSP螻剰反莠悽遶咏噪蝨ー蝮€', '鬥門瑚ソ吩ク€闊ャ荳榊ワ菴逧ИSP逧園菴懈園荳コ縲NS蝓溷錐隗」譫蝉サ・蜿/謌冶€ス醍サ憺琉鬚俶弍蟶ク隗∫噪逵溷r\n<br />\r\n蟇ケ豁、謌台サャ譌閭ス荳コ蜉帙€ゆス蠎碑ッ・閨皮ウサ菴逧ИSP困荳€荳ェ峨€りョー菴丈ス莉咲┯蜿ッ莉・騾夊ソサ」逅ョソ髣ョ譛ャ遶呻シ悟盾逵区ュ、蟶ク隗琉鬚伜莠惹サ」逅噪驛ィ蛻€ょ惠霑咏ァ肴ュ蜀オ荳具シ御サ」逅弍蜷ヲ蛹ソ蜷肴スソ逕ィ蜩ェ荳ェ逶大成遶ッ蜿」驛ス荳埼㍾隕∽コ€<br />\r\n<br />\r\n豕ィ諢擾シ御ス€懷庄霑樊磁迥カ諤≫€晏ー屏豁、荳€逶エ陲ォ蛻嶺クコ窶懷凄窶晢シ悟屏荳コ豁、譌カTracker譛榊苅蝎ィ譌豕墓」€譟・菴逧ВT螳「謌キ遶ッ謗・謾カ霑樊磁逧憾諤√€', 1, 8, 2),
(65, 65, 25, 'item', '荳榊ヲィ隸戊ッ戊ソ吩クェ', '逕ィ莉サ菴墓焔谿オ蝨ィ<a class="faqlink" href="forums.php">隶コ蝮</a>蜿大ク悶€る€壼クク諠荳倶ス閭ス蠕怜芦蜿句埋閠梧怏逕ィ逧クョ蜉ゥ縲りソ咎㈹扈吩ス荳€莠帛渕譛ャ逧欠蟇シ<ul>\r\n<li>遑ョ菫昜ス琉鬚倡噪遑ョ荳榊惠霑咏ッ⑦AQ荳ュ縲りソ呎キ逧書蟶門ッシ閾エ逧サ捺棡蟆ア譏ッ霑泌屓霑咏ッ⑦AQ縲</li>\r\n<li>蝨ィ蜿大ク紋ケ句燕檎恚逵狗スョ鬘カ縲ょセ亥、壽慮蛟呻シ瑚ソ俶イ。譛芽「ォ謌台サャ逧ЁAQ謇€謾カ蠖慕噪譛€譁ー逧ソ。諱ッ驛ス蜿ッ莉・蝨ィ驍」驥瑚「ォ謇セ蛻ー縲</li>\r\n<li>蟶ョ蜉ゥ謌台サャ荵溷ーア譏ッ蟶ョ蜉ゥ菴閾ェ蟾ア縲ゆク崎ヲ∽サッエ窶懷仭謌題ソ咎㈹蜃コ髣ョ鬚倅コシ≫€晄署萓帑ク€莠幄ッヲ諠シ瑚ソ呎キ謌台サャ蟆ア荳咲畑迪懈オ区オェ雍ケ譌カ髣エ譚・隸「髣ョ莠€ゆス菴ソ逕ィ逧弍莉€荵亥ョ「謌キ遶ッ滉サ€荵域桃菴懃ウサ扈滂シ滓€取キ逧ス醍サ懆ョセ鄂ョ溷ヲよ棡蜿醍函莠漠隸ッ梧弍莉€荵域キ逧菴馴漠隸ッ菫。諱ッ滓怏髣ョ鬚倡噪遘榊ュ先枚莉カ譏ッ蜩ェ荳ェ滉ス謇€謠蝉セ帷噪菫。諱ッ雜雁、夲シ悟ッケ菴クョ蜉ゥ荵溷ーア雜雁ョケ譏難シ御スク門ュ蝉ケ溷ーア譖エ蜉螳ケ譏灘セ怜芦蝗槫、阪€</li>\r\n<li>荳埼怙隕∬ッエ逧壻ソ晄戟遉シ雋後€りカセ鬮俶ー疲荻蠕怜多莉、蛻ォ莠コ蟶ョ蜉ゥ菴蠕亥ー台シ壽怏逕ィ縲</li></ul>', 1, 9, 1),
(66, 66, 25, 'item', '莉€荵域弍"Your slot limit is reached! You may at most download xx torrents at the same time"髞呵ッッ', '霑呎弍窶懈怙螟ァ霑樊磁謨ー邉サ扈溪€昴€よ怙螟ァ霑樊磁謨ー邉サ扈溽畑莠朱剞蛻カ驍」莠帛莠ォ邇ス惹ク比ク玖スス驥丞、ァ莠10GB逧畑謌キ逧怙螟ァ蜷梧慮荳玖スス謨ー縲<br /><br />\r\n隗螯ゆク: <br /><br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.5</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ霑樊磁謨ー</td>\r\n <td class="embedded" width="40">1</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.65</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ霑樊磁謨ー</td>\r\n <td class="embedded" width="40">2</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.8</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ霑樊磁謨ー</td>\r\n <td class="embedded" width="40">3</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.95</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ霑樊磁謨ー</td>\r\n <td class="embedded" width="40">4</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇、ァ莠</td>\r\n <td class="embedded" width="40">0.95</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ霑樊磁謨ー</td>\r\n <td class="embedded" width="40">譌髯仙宛</td>\r\n</tr>\r\n</table>\r\n<br />\r\n譌隶コ菴墓慮悟酔譌カ逧ク贋シ謨ー荳崎ョセ髯舌€ゆス弍螯よ棡菴蠖灘燕逧ク玖スス謨ー蟾イ霎セ蛻ー莠怙螟ァ霑樊磁謨ー瑚ソ呎慮蠑€蜷ッ譁ー逧★遘堺ササ蜉。御ス荵滉シ壽噺蛻ー蜷梧キ逧漠隸ッ謠千、コ縲ょ惠霑咏ァ肴ュ蜀オ荳具シ御ス。サ蜈亥髣ュ荳€荳ェ荳玖スス莉サ蜉。檎┯蜷主シ€蜷ッ謇€譛臥噪荳贋シ莉サ蜉。檎┯蜷守サァ扈ュ蛻壽燕蜈ウ髣ュ逧ク玖スス莉サ蜉。縲ょ屏荳コ蠖謎スソ樊磁謨ー陲ォ蜊貊。檎ウサ扈溷ーク榊刈鬪瑚ッ∫峩謗・諡堤サ昜ササ菴穂ク玖スス謌紋ク贋シッキ豎ゅ€ <br />\r\n<br /><br />\r\n菴蜿ッ莉・蝨ィ莉サ諢乗慮髣エ蟇溽恚閾ェ蟾ア逧ソ樊磁謨ー瑚ッ・菫。諱ッ蝨ィ鬘オ髱「鬘カ遶ッ菫。諱ッ譬丈クュ陲ォ蛻怜', 0, 5, 12),
(67, 67, 25, 'item', '莉€荵域弍蟇徴邉サ扈滂シ溷ョ弍諤惹ケ亥キ・菴懃噪', '徴邉サ扈溷惠BT螳「謌キ遶ッ霑樊磁Tracker譛榊苅蝎ィ譌カ襍キ蛻ー鬪瑚ッ∬コォ莉ス逧ス懃畑縲よッ丈ク€荳ェ逕ィ謌キ驛ス譛我ク€荳ェ邉サ扈滄囂譛コ逕滓徴縲ょス鍋畑謌キ荳玖スス譟蝉クェ遘榊ュ先枚莉カ譌カ御サ也噪遘∽ココ蟇徴陲ォ豺サ蜉蛻ー遘榊ュ先枚莉カ逧Уracker譛榊苅蝎ィURL荳ュ縲る€夊ソソ咏ァ肴婿蠑擾シ御ス蜿ッ莉・蝨ィ螳カ荳ュ謌冶€萱蜈ャ螳、菴ソ逕ィ荳榊酔逧ИP譚・蛛夂ァ肴汾荳ェ譁サカ縲r\n\r\n', 1, 5, 13),
(68, 68, 25, 'item', '窶弑nknown passkey窶晁ソ咎漠隸ッ譏ッ蜥句屓莠具シ', '鬥門悟ヲよ棡菴荳肴弍謌台サャ逧ウィ蜀檎畑謌キ悟ーシ壼書逕溯ソ吩クェ髞呵ッッ縲ょ谺。梧怏蜿ッ閭ス菴豐。譛牙惠逋サ蠖慕憾諤∽ク倶サ取莉ャ逧ス鷹。オ驥御ク玖スス遘榊ュ先枚莉カ縲ょヲよ棡譏ッ霑吩ク、遘肴ュ蜀オ悟宵隕∵ウィ蜀御ク€荳ェ蟶仙捷謌冶€匳蠖募錘荳玖スス遘榊ュ先枚莉カ蟆ア蜿ッ莉・莠€<br />\r\n蜿ヲ螟厄シ悟ス謎ス豕ィ蜀御コク€荳ェ譁ー逕ィ謌キ蟷カ荳泌シ€蟋狗ャャ荳€谺。荳玖スス逧慮蛟呻シ梧蛻壼驥咲スョ莠徴譌カ御ケ溷庄閭ス蜃コ邇ー霑吩クェ髞呵ッッ縲ょ次蝗譏ッ邉サ扈溷ケカ髱槫ョ樊慮譽€譟・蟇徴逧隼蜿倥€ょヲよ棡譏ッ蝗荳コ霑吩クェ蜴溷屏碁ぅ荵亥ーア隶ゥ遘榊ュ蝉ササ蜉。遲我ク€莨壼梧怙蜷惹ク€螳夊謾カ蛻ーTracker譛榊苅蝎ィ蜿大屓逧蜉滉ソ。諱ッ縲', 1, 5, 14),
(69, 69, 25, 'item', '莉€荵域慮蛟呎髴€隕㍾鄂ョ謌醍噪蟇徴?', '<ul><li> 螯よ棡菴徴陲ォ豕シ擾シ御ク泌悪逧畑謌キ豁」蝨ィ菴ソ逕ィ霑吩クェ蟇亥叉菴ソ逕ィ菴ク先姐我ク玖スス譁サカ縲ょ惠霑咏ァ肴ュ蜀オ荳具シ御ス閭ス蝨ィ菴ッヲ諠。オ髱「逵句芦菴蟷カ譛ェ荳玖スス謌紋ク贋シァ榊ュ舌€</li>\r\n<li>蠖謎スョ「謌キ遶ッ蟠ゥ貅シ梧ソ樊磁蟷カ豐。譛画ュ」蟶ク陲ォ扈域ュ「縲ょ惠霑呎キ逧ュ蜀オ荳具シ悟ーア邂嶺ス蟾イ扈丞髣ュ莠ョ「謌キ遶ッ御ス莉咲┯蝨ィ菴ッヲ諠。オ髱「逵句芦豁」蝨ィ荳贋シ/荳玖スス逧ョー蠖輔€る€壼クク諠荳玖ソ吩コ帚€懷菴咏ァ榊ュ絶€晏ー惠30蛻帖荵句陲ォ閾ェ蜉ィ貂御ス弍螯よ棡菴鬩ャ荳顔サァ扈ュ菴ク玖スス閠梧恪蜉。蝎ィ蜿域署遉コ窶弸ou already are downloading the same torrent窶晉噪髞呵ッッ碁ぅ荵井ス髴€隕㍾鄂ョ菴檎┯蜷朱㍾譁ー荳玖スス遘榊ュ先枚莉カ御ケ句錘扈ァ扈ュ荳玖スス霑ィ九€ </li></ul>', 1, 5, 15),
(70, 70, 25, 'item', 'DHT譏ッ莉€荵茨シ滉クコ莉€荵井ク€螳夊ヲ∝髣ュ霑吩クェ蜉溯', 'DHT蠢。サ莉惹スョ「謌キ遶ッ陲ォ遖∵ュ「縲HT蜿ッ閭ス蟇シ閾エ菴焚謐ョ陲ォ髞呵ッッ蝨ー隶ー蠖包シ悟庄莉・隗クコ荳€遘堺ス懷シ願。御クコ縲ゆササ菴穂スソ逕ィDHT逧畑謌キ蟆屏菴懷シ願€瑚「ォ邉サ扈溽ヲ∵ュ「縲<br />\r\n蟷ク霑千噪譏ッ檎岼蜑控racker譛榊苅蝎ィ莨夊蜉ィ蛻梵逕ィ謌キ荳贋シァ榊ュ先枚莉カ悟シコ蛻カ蜴サ髯、DHT逧髪謖√€りソ吩ケ滓弍荳コ莉€荵育ァ榊ュ仙書蟶€ソ。サ驥肴眠荳玖スス遘榊ュ先燕閭ス豁」蟶ク蛛夂ァ咲噪蜴溷屏荵倶ク€縲', 1, 5, 16),
(71, 71, 25, 'categ', 'How can I help translate the site language into my native language?', '', 1, 0, 8),
(72, 72, 25, 'item', 'What skills do I need to do the translation?', 'Translate the site into another language is quite easy. You needn''t be skilled in PHP or dynamic website design. In fact, all you need is proficient understanding of English (the default site language) and the language you plan to translate into. Maybe some basic knowledge in HTML would help.<br /><br />\r\nMoreover, we give a detailed tutorial on how to do the translation <a href="#73" class="faqlink"><b>HERE</b></a>. And our coders would be more than pleased to answer the questions you may encounter.<br /><br />\r\nTranslate the whole site into another language would take estimated 10 hours. And extra time is needed to maintain the translation when site code is updated.<br /><br />\r\nSo, if you think you could help, feel free to <a class="faqlink" href="contactstaff.php"><b>CONTACT US</b></a>. Needless to say, you would be rewarded.', 1, 71, 1);
INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES
(73, 73, 25, 'item', 'The translation tutorial', '<ul>\r\n<li>How does multi-language work?<br />\r\nCurrently we use language files to store all the static words that a user can see on web pages. <br />\r\nEvery php code file has a corresponding language file for a certain language. And we named the language file ''lang_'' plus the filename of the php code file. i.e. the language file of the php code file ''details.php'' would be ''lang_details.php''. <br />\r\nWe has some mechanism in php codes to read the exact language files of user''s preferred language, and you shouldn''t worry about that.<br /></li>\r\n<li>What''s in language files?<br />\r\nIn a language file is an array of strings. These strings contain all the static words that a user can see on web pages. When we need to say some words on a php code file, we call for a string in the array. And the output of the php code file, that is what users see on the web pages, would show the value of the string.<br />\r\nSounds dizzying? Well, you need not care about all these. All you gotta do is translate the values of the strings in the language files into another language. <b>Let''s see an example</b>:<br /><br />\r\nThe following is the content of the English language file ''lang_users.php'', which works for the php code file ''users.php''. <br /><br />\r\n<img src="pic/langfileeng.png" alt="langfileeng" /><br />\r\nIf you wanna translate it into Simplified Chinese, all you need is edit the file into this:<br />\r\n<img src="pic/langfilechs.png" alt="langfilechs" /><br />\r\nSee, in every line, the left part, that is before <i>=&gt;</i>, is the name of a string, which you shouldn''t touch. All you need to is translate the right part, after <i>=&gt;</i>, which is the value of the string, into another language.<br />\r\nSometimes you need to look at the corresponding web pages to get the context meaning of some words.<br /></li>\r\n<li>Sounds easy? See what do you need to do.<br />\r\nIf you feel like to help us, <a class="faqlink" href="aboutnexus.php#contact"><b>CONTACT US</b></a> and we will send you a pack of the English language files (or any other available language if you prefer). Received it, you can start translating the value of strings (which is in English), into another language. It should take you several hours to do the whole work. After this, send back the translated language files to us.<br />\r\nIf no bugs or hacking codes are found in testing, we would put the new language into work.<br />\r\nSometimes the language files need to be updated, typically adding new strings, when site codes are updated. If you feel like it, you can help maintain the language files.<br /></li>\r\n<li><font color="red"><b>IMPORTANT</b></font><br />\r\nThe text of language files must be encoded in UTF-8. When saving files, be sure to set the character encoding to UTF-8. Otherwise mojibake may happen.</li></ul>', 1, 71, 2),
(74, 74, 25, 'item', '荳コ莉€荵域」∫尨霑俶怏蜈カウ逧ゥコ髣エ悟ョ「謌キ遶ッ蜊エ謠千、コ逎∫尨蜑ゥ菴咏ゥコ髣エ荳崎カウ', '蠕亥庄閭ス譏ッ蝗荳コ菴」∫尨蛻玄逧枚莉カ邉サ扈滉クコFAT32瑚ッ・譁サカ邉サ扈滉ク肴髪謖∝、ァ莠4GB逧黒荳ェ譁サカ縲ょヲよ棡菴菴ソ逕ィ逧弍Windows邉サ扈滂シ御ス蜿ッ莉・蝨ィ逎∫尨逧ア樊€ァ荳ュ譟・逵句サカ邉サ扈滉ソ。諱ッ縲ゆス蜿ッ莉・蟆」∫尨譁サカ邉サ扈溯スャ謐「謌先峩鬮倡コァ逧НTFS譚・隗」蜀ウ隸・髣ョ鬚倥€<br />\r\n菴蜿ッ莉・蝨ィ蜻ス莉、陦檎ェ怜哨菴ソ逕ィconvert蜻ス莉、蟆AT32譌謐溯スャ謌侵TFS譁サカ邉サ扈滓シ蠑上€<br /><br />\r\n<b>蜻ス莉、隸エ譏</b>\r\nCONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]<br />\r\nvolume 謖ョ夐ゥア蜉ィ蝎ィ蜿キ(蜷朱擇霍滉ク€荳ェ蜀貞捷)縲∬」スス轤ケ謌門差蜷阪€<br />\r\n/FS:NTFS 謖ョ夊ヲ∬「ォ霓ャ謐「謌 NTFS 逧差縲<br />\r\n/V 謖 Convert 蠎碑ッ・逕ィ隸ヲ霑ー讓。蠑剰ソ占。後€<br />\r\n/CvtArea:filename 蟆ケ逶ョ蠖穂クュ逧ク€荳ェ謗・扈ュ譁サカ謖ョ壻クコNTFS 邉サ扈滓枚莉カ逧頃菴咲ャヲ縲<br />\r\n/NoSecurity 謖ョ壽ッ丈クェ莠コ驛ス蜿ッ莉・隶ソ髣ョ霓ャ謐「逧枚莉カ蜥檎岼蠖慕噪螳牙隶セ鄂ョ縲<br />\r\n/X 螯よ棡蠢シ悟蠑コ陦悟査霓ス蜊キ縲りッ・蜊キ逧園譛画遠蠑€逧唱譟謨医€ <br /><br />\r\n<b>邂€蜊戊ッエ</b><br />喀r\n謇灘シ€ 蜻ス莉、謠千、コ隨ヲ遯怜哨縲<br />\r\n蝨ィ蜻ス莉、謠千、コ隨ヲ遯怜哨瑚ッキ髞ョ蜈・<br />\r\nconvert drive_letter:/fs:ntfs<br />\r\n萓句ヲゑシ夊スャ謐「D逶倅クコNTFS悟庄霎灘convert D:/fs:ntfs', 1, 5, 17),
(374, 74, 28, 'item', '轤コ莉€荵域」∫「滄d譛牙雜ウ逧ゥコ髢難シ檎畑謌カ遶ッ蜊サ霈泌勧隱ェ譏守」∫「溷黄鬢倡ゥコ髢謎ク崎カウ', '蠕亥庄閭ス譏ッ蝗轤コ菴」∫「溷牡蜊€逧ェ疲。育ウサ邨ア轤コFAT32瑚ゥイ讙疲。育ウサ邨ア荳肴髪謠エ螟ァ莠4GB逧粍蛟区ェ疲。医€ょヲよ棡菴菴ソ逕ィ逧弍Windows邉サ邨ア御ス蜿ッ莉・蝨ィ逎∫「溽噪螻ャ諤ァ荳ュ讙「隕門讙疲。育ウサ邨ア雉ィ翫€ゆス蜿ッ莉・蟆」∫「滓ェ疲。育ウサ邨ア霓画鋤謌先峩騾イ髫守噪NTFS萓ァ」豎コ隧イ蝠城。後€<br />\r\n菴蜿ッ莉・蝨ィ謖サ、陦瑚ヲ也ェ嶺スソ逕ィconvert謖サ、蟆⑦AT32辟。謳崎ス画NTFS讙疲。育ウサ邨ア譬シ蠑上€<br /><br />\r\n<b>謖サ、隱ェ譏</b>\r\nCONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]<br />\r\nvolume 謖ョ夂」∫「滓ゥ溯辧(蜷朱擇霍滉ク€蛟句)縲∬」晁シ蛾サ樊蜊キ蜷阪€<br />\r\n/FS:NTFS 謖ョ夊ヲ∬「ォ霓画鋤謌 NTFS 逧差縲<br />\r\n/V 謖 Convert 諛芽ゥイ逕ィ隧ウ霑ー蝙区蝓キ陦後€<br />\r\n/CvtArea:filename 蟆ケ逶ョ骭クュ逧ク€蛟区磁郤梧ェ疲。域欠螳夂ぜNTFS 邉サ邨ア讙疲。育噪蜊菴咲ャヲ縲<br />\r\n/NoSecurity 謖ョ壽ッ丞€倶ココ驛ス蜿ッ莉・蟄伜叙霓画鋤逧ェ疲。亥柱逶ョ骭噪螳牙險ュ螳壹€<br />\r\n/X 螯よ棡蠢シ悟蠑キ陦悟査霈牙差縲りゥイ蜊キ逧園譛蛾幕蝠溽噪謗ァ鮟槫援辟。謨医€ <br /><br />\r\n<b>邁。蝟ョ隱ェ</b><br />喀r\n髢句福 謖サ、霈泌勧隱ェ譏守ャヲ隕也ェ励€<br />\r\n蝨ィ謖サ、霈泌勧隱ェ譏守ャヲ隕也ェ暦シ瑚ォ矩嵯蜈・<br />\r\nconvert drive_letter:/fs:ntfs<br />\r\n萓句ヲゑシ夊ス画鋤D讒ぜNTFS悟庄蛹ッ蜈・convert D:/fs:ntfs', 1, 5, 17),
(368, 68, 28, 'item', '窶弑nknown passkey窶晞€咎険隱、譏ッ蜥句屓莠具シ', '鬥門悟ヲよ棡菴荳肴弍謌大€醍噪險サ蜀顔畑謌カ悟ー怎逋シ逕滄€吝€矩険隱、縲ょ谺。梧怏蜿ッ閭ス菴豐呈怏蝨ィ逋サ蜈・迢€諷倶ク句セ樊蛟醍噪邯イ鬆∬」。荳玖シ臥ィョ蟄先ェ疲。医€ょヲよ棡譏ッ騾吝遞ョ諠シ悟宵隕∬ィサ蜀贋ク€蛟句クウ陌滓匳蜈・蜷惹ク玖シ臥ィョ蟄先ェ疲。亥ーア蜿ッ莉・莠€<br />\r\n蜿ヲ螟厄シ檎文菴險サ蜀贋コク€蛟区眠逕ィ謌カ蟷カ荳秘幕蟋狗ャャ荳€谺。荳玖シ臥噪譎ょ€呻シ梧蜑帛央驥咲スョ莠刈蟇嵯譎ゑシ御ケ溷庄閭ス蜃コ迴セ騾吝€矩険隱、縲ょ次蝗譏ッ邉サ邨ア蟷カ髱槫ッヲ譎よェ「譟・蜉嵯逧隼隶翫€ょヲよ棡譏ッ蝗轤コ騾吝€句次蝗碁ぅ荵亥ーア隶鍋ィョ蟄仙キ・菴懃ュ我ク€譛梧怙蜷惹ク€螳夊謾カ蛻ーTracker莨コ譛榊勣逋シ蝗樒噪謌仙粥雉ィ翫€', 1, 5, 14),
(369, 69, 28, 'item', '莉€荵域凾蛟呎髴€隕㍾鄂ョ謌醍噪蜉嵯?', '<ul><li> 螯よ棡菴刈蟇嵯陲ォ豕シ擾シ御ク泌挨逧畑謌カ豁」蝨ィ菴ソ逕ィ騾吝€句刈蟇亥叉菴ソ逕ィ菴クウ謌カ我ク玖シ画ェ疲。医€ょ惠騾咏ィョ諠ウ∽ク具シ御ス閭ス蝨ィ菴ゥウ諠擇逵句芦菴蟷カ譛ェ荳玖シ画荳雁さ逧ィョ蟄舌€</li>\r\n<li>逡カ菴畑謌カ遶ッ蟠ゥ貎ー€」邱壼ケカ豐呈怏豁」蟶ク陲ォ邨よュ「縲ょ惠騾呎ィ」逧ュ豕∽ク具シ悟ーア邂嶺ス蟾イ邯馴梨髢我コ畑謌カ遶ッ御ス莉咲┯蝨ィ菴ゥウ諠擇逵句芦豁」蝨ィ荳雁さ/荳玖シ臥噪險倬隙縲る€壼クク諠ウ∽ク矩€吩コ帚€懷、夐、倡ィョ蟄絶€晏ー惠30蛻据荵句陲ォ閾ェ蜍墓ク御ス弍螯よ棡菴鬥ャ荳顔ケシ郤御スク玖シ芽€御シコ譛榊勣蜿郁シ泌勧隱ェ譏寂€弸ou already are downloading the same torrent窶晉噪骭ッ隱、碁ぅ荵井ス髴€隕㍾鄂ョ菴刈蟇檎┯蜷朱㍾譁ー荳玖シ臥ィョ蟄先ェ疲。茨シ御ケ句錘郢シ郤御ク玖シ蛾℃遞九€ </li></ul>', 1, 5, 15),
(370, 70, 28, 'item', 'DHT譏ッ莉€荵茨シ溽ぜ莉€荵井ク€螳夊ヲ梨髢蛾€吝€句粥閭ス', 'DHT蠢亥セ樔ス畑謌カ遶ッ陲ォ遖∵ュ「縲HT蜿ッ閭ス蟆手侭陲ォ骭ッ隱、蝨ー險倬隙悟庄莉・隕也ぜ荳€遞ョ菴懷シ願。檎ぜ縲ゆササ菴穂スソ逕ィDHT逧畑謌カ蟆屏菴懷シ願€瑚「ォ邉サ邨ア遖∵ュ「縲<br />\r\n蟷ク驕狗噪譏ッ檎岼蜑控racker莨コ譛榊勣譛蜍戊ァ」譫千畑謌カ荳雁さ逧ィョ蟄先ェ疲。茨シ悟シキ蛻カ蜴サ髯、DHT逧髪謠エ縲る€吩ケ滓弍轤コ莉€荵育ィョ蟄千匸蟶€ソ磯㍾譁ー荳玖シ臥ィョ蟄先燕閭ス豁」蟶ク蛛夂ィョ逧次蝗荵倶ク€縲', 1, 5, 16),
(371, 71, 28, 'categ', 'How can I help translate the site language into my native language?', '', 1, 0, 8),
(372, 72, 28, 'item', 'What skills do I need to do the translation?', 'Translate the site into another language is quite easy. You needn''t be skilled in PHP or dynamic website design. In fact, all you need is proficient understanding of English (the default site language) and the language you plan to translate into. Maybe some basic knowledge in HTML would help.<br /><br />\r\nMoreover, we give a detailed tutorial on how to do the translation <a href="#73" class="faqlink"><b>HERE</b></a>. And our coders would be more than pleased to answer the questions you may encounter.<br /><br />\r\nTranslate the whole site into another language would take estimated 10 hours. And extra time is needed to maintain the translation when site code is updated.<br /><br />\r\nSo, if you think you could help, feel free to <a class="faqlink" href="contactstaff.php"><b>CONTACT US</b></a>. Needless to say, you would be rewarded.', 1, 71, 1),
(373, 73, 28, 'item', 'The translation tutorial', '<ul>\r\n<li>How does multi-language work?<br />\r\nCurrently we use language files to store all the static words that a user can see on web pages. <br />\r\nEvery php code file has a corresponding language file for a certain language. And we named the language file ''lang_'' plus the filename of the php code file. i.e. the language file of the php code file ''details.php'' would be ''lang_details.php''. <br />\r\nWe has some mechanism in php codes to read the exact language files of user''s preferred language, and you shouldn''t worry about that.<br /></li>\r\n<li>What''s in language files?<br />\r\nIn a language file is an array of strings. These strings contain all the static words that a user can see on web pages. When we need to say some words on a php code file, we call for a string in the array. And the output of the php code file, that is what users see on the web pages, would show the value of the string.<br />\r\nSounds dizzying? Well, you need not care about all these. All you gotta do is translate the values of the strings in the language files into another language. <b>Let''s see an example</b>:<br /><br />\r\nThe following is the content of the English language file ''lang_users.php'', which works for the php code file ''users.php''. <br /><br />\r\n<img src="pic/langfileeng.png" alt="langfileeng" /><br />\r\nIf you wanna translate it into Simplified Chinese, all you need is edit the file into this:<br />\r\n<img src="pic/langfilechs.png" alt="langfilechs" /><br />\r\nSee, in every line, the left part, that is before <i>=&gt;</i>, is the name of a string, which you shouldn''t touch. All you need to is translate the right part, after <i>=&gt;</i>, which is the value of the string, into another language.<br />\r\nSometimes you need to look at the corresponding web pages to get the context meaning of some words.<br /></li>\r\n<li>Sounds easy? See what do you need to do.<br />\r\nIf you feel like to help us, <a class="faqlink" href="aboutnexus.php#contact"><b>CONTACT US</b></a> and we will send you a pack of the English language files (or any other available language if you prefer). Received it, you can start translating the value of strings (which is in English), into another language. It should take you several hours to do the whole work. After this, send back the translated language files to us.<br />\r\nIf no bugs or hacking codes are found in testing, we would put the new language into work.<br />\r\nSometimes the language files need to be updated, typically adding new strings, when site codes are updated. If you feel like it, you can help maintain the language files.<br /></li>\r\n<li><font color="red"><b>IMPORTANT</b></font><br />\r\nThe text of language files must be encoded in UTF-8. When saving files, be sure to set the character encoding to UTF-8. Otherwise mojibake may happen.</li></ul>', 1, 71, 2),
(362, 62, 28, 'item', '荵溯ィア譏ッ蝗轤コ謌醍噪IP菴榊捩陲ォ蛻怜鮟大錐蝟ョ莠', '騾吝€狗カイ遶呎怏螻剰反陲ォ遖∫畑謌カ謌匁判謫願€噪IP菴榊捩逧粥閭ス縲りゥイ蜉溯蝨ィApache/PHP螻、髱「荳願オキ菴懃畑御ク泌宵閭ス螻剰反蠕樣€吩コ帑ス榊捩<i>逋サ蜈・</i>邯イ遶吶€る€吩ク肴怎髦サ豁「菴<i>騾」邱</i>蛻ー邯イ遶呻シ梧峩辟。豕募セ槫コ募ア、逧鵠螳壼ア、髱「騾イ陦悟ア剰反縲ょ叉萓ソ菴ス榊捩蟾イ邯楢「ォ蛻怜サ大錐蝟ョ御ス諛芽ゥイ莉崎騾夐℃ping/traceroute謖サ、騾」蜷御シコ譛榊勣縲ょヲよ棡菴辟。豕暮€」騾壻シコ譛榊勣碁ぅ荵亥撫鬘檎噪蜴溷屏蝨ィ蛻・陌輔€<br />\r\n<br />\r\n螯よ棡菴逧ИP菴榊捩蝗譟千ィョ蜴溷屏骭ッ隱、蝨ー陲ォ謌大€大ア剰反莠シ瑚ォ玖郢ォ謌大€代€', 1, 8, 1),
(363, 63, 28, 'item', '逧ИSP螻剰反莠悽遶咏噪菴榊捩', '鬥門碁€吩ク€闊ャ荳榊ワ菴逧ИSP逧園菴懈園轤コ縲NS蝓溷錐隗」譫蝉サ・蜿/謌冶€カイ霍ッ蝠城。梧弍蟶ク隕狗噪逵溷r\n<br />\r\n蟆肴ュ、謌大€醍┌閭ス轤コ蜉帙€ゆス諛芽ゥイ閨ッ郢ォ菴逧ИSP鋤荳€蛟具シ峨€りィ倅ス丈ス莉咲┯蜿ッ莉・騾夐℃莉」逅ュ伜叙譛ャ遶呻シ悟純逵区ュ、蟶ク隕句撫鬘碁梨莠惹サ」逅噪驛ィ蛻€ょ惠騾咏ィョ諠ウ∽ク具シ御サ」逅弍蜷ヲ蛹ソ蜷肴スソ逕ィ蜩ェ蛟狗屮閨ス騾夊ィ雁泛驛ス荳埼㍾隕∽コ€<br />\r\n<br />\r\n豕ィ諢擾シ御ス€懷庄騾」邱夂朽諷銀€晏ー屏豁、荳€逶エ陲ォ蛻礼ぜ窶懷凄窶晢シ悟屏轤コ豁、譎5racker莨コ譛榊勣辟。豕墓ェ「譟・菴逧ВT逕ィ謌カ遶ッ謗・謾カ騾」邱夂噪迢€諷九€', 1, 8, 2),
(365, 65, 28, 'item', '荳榊ヲィ隧ヲ隧ヲ騾吝€', '逕ィ莉サ菴墓焔谿オ蝨ィ<a class="faqlink" href="forums.php">隲門」</a>逋シ蟶悶€る€壼クク諠ウ∽ク倶ス閭ス蠕怜芦蜿句埋閠梧怏逕ィ逧シ泌勧隱ェ譏弱€る€呵」。邨ヲ菴荳€莠帛渕譛ャ逧欠蟆趣シ<ul>\r\n<li>遒コ菫昜ス撫鬘檎噪遒コ荳榊惠騾咏ッ⑦AQ荳ュ縲る€呎ィ」逧匸蟶門ー手オ先棡蟆ア譏ッ蛯ウ蝗樣€咏ッ⑦AQ縲</li>\r\n<li>蝨ィ逋シ蟶紋ケ句燕檎恚逵狗スョ鬆ゅ€ょセ亥、壽凾蛟呻シ碁d豐呈怏陲ォ謌大€醍噪FAQ謇€謾カ骭噪譛€譁ー逧ィ企蜿ッ莉・蝨ィ驍」陬。陲ォ謇セ蛻ー縲</li>\r\n<li>霈泌勧隱ェ譏取蛟台ケ溷ーア譏ッ霈泌勧隱ェ譏惹ス閾ェ蟾ア縲ゆク崎ヲ∝ュ蜒ェェ窶懷仭謌鷹€呵」。蜃コ蝠城。御コシ≫€晄署萓帑ク€莠幄ゥウ諠シ碁€呎ィ」謌大€大ーア荳咲畑迪懈クャ謌冶€オェ雋サ譎る俣萓ゥ「蝠丈コ€ゆス菴ソ逕ィ逧弍莉€荵育畑謌カ遶ッ滉サ€荵井ス懈・ュ邉サ邨ア滓€取ィ」逧カイ霍ッ險ュ螳夲シ溷ヲよ棡逋シ逕滉コ険隱、梧弍莉€荵域ィ」逧鬮秘険隱、雉ィ奇シ滓怏蝠城。檎噪遞ョ蟄先ェ疲。域弍蜩ェ蛟具シ滉ス謇€謠蝉セ帷噪雉ィ願カ雁、夲シ悟ー堺スシ泌勧隱ェ譏惹ケ溷ーア雜雁ョケ譏難シ御スク門ュ蝉ケ溷ーア譖エ蜉螳ケ譏灘セ怜芦蝗櫁ヲ€</li>\r\n<li>荳埼怙隕∬ェェ逧壻ソ晄戟遖ョ雋後€りカセ鬮俶ー」謠壼セ玲欠莉、蛻・莠コ霈泌勧隱ェ譏惹ス蠕亥ー第怎譛臥畑縲</li></ul>', 1, 9, 1),
(366, 66, 28, 'item', '莉€荵域弍"Your slot limit is reached! You may at most download xx torrents at the same time"骭ッ隱、', '騾呎弍窶懈怙螟ァ騾」邱壽丙邉サ邨ア窶昴€よ怙螟ァ騾」邱壽丙邉サ邨ア逕ィ莠朱剞蛻カ驍」莠帛莠ォ邇ス惹ク比ク玖シ蛾㍼螟ァ莠10GB逧畑謌カ逧怙螟ァ蜷梧凾荳玖シ画丙縲<br /><br />\r\n隕丞援螯ゆク: <br /><br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.5</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ騾」邱壽丙</td>\r\n <td class="embedded" width="40">1</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.65</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ騾」邱壽丙</td>\r\n <td class="embedded" width="40">2</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.8</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ騾」邱壽丙</td>\r\n <td class="embedded" width="40">3</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.95</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ騾」邱壽丙</td>\r\n <td class="embedded" width="40">4</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇、ァ莠</td>\r\n <td class="embedded" width="40">0.95</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">譛€螟ァ騾」邱壽丙</td>\r\n <td class="embedded" width="40">辟。髯仙宛</td>\r\n</tr>\r\n</table>\r\n<br />\r\n辟。隲紋ス墓凾悟酔譎ら噪荳雁さ謨ク荳崎ィュ髯舌€ゆス弍螯よ棡菴逶ョ蜑咲噪荳玖シ画丙蟾イ驕泌芦莠怙螟ァ騾」邱壽丙碁€呎凾髢句福譁ー逧★遞ョ蟾・菴懶シ御ス荵滓怎謾カ蛻ー蜷梧ィ」逧険隱、霈泌勧隱ェ譏弱€ょ惠騾咏ィョ諠ウ∽ク具シ御ス髣憺哩荳€蛟倶ク玖シ牙キ・菴懶シ檎┯蜷朱幕蝠滓園譛臥噪荳雁さ蟾・菴懶シ檎┯蜷守ケシ郤悟央謇埼梨髢臥噪荳玖シ牙キ・菴懊€ょ屏轤コ逡カ菴€」邱壽丙陲ォ蜊貊ソ檎ウサ邨ア蟆ク榊刈鬩苓ュ臥峩謗・諡堤オ穂ササ菴穂ク玖シ画荳雁さ逧ヲ∵アゅ€ <br />\r\n<br /><br />\r\n菴蜿ッ莉・蝨ィ莉サ諢乗凾髢灘ッ溽恚閾ェ蟾ア逧€」邱壽丙瑚ゥイ雉ィ雁惠鬆擇鬆らォッ雉ィ頑ャクュ陲ォ蛻怜', 0, 5, 12),
(367, 67, 28, 'item', '莉€荵域弍蜉嵯邉サ邨ア溷ョ弍諤惹ケ亥キ・菴懃噪', '嵯邉サ邨ア蝨ィBT逕ィ謌カ遶ッ騾」邱啜racker莨コ譛榊勣譎りオキ蛻ー鬩苓ュ芽コォ莉ス逧ス懃畑縲よッ丈ク€蛟狗畑謌カ驛ス譛我ク€蛟狗ウサ邨ア髫ィ讖溽函謌千噪蜉嵯縲ら文逕ィ謌カ荳玖シ画汾蛟狗ィョ蟄先ェ疲。域凾御サ也噪遘∽ココ蜉嵯陲ォ豺サ蜉蛻ー遞ョ蟄先ェ疲。育噪Tracker莨コ譛榊勣URL荳ュ縲る€夐℃騾咏ィョ譁ケ蠑擾シ御ス蜿ッ莉・蝨ィ螳カ荳ュ謌冶€セヲ蜈ャ螳、菴ソ逕ィ荳榊酔逧ИP萓★遞ョ譟仙€区ェ疲。医€r\n\r\n', 1, 5, 13),
(301, 1, 28, 'categ', '邯イ遶呵ウ', '', 1, 0, 1),
(302, 2, 28, 'categ', '逕ィ謌カ雉', '', 1, 0, 2),
(303, 3, 28, 'categ', '侭邨ア險', '', 1, 0, 3),
(304, 4, 28, 'categ', '逋シ蟶', '', 1, 0, 4),
(305, 5, 28, 'categ', '荳玖シ', '', 1, 0, 5),
(306, 6, 28, 'categ', '謌題ゥイ諤取ィ」謠仙合荳玖シ蛾€溷コヲ', '', 1, 0, 6),
(307, 7, 28, 'categ', '謌醍噪邯イ霍ッ謠蝉セ帛膚SP我スソ逕ィ莠€城€壻サ」逅€よ諛芽ゥイ諤惹ケ亥★', '', 1, 0, 7),
(308, 8, 28, 'categ', '轤コ莉€荵域騾」荳堺ク奇シ滄屮驕捺陲ォ邯イ遶吝ア剰反莠', '', 1, 0, 8),
(309, 9, 28, 'categ', '螯よ棡蠕樣€呵」。謇セ荳榊芦謌醍噪蝠城。檎噪隗」遲費シ梧隧イ諤惹ケ郁セヲ', '', 1, 0, 9),
(310, 10, 28, 'item', '蛻ー蠎穂サ€荵域弍BTittorrent会シ滓隕∝ヲゆス墓燕閭ス蠑芦騾咎。樒ィ句シ擾シ', '恚<a class="faqlink" href="http://www.btfaq.com/">Brian逧ВitTorrent FAQ蜿頑欠蟆</a>縲', 1, 1, 1),
(311, 11, 28, 'item', '謌大€第告蜃コ萓噪骭「荳雁頭蜈貞悉莠', '謇€譛画告蜉ゥ逧犬逕ィ莠守カュ隴キ莨コ譛榊勣逧イサ逕ィ縲', 1, 1, 2),
(312, 12, 28, 'item', '謌大セ槫頭陬。蜿ッ莉・謳槫芦萓コ千「シ逧狭雋晢シ', '騾吝€亀racker菴ソ逕ィ逧弍NexusPHP逧ィ句シ冗「シ縲らィ句シ冗「シ謚灘叙莠句ョ懶シ瑚ォ狗恚<a class="faqlink" href="aboutnexus.php">騾呵」。</a>縲<br />\r\nNexusPHP逧ィ句シ冗「シ譏ッ譬ケ謫啜BSource逧コ千「シ謾ケ蟇ォ逧€5BDev邯イ遶呻シ卦racker萓コ千「シ莉・蜿顔、セ蜊€隲門」蝨ィ騾呵」。<a class="faqlink" href="http://www.tbdev.net/">TBDev.net</a>縲', 1, 1, 3),
(313, 13, 28, 'item', '謌題ィサ蜀贋コク€蛟玖ウャ陌滉ス弍蜊サ豐呈怏謾カ蛻ー鬩苓ュ蛾Ψ莉カ', '騾吝セ域怏蜿ッ閭ス譏ッTracker謇€蝨ィ逧シコ譛榊勣邯イ霍ッ蜃コ迴セ莠撫鬘後€ゆス蜿ッ莉・蝪ォ蟇ォ<a href="confirm_resend.php" class="faqlink">騾吝€玖。ィ譬シ</a>隶謎シコ譛榊勣驥咲匸鬩苓ュ蛾Ψ莉カ縲<br />\r\n騾壼クク豐呈怏蠕怜芦遒コ隱咲噪險サ蜀雁クウ謌カ譛惠24蟆乗凾蜷手「ォ遘サ髯、梧園莉・菴蜿ッ莉・蝨ィ隨ャ莠悟、ゥ驥崎ゥヲ縲る怙隕∵ウィ諢冗噪譏ッ悟ヲよ棡菴隨ャ荳€谺。豐呈怏謾カ蛻ー遒コ隱堺ソ。檎ャャ莠梧ャ。譛牙セ亥、ァ逧庄閭ス莉咲┯辟。豕墓噺蛻ー遒コ隱堺ソ。梧園莉・謠帑ク€蛟畿-mail菴榊捩譏ッ荳€蛟倶ク埼険逧クサ諢上€', 1, 2, 1),
(314, 14, 28, 'item', '謌大ソ倩ィ倅コ畑謌カ蜷/蟇「シ莠シ瑚蟷ォ謌第伽蝗樔セケ茨シ', '隲句。ォ蟇ォ<a class="faqlink" href="recover.php">騾吝€玖。ィ蝟ョ</a>蛟大ー滑逋サ蜈・隧ウ諠匸驍オヲ菴', 1, 2, 2),
(315, 15, 28, 'item', '謌大庄莉・邨ヲ謌醍噪雉ャ陌滓隼蛟句錐蟄嶺ケ茨シ', '謌大€大ケカ荳肴髪謠エ邨ヲ雉ャ陌滓隼蜷阪€', 1, 2, 3),
(316, 16, 28, 'item', '蜿ッ莉・遘サ髯、荳€蛟具シ亥キイ遒コ隱咲噪芽ウャ陌滉ケ茨シ', '謌大€台ク€闊ャ荳肴署萓幄ゥイ鬘樊恪蜍呻シ梧園莉・荳崎ヲ∬ヲ∵アらァサ髯、莉サ菴穂ク€蛟玖「ォ菴驍€隲狗噪蟶ウ陌溘€', 1, 2, 4),
(317, 17, 28, 'item', '驍」荵茨シ御サ€荵域弍謌醍噪蛻コォ邇atio会シ', '蟆ア蝨ィ鬆擇蜉溯蜑イ蜊€逧ク矩擇縲<br />\r\n<br />\r\n<img src="pic/ratio.png" alt="ratio" />\r\n<br />\r\n<br />\r\n蜊€蛻紛鬮泌莠ォ邇柱迯ィ遶句莠ォ邇弍蠕磯㍾隕∫噪縲よ紛鬮泌莠ォ邇梨豕ィ逧弍閾ェ蠕樔ス蜈・邯イ遶吩サ・萓シ瑚ウャ陌溽噪謨エ鬮比ク雁さ闊ク玖シ蛾㍼縲り€檎昏遶句莠ォ邇援驥晏ー肴ッ丈ク€蛟倶ス豁」蝨ィ荳玖シ画蛛夂ィョ逧ェ疲。医€r\n<br />\r\n<br />\r\n菴蜿ッ閭ス逵句芦蜈ゥ遞ョ雎。蠕オ蠑丈セサ」譖ソ謨ク蟄暦シ"Inf."碁€吝€区弍辟。髯撰シnfinity臥噪邵ョ蟇ォ梧э諤晄弍菴ク玖シ蛾㍼轤コ0菴榊シ瑚€御ク雁さ驥丞援譏ッ莉サ諢丈ク€蛟矩撼髮カ逧€シ(荳雁さ驥/荳玖シ蛾㍼=辟。遯ョ螟ァ)"---"梧㊨隧イ陲ォ隕也ぜ窶應ク榊庄逕ィ窶晢シ碁€呵ェェ譏惹コク玖シ蛾㍼蜥御ク雁さ驥城譏ッ0菴榊€(荳雁さ驥/荳玖シ蛾㍼=0/0 騾呎弍荳€蛟倶ク咲「コ螳夂噪驥)縲r\n', 1, 2, 5),
(318, 18, 28, 'item', '轤コ莉€荵域逧ИP菴榊捩蟇溽恚蝨ィ謌醍噪蛟倶ココ雉ィ企擇荳奇シ', '蜿ェ譛我ス閾ェ蟾ア蜥檎カイ遶儁oderator蜿贋サ・荳顔噪邂。逅藤蜿ッ莉・逵句芦菴逧ИP菴榊捩蜥窪mail縲よ勸騾夂畑謌カ譏ッ逵倶ク榊芦騾吩コ幄ウィ顔噪縲', 1, 2, 6),
(321, 21, 28, 'item', '轤コ莉€荵域€懷庄騾」邱壺€晄弍窶懷凄窶晢シ滂シ井サ・蜿顔ぜ莉€荵域髴€隕梨豕ィ騾吝€句撫鬘鯉シ滂シ', 'Tracker莨コ譛榊勣隱咲ぜ菴蝨ィ髦イ轣ォ迚惠NAT讖区磁蜷趣シ悟ケカ荳皮┌豕墓磁謾カ蜈カ莉鳳eer逧€」邱夊ヲ∵アゅ€r\n<br />\r\n<br />\r\n騾呎э蜻ウ逹€蜈カ莉也噪螟ァ謇ケPeer辟。豕暮€」邱壼芦菴悟宵閭ス逕ア菴騾」邱壼芦莉門€代€よ峩邉溽ウ慕噪諠ウ∵弍悟ヲよ棡蜈ゥ蛟輝eer驛ス陌穂コ朱€呎ィ」逧朽諷具シ御サ門€大ーョ悟辟。豕暮€」邱壼芦蟆肴婿縲る€吝ー堺コ取紛鬮秘€溷コヲ譛臥捩髱槫クク荳榊茜逧スア髻ソ縲r\n<br />\r\n<br />\r\n蟆堺コ朱€吝€句撫鬘鯉シ梧怏莉・荳玖ァ」豎コ譁ケ蠑擾シ壼ー堺コ朱亟轣ォ迚シ碁幕蝠溽畑莠取磁謾カ騾」邱夂噪騾夊ィ雁泛亥叉菴蝨ィBT逕ィ謌カ遶ッ荳ュ螳夂セゥ逧€夊ィ雁泛会シ帛ー堺コ晒AT御ス髴€隕鄂ョNAT莨コ譛榊勣菴ソ逕ィBasic NAT譁ケ蠑剰€御ク肴弍NAPT井ク榊酔逧キッ邱壽怏逹€荳榊酔逧濤陦梧婿蠑上€らソサ髢ア菴キッ邱壽枚莉カ謌門ョ「譛崎ォ門」€ゆス荵溷庄莉・蝨ィ<a class="faqlink" href="http://portforward.com/">PortForward</a>謇セ蛻ー髣應コ取ュ、蝠城。檎噪螟ァ驥剰ウィ奇シ峨€r\n\r\n\r\n\r\n\r\n\r\n', 1, 2, 9),
(322, 22, 28, 'item', '荳榊酔逧畑謌カ遲臥エ壻サ」陦ィ莠サ€荵亥性鄒ゥ', '<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n<td class="embedded" width="200" valign="top">&nbsp; <b class="Peasant_Name">Peasant</b></td>\r\n<td class="embedded" width="5">&nbsp;</td>\r\n<td class="embedded"> 陲ォ髯咲エ夂噪逕ィ謌カ御サ門€第怏30螟ゥ譎る俣萓署蜊莠ォ邇シ悟凄蜑サ門€第怎陲ォ雕「縲ら┌豕慕匸陦ィ雜」蜻ウ逶貞螳ケ帷┌豕慕筏隲句暑諠処邨撰シ帷┌豕穂ク雁さ蟄怜ケ輔€r\n</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="User_Name">User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">譁ー逕ィ謌カ逧占ィュ邏壼挨縲ょ宵閭ス蝨ィ豈丞捉蜈ュ荳ュ蜊12鮟櫁豈丞捉譌・譎壻ク11鮟59蛻匸蟶ィョ蟄舌€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="PowerUser_Name">Power User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦荳€蛟矩隲句錐鬘搾シ帛庄莉・逶エ謗・逋シ蟶ィョ蟄撰シ帛庄莉・讙「隕鋒FO譁サカ帛庄莉・讙「隕也畑謌カ貂帛庄莉・隕∵アらコ檎ィョ 蜿ッ莉・蛯ウ騾隲具シ 蜿ッ莉・讙「隕匁賜陦梧ヲ懶シ帛庄莉・讙「隕門莉也畑謌カ逧ィョ蟄先寔蜿イ(螯よ棡逕ィ謌カ髫ア遘∫ュ臥エ壽悴險ュ螳夂ぜ"蠑キ") 蜿ッ莉・遘サ髯、閾ェ蟾ア荳雁さ逧ュ怜ケ輔€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="EliteUser_Name">Elite User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded"><b class="EliteUser_Name">Elite User</b>蜿贋サ・荳顔畑謌カ蟆∝ュ倩ウャ陌溷錘荳肴怎陲ォ遘サ髯、縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="CrazyUser_Name">Crazy User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦蜈ゥ蛟矩隲句錐鬘搾シ帛庄莉・蝨ィ蛛夂ィョ/荳玖シ/逋シ蟶噪譎ょ€咎∈蜿門諺蜷榊梛諷九€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="InsaneUser_Name">Insane User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蜿ッ莉・讙「隕匁勸騾壽律隱後€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VeteranUser_Name">Veteran User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦荳牙€矩隲句錐鬘搾シ帛庄莉・讙「隕門莉也畑謌カ逧ゥ戊ォ悶€∝ク門ュ先寔蜿イ縲<b class="VeteranUser_Name">Veteran User</b>蜿贋サ・荳顔畑謌カ譛ーク驕菫晉蕗雉ャ陌溘€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="ExtremeUser_Name">Extreme User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蜿ッ莉・譖エ譁ー驕取悄逧、夜Κ雉ィ奇シ帛庄莉・讙「隕胞xtreme User隲門」€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="UltimateUser_Name">Ultimate User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦莠泌€矩隲句錐鬘阪€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="NexusMaster_Name">Nexus Master</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蠕怜芦蜊∝€矩隲句錐鬘阪€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <img class="star" src="pic/trans.gif" alt="Star" /></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">轤コ邯イ遶呎告谺セ逧クサ縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VIP_Name">雋エ雉(VIP)</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">蜥<b class="NexusMaster_Name">Nexus Master</b>謫∵怏逶ク蜷瑚ィア蜿ッ谺雁ケカ陲ォ隱咲ぜ譏ッ邊セ闍ア謌仙藤縲ょ髯、閾ェ蜍暮剄邏壹€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="User_Name">蜈カ莉</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">閾ェ險らュ臥エ壹€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="Retiree_Name">鬢願€∵酪(Retiree)</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">騾€莨大錘逧ョ。逅蜩。縲</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="Uploader_Name">逋シ蟶藤(Uploader)</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">蟆域ウィ逧匸蟶€€ょ髯、閾ェ蜍暮剄邏夲シ帛庄莉・讙「隕門諺蜷咲畑謌カ逧悄蟇ヲ霄ォ莉ス縲</td>\r\n</tr>\r\n<tr>\r\n<td cl
(323, 23, 28, 'item', '', '<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n<td class="embedded" width="200" valign="top">&nbsp; <b class="Peasant_Name">Peasant</b></td>\r\n<td class="embedded" width="5">&nbsp;</td>\r\n<td class="embedded" valign="top"><br />\r\n1.50GB0.4€<br />\r\n2.100GB0.5€<br />\r\n3.200GB0.6€<br />\r\n4.400GB0.7€<br />\r\n5.800GB0.8€</td>\r\n</tr>\r\n\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="PowerUser_Name">Power User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">450G1.05<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€0.95€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="EliteUser_Name">Elite User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">8120G1.55r\n<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€1.45€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="CrazyUser_Name">Crazy User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">15300G2.05r\n<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€1.95€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="InsaneUser_Name">Insane User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">25500G2.55<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€2.45€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VeteranUser_Name">Veteran User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">40750G3.05<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€2.95€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="ExtremeUser_Name">Extreme User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">601TB3.55<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€3.45€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="UltimateUser_Name">Ultimate User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">801.5TB4.05<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€3.95€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="NexusMaster_Name">Nexus Master</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">1003TB4.55<br />\r\n逡カ譴昜サカ隨ヲ蜷域凾蟆€4.45€</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <img class="star" src="pic/trans.gif" alt="Star" /></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">€
(325, 25, 28, 'item', '轤コ莉€荵域恚蜿狗┌豕募刈蜈・', '逕ィ謌カ謨ク逶ョ譛画園髯仙宛井ス蜿ッ莉・讙「隕問€憺ヲ夜-&gt;邯イ遶呵ウ侭-&gt;荳企剞窶晢シ峨€ら文驕泌芦驍」蛟区丙逶ョ譎ゑシ梧蛟第怎蛛懈ュ「謗・蜿玲眠謌仙藤縲<br />\r\n逕ア莠朱撼豢サ霄咲畑謌カ(髟キ譛滉ク堺スソ逕ィ雉ャ陌溽噪逕ィ謌カ)蠑戊オキ雉ャ陌溯ウコ先オェ雋サ悟屏豁、謌大€大ー炊隧イ驛ィ蛻畑謌カ檎ぜ蜈カ莉匁Φ蜉蜈・逕ィ謌カ鬨ー蜃コ遨コ髢薙€<br />\r\n髣應コ朱撼豢サ霄咲畑謌カ貂炊隕丞援悟純辣ァ<a class="faqlink" href="rules.php">隕丞援</a>縲', 1, 2, 13),
(326, 26, 28, 'item', '諤取ィ」閾ェ險るュ蜒擾シ', '鬥門梧伽荳€蛟倶ス蝟懈ュ。逧恂迚シ檎文辟カ莠┌豕暮&蜿肴蛟醍噪<a class="faqlink" href="rules.php">隕丞援</a>縲ら┯蜷惹ス隕∵伽荳€蛟句ュ俶叛螳噪蝨ー譁ケ梧ッ疲婿隱ェ謌大€題蟾ア逧<a class="faqlink" href="bitbucket-upload.php">荳雁さ蝎ィ</a>縲ょ莠惹シコ譛榊勣雋霈臥噪閠蛟第峩蟶梧悍菴恂迚ク雁さ蛻ー蛻・逧カイ遶呻シ檎┯蜷主ーURL鮟剰イシ蛻ー菴<a class="faqlink" href="usercp.php?action=personal">謗ァ蛻カ髱「譚ソ</a>逧ュ蜒酋RL驛ィ蛻€ <br />\r\n<br />\r\n隲倶ク崎ヲ∫ぜ莠ュ蜒クャ隧ヲ鬆ュ蜒剰€檎匸蟶悶€ょヲよ棡荳€蛻御ス惠菴ゥウ諠擇逵句芦螳€', 1, 2, 14),
(327, 27, 28, 'item', '譛€蟶ク隕狗噪雉侭譛ェ閭ス蠕怜芦譖エ譁ー逧次蝗', '<ul>\r\n<li>莨コ譛榊勣雜/譛ェ蝗樊㊨縲ょ宵隕∝隧ヲ逹€菫晄戟髫取ョオ菴懈・ュ逶エ蛻ー莨コ譛榊勣蝗槫セゥ蝗樊㊨(荳榊サコ隴ー騾」郤梧焔蜍墓ク碁€呎ィ」譛刈驥堺シコ譛榊勣雋)縲</li>\r\n<li>菴豁」蝨ィ菴ソ逕ィ荳咲ゥゥ螳夂噪逕ィ謌カ遶ッ縲ょヲよ棡菴諠ウ隕∽スソ逕ィ貂ャ隧ヲ迚域VS迚域悽御ス髴€隕∬蟾ア謇ソ謫皮罰豁、蟶カ萓噪鬚ィ髫ェ縲</li>\r\n</ul>', 1, 3, 1),
(328, 28, 28, 'item', '譛€菴ウ逧隧ヲ', '<ul>\r\n<li>螯よ棡菴逶ョ蜑肴ュ」荳玖シ/荳雁さ逧ィョ蟄仙ケカ荳榊惠菴畑謌カ隧ウ諠擇荳ュ御ス蜿ッ莉・遲我ク€譛シキ蛻カ騾イ陦梧焔蜍墓峩譁ー縲</li>\r\n<li>遒コ菫昜ス豁」遒コ蝨ー髣憺哩莠畑謌カ遶ッ霆滄ォ費シ悟凄蜑Ⅰracker莨コ譛榊勣辟。豕墓噺蛻ー"event=completed"逧ィ願辧縲</li>\r\n<li>螯よ棡Tracker莨コ譛榊勣謗帑コシ御ク崎ヲ∝●豁「荳雁さ縲ょ宵隕∝惠菴邨先據逕ィ謌カ遶ッ荵句燕莨コ譛榊勣蝗槫セゥ蟾・菴懶シ梧園譛臥噪雉侭驛ス譛セ怜芦豁」遒コ蝨ー譖エ譁ー縲</li>\r\n</ul>', 1, 3, 2),
(329, 29, 28, 'item', '謌大庄莉・莉サ諢城∈蜿烹ittorrent逕ィ謌カ遶ッ霆滄ォ比ケ茨シ', '譬ケ謫<a class="faqlink" href="aboutnexus.php">NexusPHP</a>蟆榊クク隕毅itTorrent逕ィ謌カ遶ッ逧クャ隧ヲ檎岼蜑肴悽遶儺racker<b>蜿ェ蜈∬ィア</b>菴ソ逕ィ莉・荳狗噪BitTorrent逕ィ謌カ遶ッ霆滄ォ斐€<br />\r\n<a class="faqlink" href="aboutnexus.php">NexusPHP</a>逧クャ隧ヲ蝣ア蜻雁庄<a class="faqlink" href="http://www.nexusphp.com/wiki/%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%B5%8B%E8%AF%95%E6%8A%A5%E5%91%8A">蝨ィ豁、讙「隕</a>縲r\n<br />\r\n<b>Windows:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://www.utorrent.com">uTorrent</a>: 1.6.1, 1.7.5, 1.7.6, 1.7.7, 1.8Beta(Build 10364), 2.0(Build 17624)蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://www.bittorrent.com">BitTorrent</a>: 6.0.1, 6.0.2, 6.0.3蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://deluge-torrent.org">Deluge</a>: 0.5.9.1, 1.1.6蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://rufus.sourceforge.net">Rufus</a>: 0.6.9, 0.7.0蜿雁錘郤檎沿譛ャ</li>\r\n</ul>\r\n<b>Linux:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://deluge-torrent.org">Deluge</a>: 0.5.9.1, 1.1.6蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://rufus.sourceforge.net">Rufus</a>: 0.6.9, 0.7.0蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://www.transmissionbt.com">Transmission</a>: 1.21蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://libtorrent.rakshasa.no">rTorrent</a>: 0.8.0ibtorrent 0.12.0謌門錘郤檎沿譛ャ牙所蜷守コ檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://www.rahul.net/dholmes/ctorrent/">Enhanced CTorrent</a>: 3.3.2蜿雁錘郤檎沿譛ャ</li>\r\n</ul>\r\n<b>MacOS X:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://www.transmissionbt.com">Transmission</a>: 1.21蜿雁錘郤檎沿譛ャ</li>\r\n<li><a class="faqlink" href="http://sourceforge.net/projects/bitrocket/">BitRocket</a>: 0.3.3(32)蜿雁錘郤檎沿譛ャ</li>\r\n</ul>\r\n<b>Symbian (蜒セ帶クャ隧ヲ):</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://amorg.aut.bme.hu/projects/symtorrent">SymTorrent</a>: 1.41蜿雁錘郤檎沿譛ャ</li>\r\n</ul>\r\n<br />\r\n\r\n<b>莉・荳顔畑謌カ遶ッ蝨ィhttps謾ッ謠エ譁ケ髱「</b>\r\n<ul>\r\n<li>uTorrent 1.61: 辟。豕募㊥遒コ隗」譫辛ttps逧дracker, 蜷梧凾蝨ィ菴ソ逕ィ譛蟾ア隴伜挨轤コuTorrent 1.5</li>\r\n<li>Rufus: 豐呈怏https謾ッ謠エ, 蟷カ荳泌キイ邯灘蟷エ豐呈怏郢シ郤碁幕逋シ</li>\r\n<li>rtorrent: 髴€隕∵焔蟾・險ュ螳售SL隴画嶌, 隧ウ邏ー雉ィ願ォ玖陦梧衍髢ア蜈カ螳俶婿邯イ遶呵ェェ譏</li>\r\n</ul>\r\n\r\n<br />\r\n\r\n蜷梧凾隲句驥城∩蜈堺スソ逕ィ陌穂コ取クャ隧ヲ譛溽噪逕ィ謌カ遶ッ霆滄ォ, 螯VTorrent 1.8.0B縲r\n\r\n轤コ莠セ樊悽遶吝セ怜芦譛€螂ス逧ク玖シ蛾ォ秘ゥ,謌大€鷹ォ伜コヲ蟒コ隴ー<a class="faqlink" href="http://www.utorrent.com/download.php">uTorrent</a> 莉・蜿<a class="faqlink" href="http://azureus.sourceforge.net/download.php">Azureus</a>騾吝蛟玖サ滄ォ皮噪譛€譁ー遨ゥ螳夂沿縲', 1, 5, 3),
(330, 30, 28, 'item', '轤コ莉€荵域豁」蝨ィ荳玖シ/蛛夂ィョ逧ク€蛟狗ィョ蟄先怎蝨ィ謌醍噪隧ウ諠擇荳ュ陲ォ蛻怜螟壽ャ。', '螯よ棡蝗轤コ譟蝉コ帛次蝗(豈疲婿隱ェ豁サ讖滂シ檎畑謌カ遶ッ螟ア蜴サ蝗樊㊨)菴畑謌カ遶ッ髱樊ュ」蟶ク邨先據蟷カ荳比ス蜿磯㍾譁ー髢句福螳シ悟ョ怎陲ォ驟咲スョ蛻ー荳€蛟句譁ー逧Пeer ID, 騾呎ィ」螳ッ溽恚轤コ荳€蛟句譁ー逧ィョ蟄舌€り€瑚ィョ蟄仙ーーク驕荳肴怎謾カ蛻ー窶彳vent=completed窶晄窶彳vent=stopped窶晉噪險願辧悟屏豁、蟆ク€逶エ陲ォ蛻怜逶エ蛻ーTracker貂炊騾セ譎ら噪Peer縲 辟。隕紋コーア蜿ッ莉・莠シ悟ョ怙蜷取怎豸亥、ア逧€', 1, 3, 4),
(331, 31, 28, 'item', '轤コ莉€荵域蟾イ邯灘ョ梧/蜿匁カ育噪遞ョ蟄蝉サ咲┯蝨ィ謌醍噪隧ウ諠擇陬。', '譛我ク€莠帷畑謌カ遶ッ梧ッ泌ヲりェェTorrentStorm蜥君ova Torrent悟惠蜿匁カ域ョ梧荳€蛟句キ・菴懃噪譎ょ€咏┌豕募髄Tracker莨コ譛榊勣豁」遒コ蛯ウ騾∬ィ願辧縲ょ惠驍」讓」逧ュ豕∽ク具シ卦racker莨コ譛榊勣蟆ク€逶エ菫晄戟遲牙セィ願辧逧朽諷具シ亥屏豁、譛ク€逶エ蛻怜遞ョ蟄千噪迢€諷狗ぜ蛛夂ィョ/荳玖シ臥噪迢€諷具シ臥峩蛻ーTracker貂炊騾セ譎ら噪Peer縲ら┌隕紋コーア蜿ッ莉・莠シ悟ョ怙蜷取怎豸亥、ア逧€', 1, 3, 5),
(333, 33, 28, 'item', '螟唔P蜿ッ莉・蠕樔ク榊酔逧崕閻ヲ逋サ蜈・/荳玖シ牙落滂シ', '譏ッ逧シ檎岼蜑控racker莨コ譛榊勣謾ッ謠エ蝟ョ蛟狗畑謌カ蠕樔ササ諢丞€区丙逧ИP菴榊捩蜷梧凾蟄伜叙/荳玖シ峨€<br />\r\n辟カ閠鯉シ悟ー堺コ主粍遞ョ譏ッ譛蛾剞蛻カ逧€ょー堺コ取ッ丞€狗ィョ蟄撰シ梧怙螟壼險ア3蛟句★遞ョ逧€」邱夲シ梧怙螟壼宵蜈∬ィア1蛟倶ク玖シ臥噪騾」邱夲シ磯€呎э蜻ウ逹€悟ー堺コ取汾蛟狗ィョ蟄蝉ス荳€谺。蜿ェ閭ス蝨ィ荳€蛟句慍譁ケ荳玖シ会シ峨€', 1, 3, 7),
(336, 36, 28, 'item', '轤コ莉€荵域辟。豕慕匸蟶ィョ蟄撰シ', '隲狗恚<a class="faqlink" href="rules.php">隕丞援</a>縲', 1, 4, 1),
(337, 37, 28, 'item', '謌鷹怙隕∵サソ雜ウ蜩ェ莠帶「昜サカ謇崎蜈・逋シ蟶ー冗オ', '謇€蠢域サソ雜ウ逧「昜サカ喀r\n<ul>\r\n<li>蜈キ譛臥ゥゥ螳夂噪雉コ蝉セ</li>\r\n<li>蟷ウ蝮ッ丞捉雉コ千匸蟶丙驥丈ク榊ー台コ5蛟</li>\r\n</ul>\r\n菴育「コ菫晉匸蟶噪讙疲。育ャヲ蜷井サ・荳狗音蠕:\r\n<ul>\r\n<li>荳崎カ℃7螟ゥ荵句燕</li>\r\n<li>菴郁ヲ∵怏蛛夂ィョ逧蜉幢シ梧庄莉・遒コ菫晁蟆第怏謨井セ帷ィョ24蟆乗凾縲</li>\r\n<li>菴髴€隕∵怏閾ウ蟆鷹#蛻ー2MBit逧ク雁さ鬆サ蟇ャ縲</li>\r\n</ul>\r\n螯よ棡菴隱咲ぜ菴隨ヲ蜷井サ・荳頑「昜サカ碁ぅ荵井ク崎ヲ∫幻雎ォ<a class="faqlink" href="contactstaff.php">閨ッ郢ォ邂。逅</a>蜷ァ縲<br />\r\n<b>險倅ス擾シ</b> 莉皮エー蝪ォ蟇ォ菴筏隲具シ∫「コ菫晉筏隲倶クュ蛹性菴ク雁さ騾溷コヲ莉・蜿贋ス險亥逋シ蟶噪蜈ァ螳ケ逧。槫挨縲<br />\r\n蜿ェ譛我サ皮エー蝪ォ蟇ォ蟷カ荳皮カ馴℃諷朱㍾閠筏隲区燕譛エ榊謌大€醍噪隕夜㍽縲', 1, 4, 2),
(338, 38, 28, 'item', '謌大庄莉・逋シ蟶蛟鷹€呵」。逧ィョ蟄仙芦蛻・逧Уracker莨コ譛榊勣荵茨シ', '辟。豕輔€よ蛟第弍荳€蛟句ー哩逧€剞蛻カ逕ィ謌カ謨ク逧、セ蜊€縲ょ宵譛芽ィサ蜀顔畑謌カ謇崎菴ソ逕ィ謌大€醍噪Tracker縲ょー蛟醍噪遞ョ蟄先ェ疲。育匸蟶芦蜈カ莉傍racker莨コ譛榊勣譏ッ蠕貞京逧シ悟屏轤コ邨募、ァ螟壽丙蝌苓ゥヲ荳玖シ蛾€吩コ帶ェ疲。育噪莠コ蟆┌豕暮€」邱壼芦謌大€醍噪莨コ譛榊勣縲ょー蛟醍噪遞ョ蟄千匸蟶芦蜈カ莉傍racker蜿ェ隶馴ぅ陬。逧畑謌カ諠ア諤抵シ亥屏轤コ辟。豕穂ク玖シ会シ牙ケカ荳泌ー肴蛟醍箸逕滓雰蟆肴ュ邱抵シ梧園莉・騾咏ィョ陦檎ぜ譏ッ謌大€第弍辟。豕募ョケ蠢咲噪縲<br />\r\n<br />\r\n螯よ棡蜈カ莉也カイ遶咏噪邂。逅藤蜷第蛟題蝣ア謌大€醍噪遞ョ蟄占「ォ逋シ蟶惠莉門€醍噪邯イ遶吩ク奇シ悟ー肴ュ、雋雋ャ逧畑謌カ蟆屏豁、陲ォ遘サ蜃コ謌大€醍噪遉セ蜊€縲<br />\r\n<br />\r\n菴弍蟆堺コ主セ樊蛟鷹€呵」。荳玖シ牙セ怜芦逧ェ疲。茨シ御ス蜿ッ莉・髫ィ諢乗桃謗ァ螳€托シ育匸蟶€遒コ隱ェ譏守ぜ<b>迯ィ蜊</b>逧コ宣勁螟厄シ峨€ゆス蜿ッ莉・蛻カ菴懷嘗荳€蛟狗ィョ蟄撰シ悟ッォ蜈・蜈カ莉傍racker逧ス榊捩悟ケカ逋シ蟶芦菴蝟懈ュ。逧カイ遶吩ク翫€', 1, 4, 3),
(339, 39, 28, 'item', '荳玖シ我セ噪讙疲。郁ゥイ諤惹ケ磯幕蝠滂シ', '蝨ィ騾吩サス<a class="faqlink" href="formats.php">謖</a>陬。髱「謇セ謇セ逵句制縲', 1, 5, 1),
(340, 40, 28, 'item', '謌台ク玖シ我コク€驛ィ髮サ蠖ア御ス弍荳肴逋スCAM/TS/TC/SCR譏ッ莉€荵域э諤?', '蝨ィ騾吩サス<a class="faqlink" href="videoformats.php">謖</a>陬。髱「謇セ謇セ逵句制縲', 1, 5, 2),
(341, 41, 28, 'item', '轤コ莉€荵井ク€蛟句庄逕ィ逧ィョ蟄仙ソス辟カ蟆ア豸亥、ア莠', '莉・荳句次蝗驛ス譛ー手騾吝€狗樟雎。逧迴セ:<br />\r\n(<b>1</b>) 謖臥<a class="faqlink" href="rules.php">邯イ遶呵ヲ丞援</a>碁€吝€狗ィョ蟄蝉ク咲ャヲ蜷郁ヲ丞援蟾イ陲ォ遘サ髯、縲r\n<br />\r\n(<b>2</b>) 逋シ蟶€屏轤コ讙疲。亥ュ伜惠蝠城。瑚€檎ァサ髯、莠€ゆク€闊ャ萓ェェ檎匸蟶€怎逋シ蟶ク€蛟倶コ、譖ソ逧沿譛ャ逧€<br />\r\n(<b>3</b>) 蝨ィ髟キ譎る俣譁キ遞ョ蜷守ィョ蟄占「ォ閾ェ蜍慕ァサ髯、莠€', 1, 5, 3),
(342, 42, 28, 'item', '謌題ゥイ諤取ィ」郤悟さ讙疲。域オヲ荳€蛟区ェ疲。育コ檎ィョ蜻「', '髢句福蜑ッ讙泌錐轤コ.torrent逧ェ疲。茨シ檎文菴畑謌カ遶ッ霆滄ォ碑ゥ「蝠丞┫蟄倡噪逶ョ骭碁∈蜿門キイ邯灘ュ伜惠逧ェ疲。亥ュ俶叛逧岼骭シ悟ョーア閭ス螟髢句ァ狗コ悟さ/郤檎ィョ莠€', 1, 5, 4),
(343, 43, 28, 'item', '轤コ莉€荵域ク玖シ画怏譎ょ€吝●蝨ィ99%?', '謇€荳玖シ牙芦逧援谿オ雜雁、夲シ梧頗蟆区刀譛我ス謇€郛コ蟆醍噪迚ョオ逧酔莨エ蟆ア蟆ョ雁セ苓カ雁峅髮」縲る€吝ーア譏ッ轤コ莉€荵域怏譎ょ€吝惠荳玖シ牙叉蟆ョ梧凾蛟呻シ碁€溷コヲ譛ョ雁セ鈴撼蟶ク諷「檎爆閾ウ螳悟蛛懈ュ「莠€ょ宵隕∬€仙ソュ牙€呻シ梧譌ゥ謌匁劒蜑ゥ鬢倡噪驛ィ蛻ク€螳夊荳玖シ牙芦逧€', 1, 5, 5),
(344, 44, 28, 'item', '"驛ィ蛻嶋蟶碁ゥ苓ュ牙骭ッ"騾呎「晁ウィ頑弍莉€荵域э諤晢シ', 'BT逧畑謌カ遶ッ譛ェ「譟・螳園謾カ蛻ー逧侭逧ョ梧紛諤ァ縲ょヲよ棡譟蝉ク€蛟狗援谿オ蝨ィ鬩苓ュ我クュ蜃コ骭ッ碁ぅ荵磯€吝€狗援谿オ蟆「ォ驥肴眠荳玖シ峨€ょ辷セ逧嶋蟶碁ゥ苓ュ蛾険隱、譏ッ髱槫クク蟶ク隕狗噪迴セ雎。御ク咲畑謫泌ソ€<br />\r\n<br />\r\n譛我コ帷畑謌カ遶ッ譛牙ア剰反蜷台ス蛯ウ騾険隱、雉侭逧莉也畑謌カ遶ッ逧粥閭ス縲ょヲよ棡譛蛾€吝€矩∈鬆シ梧怙螂ス髢句福螳€ょ屏轤コ騾呎ィ」蜿ッ莉・菫晁ュ牙ヲよ棡譟仙€句酔莨エ邯灘クク蜷台ス蛯ウ騾険隱、逧侭譎ゑシ悟ョ怎陲ォ螻剰反縲', 1, 5, 6),
(345, 45, 28, 'item', '100MB螟ァ蟆冗噪遞ョ蟄撰シ梧諤惹ケ井ク倶コ120MB逧擲隘ソ蝗樔セ?', 'ヲ句嶋蟶碁ゥ苓ュ牙、ア謨礼噪驍」蛟句撫鬘後€ょヲよ棡菴畑謌カ遶ッ謾カ蛻ー莠険隱、逧碁ぅ荵亥ョ怎驥肴眠荳玖シ蛾€吩ク€驛ィ蛻シ悟屏豁、邵ス荳玖シ蛾㍼譛牙庄閭ス豈皮ィョ蟄仙、ァ蟆冗払蠕ョ螟ァ荳€莠帙€ら「コ菫昶€懷ア剰反蛯ウ騾険隱、雉侭逧畑謌カ遶ッ窶晉噪驍」蛟矩∈鬆「ォ髢句福莠シ碁€呎ィ」蜿ッ莉・貂帛ー大鬢倡噪荳玖シ峨€', 1, 5, 7),
(346, 46, 28, 'item', '轤コ莉€荵域畑謌カ遶ッ逧Уracker莨コ譛榊勣迢€諷句迴セ"Your ratio is too low! You need to wait xx h to start"逧険隱、', '蝨ィ<b>譁ー</b>遞ョ蟄占「ォ荳雁さ蛻ーTracker莨コ譛榊勣荵句錘梧怏荳€莠帷畑謌カ蠢育ュ我ク€莠帶凾髢捺燕閭ス髢句ァ倶ク玖シ峨€<br>\r\n騾吝€句サカ驕イ蜿ェ譛スア髻ソ驍」莠帛莠ォ邇ス惹ク比ク玖シ蛾㍼螟ァ莠10G逧畑謌カ縲<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.4</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ驕イ</td>\r\n <td class="embedded" width="100">24蟆乗凾</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.5</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ驕イ</td>\r\n <td class="embedded" width="100">12蟆乗凾</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.6</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ驕イ</td>\r\n <td class="embedded" width="100">6蟆乗凾</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">蛻コォ邇ス惹コ</td>\r\n <td class="embedded" width="40">0.8</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">蟒カ驕イ</td>\r\n <td class="embedded" width="100">3蟆乗凾</td>\r\n</tr>\r\n</table>', 0, 5, 8),
(347, 47, 28, 'item', '轤コ莉€荵育匸逕滉コ€吝€矩険隱、 "Port xxxx is blacklisted"?', '畑謌カ遶ッ蜷禅racker莨コ譛榊勣蝣ア蜻雁ョュ」蝨ィ菴ソ逕ィ譟仙€矩占ィュ逧ВT蜊泌ョ夐€夊ィ雁泛(6881-6889)謌匁弍莉サ菴募莉門クク隕輝2P騾夊ィ雁泛萓ス懃ぜ騾」邱夐€夊ィ雁泛縲<br />\r\n<br />\r\n譛ャ遶吩ク榊險ア騾吩コ幃€壼クク陲ォP2P蜊泌ョ夐占ィュ菴ソ逕ィ逧€夊ィ雁泛縲ょ次蝗譏ッ逶ョ蜑巧SP蟶ク蟶ク蟆埼€吩コ幃€夊ィ雁泛騾イ陦碁剞騾溘€<br />\r\n<br />\r\n陲ォ螻剰反逧€夊ィ雁泛螯ゆク具シ<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n <tr>\r\n <td class="embedded" width="100">Direct Connect</td>\r\n <td class="embedded" width="100">411 - 413</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">BitTorrent</td>\r\n <td class="embedded" width="100">6881 - 6889</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Kazza</td>\r\n <td class="embedded" width="100">1214</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Gnutella</td>\r\n <td class="embedded" width="100">6346 - 6347</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Emule</td>\r\n <td class="embedded" width="100">4662</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">WinMX</td>\r\n <td class="embedded" width="100">6699</td>\r\n </tr>\r\n</table>\r\n<br />\r\n隕∽スソ逕ィ謌大€醍噪Tracker莨コ譛榊勣御ス鄂ョ菴畑謌カ遶ッ菴ソ逕ィ譛ェ蝨ィ荳企擇蛻怜€夊ィ雁泛遽恪(蠕49152蛻ー65535驛ス譏ッ荳埼険逧∈蜿厄シ悟純逵<a class="faqlink" href="http://www.iana.org/assignments/port-numbers">IANA</a>)縲よウィ諢乗汾莠帷畑謌カ遶ッ悟ヲzureus 2.0.7.0謌匁峩鬮倡沿譛ャ悟ー肴園譛臥噪遞ョ蟄宣菴ソ逕ィ蜷御ク€騾夊ィ雁泛縲り€悟莉門、ァ螟壽丙逕ィ謌カ遶ッ轤コ豈丈ク€蛟狗ィョ蟄宣幕謾セ荳€蛟矩€夊ィ雁泛御ス蝨ィ驕ク蜿夜€夊ィ雁泛遽恪諛芽€蛻ー騾吝€句撫鬘鯉シ井ク€闊ャ萓ェェ騾夊ィ雁泛遽恪蟆丈コ10縲りィュ螳壻ク€蛟矩℃螟ァ逧恪蟷カ荳堺ク€螳壽怏螂ス陌包シ瑚€御ク泌庄閭ス譛牙ョ牙髫ア謔」)縲 <br />\r\n<br />\r\n騾吩コ幃€夊ィ雁泛譏ッ逕ィ莠主酔莨エ髢馴€夊ィ顔噪瑚€碁撼逕ィ莠守畑謌カ遶ッ騾」邱壼芦Tracker莨コ譛榊勣縲ょ屏豁、騾吝€区隼蜍募ケカ荳肴怎蠖ア髻ソ菴菴ソ逕ィ蜈カ莉傍racker莨コ譛榊勣井コ句ッヲ荳奇シ悟ョ爆閾ウ蜿ッ閭ス<i>蜉蠢ォ</i>謇€譛欝racker莨コ譛榊勣荳顔ィョ蟄千噪騾溷コヲ峨€ゆス畑謌カ遶ッ荵滉サ咲┯閭ス螟騾」邱壼芦驍」莠帑スソ逕ィ鬆占ィュ騾夊ィ雁泛逧酔莨エ縲ょヲよ棡菴畑謌カ遶ッ荳肴髪謠エ閾ェ蟾ア閾ェ險る€夊ィ雁泛碁ぅ荵域鋤荳€蛟句制縲<br />\r\n<br />\r\n荳崎ヲ∝髄謌大€題ゥ「蝠擾シ梧惠隲門」」。髱「謠仙撫遨カ遶滓㊨隧イ驕ク蜿紋サ€荵磯€夊ィ雁泛縲よ蛟醍噪逕ィ謌カ驕ク蜿也噪騾夊ィ雁泛雜企圷讖滂シ栗SP蟆ア雜企屮莉・謐画尊貂・壽蛟台スソ逕ィ逧€夊ィ雁泛悟セ櫁€檎┌豕募ー肴蛟醍噪騾夊ィ雁泛騾イ陦碁剞騾溘€ょヲよ棡謌大€大宵譏ッ邁。蝟ョ蝨ー隕丞ョ壻ク€蛟狗ッ碁ぅ荵SP蜿域怎蠕亥ソォ蟆埼ぅ蛟狗ッ恪蜈ァ逧€夊ィ雁泛騾イ陦碁剞騾溽噪縲<br />\r\n<br />\r\n譛€蜷朱d隕∬ェェ逧瑚ィ伜セ怜惠菴キッ邱壼柱/謌夜亟轣ォ迚ク企幕蝠滉ス驕ク蜿也噪騾夊ィ雁泛悟ヲよ棡菴譛蛾€吩コ帶擲隘ソ逧ゥア縲', 1, 5, 9),
(348, 48, 28, 'item', '驍」荵磯€吝€句造 窶廬O骭ッ隱、 - [骭ッ隱、陌13] 險ア蜿ッ陲ォ諡堤オ補€晢シ', '螯よ棡菴蜿ェ譏ッ諠ウ隕∬ァ」豎コ騾吝€句撫鬘檎噪隧ア碁㍾譁ー蝠溷虚菴崕閻ヲ諛芽ゥイ蟆ア蜿ッ莉・莠€ょ凄蜑噪隧ア檎ケシ郤瑚ョ€荳句悉縲<br />\r\n<br />\r\nIO骭ッ隱、謖噪譏ッ蛹ッ蜈・-蛹ッ蜃コ骭ッ隱、碁€呎弍荳€蛟区ェ疲。育ウサ邨ア骭ッ隱、瑚€碁撼萓謌大€醍噪Tracker莨コ譛榊勣縲ら文菴畑謌カ遶ッ逕ア莠取汾莠帛次蝗辟。豕暮幕蝠溽ィョ蟄蝉クュ譛ェ荳玖シ牙ョ梧ェ疲。域凾碁€吝€矩険隱、蟆ア譛匸逕溘€ 騾壼クク蜴溷屏譏ッ逕ィ謌カ遶ッ逧蛟句ッヲ萓句酔譎ょ惠蝓キ陦鯉シ夂文荳贋ク€谺。髣憺哩逕ィ謌カ遶ッ譎ょ屏轤コ譟千ィョ蜴溷屏螳イ呈怏陲ォ逵滓ュ」髣憺哩悟セ櫁€悟ァ狗オょ惠閭梧勹蝓キ陦後€ょ屏豁、讙疲。郁「ォ骼門ョ夲シ御スソ蠕玲眠逧ッヲ萓狗┌豕暮幕蝠滄€吝€区ェ疲。医€<br />\r\n<br />\r\n蜿ヲ螟紋ク€蛟倶ク榊クク蜃コ迴セ逧次蝗譏ッ蝗轤コ閠∬逧ЁAT讙疲。育ウサ邨ア縲よ汾莠帷ウサ邨ア蟠ゥ貎ー蜿ッ閭ス蟆手譛ェ荳玖シ牙ョ梧ェ疲。域錐螢橸シ梧磁逹€蟆ア蜃コ迴セ莠€吝€矩険隱、縲ょ濤陦御ク€谺。scandisk諛芽ゥイ蜿ッ莉・隗」豎コ騾吝€句撫鬘後€よウィ諢擾シ悟宵譛臥文菴菴ソ逕ィWindows 9X菴懈・ュ邉サ邨ア亥宵謾ッ謠エFAT讙疲。育ウサ邨ア惠Windows NT/2000/XP荳ュ菴ソ逕ィFAT讙疲。育ウサ邨ア逧凾蛟呎燕豈泌ー榊庄閭ス蜃コ迴セ騾吝€句撫鬘後€TFS讙疲。育ウサ邨ア隕∝▼螢ッ險ア螟夲シ御ク榊、ェ蜿ッ閭ス蜃コ迴セ騾呎ィ」逧撫鬘後€', 1, 5, 10),
(350, 50, 28, 'item', '荳崎ヲヲャ荳贋ク玖シ画眠逋シ蟶噪遞ョ蟄', '荳玖シ蛾€溷コヲ荳サ隕∝叙豎コ莠惹ク雁さ閠/荳玖シ芽€(SLR)縲ょヲよ棡譏ッ遞ョ蟄先弍譁ー逋シ蟶噪荳秘撼蟶ク蜿玲ュ。霑手€郡LR蜿亥セ井ス守噪遞ョ蟄撰シ御ク玖シ蛾€溷コヲ菴取弍蟶ク隕狗噪蝠城。後€<br />\r\n<br />\r\n隲狗欧險倅ス荳榊万豁。菴朱€滉ク玖シ峨€よ園莉・螟<b>荳雁さ</b>隶灘挨莠コ荳咲畑蠢崎€仙酔讓」逧峅謫セ縲r\n<br />\r\n<br />逕ア蜈カ譏ッ逡カ菴サ蟇ャ霈御ク崎ヲヲャ荳贋ク玖シ画眠逋シ蟶噪遞ョ蟄舌€よ怙螂ス逧ク玖シ蛾€溷コヲ騾壼クク蝨ィ荳€蛟狗ィョ蟄千函蜻ス蜻ィ譛溽噪荳€蜊頑凾蜃コ迴セ梧ュ、譎4LR驕泌芦譛€螟ァ蛟シ井ク埼℃碁€呎凾荳玖シ臥噪郛コ鮟樊弍菴ク雁さ驥丈ク肴怎蠕亥、壹€らゥカ遶溷ヲゆス募ケウ陦。蜆ェ鮟櫁郛コ鮟橸シ悟叙豎コ莠惹ス閾ェ蟾ア)縲', 1, 6, 1);
INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES
(351, 51, 28, 'item', '髯仙宛荳雁さ騾溷コヲ', '荳雁さ騾溷コヲ蟆セ樔サ・荳句遞ョ譁ケ蠑城。ッ闡怜スア髻ソ荳玖シ蛾€溷コヲ喀r\n<ul>\r\n <li>Bittorrent逧酔莨エ蛯セ蜷台コ主屓鬣矩ぅ莠帷オヲ螳€第署荳雁さ逧酔莨エ縲る€吝ーア諢丞袖逹€螯よ棡A蜥沓豁」蝨ィ蜷梧凾荳玖シ我ク€蛟区ェ疲。茨シ瑚€窟蜿亥惠鬮倬€溷髄B蛯ウ霈ク雉碁ぅ荵怎蝌苓ゥヲ逹€蝗槫アA縲ょ屏豁、鬮倬€滉ク雁さ蟆ー手鬮倬€滉ク玖シ峨€</li>\r\n\r\n <li>逕ア莠撒CP蜊泌ョ夂噪蟾・菴懈婿蠑擾シ檎文A豁」蠕曖荳玖シ画汾莠帶擲隘ソ逧凾蛟呻シ窟蠢井ク榊●蝨ー蜷腺蛯ウ騾∵蜉滓噺蛻ーB謇€蛯ウ騾∽セ噪雉侭逧ィ願辧郁「ォ遞ア轤コ遒コ隱坂楳笏€ACK 笏€笏€ 譟千ィョ窶懷キイ謾カ蛻ー窶晉噪雉)縲ょヲよ棡A豐呈怏蛯ウ騾、CK險願辧碁ぅ荵圻蛛懷髄A蛯ウ騾∬ウ侭蟷カ荳秘€イ蜈・遲牙€咏朽諷九€ょヲよ棡A豁」蝨ィ蜈ィ騾滉ク雁さ悟セ域怏蜿ッ閭ス豐呈怏逕ィ萓さ騾、CK險願辧逧サ蟇ャ悟屏豁、ACK險願辧陲ォ閠ス謫ア縲ょ惠騾咏ィョ諠ウ∽ク具シ碁℃鬮倬€溷コヲ逧ク雁さ蟆手ス朱€溽噪荳玖シ峨€</li>\r\n</ul>\r\n蟇ヲ髫帷噪謨域棡譏ッ莉・荳雁蛟句次蝗オ仙粋縲ゆク雁さ騾溷コヲ諛芽ゥイ蝨ィ菫晁ュ陰CK閭ス豁」蟶ク蛯ウ騾∫噪蜑肴署荳玖「ォ險ュ蠕怜驥城ォ倥€ <b>荳€蛟句セ亥・ス逧ッヲ雕千炊隲匁弍菫晄戟荳雁さ騾溷コヲ蝨ィ逅ォ紋ク企剞逧80%縲</b>菴荵溷庄莉・邏ー邏ー遐皮ゥカ莉€荵域弍譛€驕ゥ蜷井ス€溷コヲ亥酔譎ゆケ溯ォ玖ィ倅ス城ォ倬€滉ク雁さ蟆堺コ惹ス莠ォ邇セ域怏霈泌勧隱ェ譏趣シ峨€<br />\r\n<br />\r\n螯よ棡菴豁」蝨ィ蝓キ陦御ク€蛟倶サ・荳顔噪遞ョ蟄仙キ・菴懶シ御ス諛芽ゥイ閠弍蜈ィ蝓滉ク雁さ騾溷コヲ縲よ汾莠帷畑謌カ遶ッ閭ス髯仙宛莠蝓滉ク雁さ騾溷コヲ莉也噪蜑蟆肴ッ丈ク€蛟狗ィョ蟄仙蛻・騾イ陦瑚ィュ螳壹€ゆコァ」菴畑謌カ遶ッ縲ょヲよ棡菴豁」蝨ィ菴ソ逕ィ菴崕閻ヲ蛛壼挨逧汾莠帶㊨逕ィ域ッ疲婿隱ェ荳顔カイ謌冶€セ曦TP諡匁擲隘ソ会シ御ケ滄怙閠荳€荳句ョ€大ー堺コ主蝓滉ク雁さ逧スア髻ソ縲', 1, 6, 2),
(352, 52, 28, 'item', '髯仙宛蜷梧凾騾」邱壽丙', '譟蝉コ帑ス懈・ュ邉サ邨ア井セ句ヲ8indows 9X牙ー堺コ主、ァ驥城€」邱壽丙謾ッ謠エ荳榊ョ悟埋檎爆閾ウ譛牙庄閭ス蝗豁、閠悟エゥ貎ー縲ゆケ滓怏荳€莠帛ョカ逕ィ霍ッ邱夲シ亥ー、蜈カ逡カ蝓キ陦檎捩NAT莉・蜿/謌冶€幕蝠滄亟轣ォ迚朽諷区ェ「譟・譛榊漁譎ゑシ画怎蝗螟ァ驥城€」邱壽丙閠瑚ョ雁セ怜セ域謌冶€エゥ貎ー縲ょー堺コ朱€」邱壽丙豐呈怏蝗コ螳夂噪譛€菴ウ蛟シ御ス蜿ッ莉・隧ヲ隧ヲ逵60謌冶€100縲りィ倅ス城€吩コ幃€」邱壽丙譏ッ邏ッ蜉シ梧園莉・螯よ棡菴畑謌カ遶ッ蝓キ陦御コ蛟矩嚴谿オ菴懈・ュ碁€吝蛟区丙蟄苓ヲ∝刈蝨ィ荳€襍キ縲', 1, 6, 3),
(353, 53, 28, 'item', '髯仙宛蜷梧凾荳雁さ謨ク', '荳雁さ謨ク髮」驕灘柱騾」邱壽丙譛我サ€荵井ク堺ク€讓」蝸趣シ滓弍逧シ悟弍荳榊酔逧€る€」邱壽丙髯仙宛莠畑謌カ遶ッ謇€閭ス蟆崎ゥア莉・蜿/謌冶€ク玖シ臥噪蜷御シエ謨ク縲ゆク雁さ謨ク蜑剞蛻カ莠畑謌カ遶ッ蟇ヲ髫幄荳雁さ逧酔莨エ謨ク縲ら炊諠ウ逧丙蛟シ荳€闊ャ隕∵ッ秘€」邱壽丙菴手ィア螟夲シ悟ケカ荳碑黄逅サ蟇ャ鬮伜コヲ逶ク髣懊€', 1, 6, 4),
(354, 54, 28, 'item', '驍」諤惹ケ郁セヲ溽ュ牙セク€譛', '螯よ蛟大惠荳企擇謇€隗」隴ッ逧シ悟惠BT荳玖シ蛾℃遞倶クュ荳€蛟句酔莨エ譖エ蜉蛯セ蜷台コ主屓蝣ア驍」莠帑ク雁さ邨ヲ螳噪蜷御シエ縲ら文菴髢句ァ倶ク€蛟区眠逧ク玖シ牙キ・菴懈凾御ス豐呈怏讙疲。育援譁キ謠宣ォ倡オヲ蜈カ莉門酔莨エ悟屏豁、莉門€鷹€壼クク譛┌隕紋ス縲る€吩スソ蠕鈴幕蟋矩嚴谿オ逧ク玖シ蛾撼蟶ク邱ゥ諷「檎罰蜈カ譏ッ逡カ菴謇€騾」邱壼芦逧酔莨エ蜿ェ譛牙セ亥ー第弍イ呈怏牙★遞ョ閠€ゆク€譌ヲ菴迯イ蠕嶺コク€莠幄逕ィ莠主逕ィ逧ェ疲。育援譁キ御ク玖シ蛾€溷コヲ譛怏謇€謾ケ隗€縲', 1, 6, 5),
(355, 55, 28, 'item', '轤コ莉€荵亥惠謌台ク玖シ臥噪譎ょ€咏€剰ヲス邯イ鬆€溷コヲ螯よュ、荵区', 'ク玖シ蛾サ蟇ャ譏ッ譛蛾剞逧€ょヲよ棡菴豁」蝨ィ荳玖シ我ク€蛟矩€溷コヲ蠕亥ソォ逧ィョ蟄撰シ悟ョ荵手け螳壼ー頃貊ソ菴ク玖シ蛾サ蟇ャ縲る€呎弍轢剰ヲス邯イ鬆。ッ辟カ蟆ア譛ョ頑縲ょセ亥、咤T逕ィ謌カ遶ッ蜈∬ィア菴髯仙宛荳玖シ蛾€溷コヲ御ス蜿ッ莉・隧ヲ隧ヲ縲<br />\r\n<br />\r\n轢剰ヲス邯イ鬆∝宵譏ッ菴懃ぜ闊我セ倶ケ倶ク€悟酔讓」逧撫鬘御ケ滓怎蜃コ迴セ蝨ィ貂ク謌イ悟叉譎る€夊ィ願サ滄ォ比ク......', 1, 6, 6),
(356, 56, 28, 'item', '莉€荵域弍莉」逅', '蝓コ譛ャ荳願ェェ御サ」逅ーア譏ッ荳ュ髢謎ココ縲ら文菴騾夐℃莉」逅ュ伜叙譟仙€狗カイ遶咏噪譎ょ€呻シ御スヲ∵アょーヲ門陲ォ蛯ウ騾∝芦莉」逅檎┯蜷守罰莉」逅ス牙ッ芦菴謇€隕∵アら噪邯イ遶呻シ瑚€御ク肴弍菴逶エ謗・騾」騾壼芦邯イ遶吶€ゆク矩擇譏ッ蜃遞ョ蜈ク蝙狗噪莉」逅鬘橸シ域悵隱樔ク肴弍驍」荵育噪隕乗会シ<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n <tr>\r\n <td class="embedded" valign="top" width="100">&nbsp;騾城€壻サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">騾城€壻サ」逅惠逕ィ謌カ遶ッ辟。髴€驟咲スョ縲ゆサ門ー蜍墓滑80騾夊ィ雁泛逧ィ企㍾蟆主芦莉」逅(譛画凾蛟吩ケ滉ス懃ぜ髱槫諺蜷堺サ」逅噪蜷檎セゥ隧)</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;鬘ッ蠑丈サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">轢剰ヲス蝎ィ蠢育カ馴℃驟咲スョ謇崎菴ソ逕ィ莉」逅</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;蛹ソ蜷堺サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">莉」逅ク肴怎謚顔畑謌カ險倩辧蛯ウ騾∬莨コ譛榊勣遶ッ (HTTP_X_FORWARDED_FOR鬆ュ譌玲ィ吝ーク崎「ォ蛯ウ騾√€ゆシコ譛榊勣荵溷屏豁、逵倶ク榊芦菴逧ИP)</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;鬮伜コヲ蛹ソ蜷堺サ」逅</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">莉」逅ク肴怎謚顔畑謌カ險倩辧謌紋サ」逅ィ倩辧蛯ウ騾∬莨コ譛榊勣遶ッ (HTTP_X_FORWARDED_FOR蜥粂TTP_VIA and HTTP_PROXY_CONNECTION鬆ュ譌玲ィ吝ーク崎「ォ蛯ウ騾√€ゆシコ譛榊勣逵倶ク榊芦菴逧ИP檎爆閾ウ荳咲衍驕謎ス豁」蝨ィ菴ソ逕ィ莉」逅)</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" valign="top">&nbsp;蜈ャ逕ィ</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">(荳崎ィ€閾ェ譏惹コ)縲</td>\r\n </tr>\r\n</table>\r\n<br />\r\n騾城€壻サ」逅庄閭ス譏ッ蛹ソ蜷咲噪御ケ溷庄閭ス譏ッ髱槫諺蜷咲噪御ク泌諺蜷堺ケ滓怏逶ク諛臥噪遲臥エ壹€', 1, 7, 1),
(357, 57, 28, 'item', '謌題ゥイ諤取ィ」逋シ迴セ閾ェ蟾ア豁」陌穂コ惹ク€蛟具シ磯€城€夂噪/蛹ソ蜷咲噪我サ」逅錘髱「', '隧ヲ隧ヲ逵<a href="http://proxyjudge.org" class="faqlink">ProxyJudge</a>縲ょョ蜃コ莠シコ譛榊勣遶ッ蠕樔ス騾呵」。謇€謾カ蛻ー逧ЗTTP逧ュ譌玲ィ吶€ら嶌髣懃噪蜃蛟区覧讓呎弍HTTP_CLIENT_IP粂TTP_X_FORWARDED_FOR蜥軍EMOTE_ADDR縲', 1, 7, 2),
(375, 75, 28, 'item', '謌醍噪窶懷庄騾」邱壺€晄弍窶懷凄窶晏邂。謌大ケカ豐呈怏NAT謌冶€亟轣ォ迚', 'Tracker莨コ譛榊勣蝨ィ謳懷ー倶ス悄蟇ヲIP譁ケ髱「髱槫クク譛牙、ゥ雉ヲ縲ゆス弍騾咎怙隕∽サ」逅ォョ騾?TTP鬆ュ譌玲ィ僣TTP_X_FORWARDED_FOR縲ょヲよ棡菴逧ИSP逧サ」逅イ呈怏騾吩ケ亥★逧ゥア卦racker莨コ譛榊勣蟆滑莉」逅噪IP逡カ菴應ス畑謌カ遶ッ逧ИP縲よ園莉・逡カ菴逋サ蜈・荵句錘卦racker莨コ譛榊勣蝌苓ゥヲ騾」邱壻ス畑謌カ遶ッ萓「コ菫。菴豐呈怏菴ソ逕ィNAT/髦イ轣ォ迚シ御シコ譛榊勣蟇ヲ髫帑ク雁ー隧ヲ騾」邱壻サ」逅噪IP井スソ逕ィ菴逧ВT逕ィ謌カ遶ッ蝣ア蜻顔噪謗・謾カ騾」邱夐€夊ィ雁泛峨€ょセ郁辟カ蝨ー御サ」逅シコ譛榊勣蟷カ豐呈怏逶」閨ス驍」蛟矩€夊ィ雁泛縲ょヲよュ、騾」邱壽怎螟ア謨暦シ瑚€卦racker莨コ譛榊勣荵溷屏豁、隱咲ぜ菴菴ソ逕ィ莠AT/髦イ轣ォ迚€', 1, 7, 3),
(401, 1, 6, 'categ', 'Site information', '', 1, 0, 1),
(402, 2, 6, 'categ', 'User information', '', 1, 0, 2),
(403, 3, 6, 'categ', 'Stats', '', 1, 0, 3),
(404, 4, 6, 'categ', 'Uploading', '', 1, 0, 4),
(405, 5, 6, 'categ', 'Downloading', '', 1, 0, 5),
(406, 6, 6, 'categ', 'How can I improve my download speed?', '', 1, 0, 6),
(407, 7, 6, 'categ', 'My ISP uses a transparent proxy. What should I do?', '', 1, 0, 7),
(408, 8, 6, 'categ', 'Why can''t I connect? Is the site blocking me?', '', 1, 0, 8),
(409, 9, 6, 'categ', 'What if I can''t find the answer to my problem here?', '', 1, 0, 9),
(410, 10, 6, 'item', 'What is this bittorrent all about anyway? How do I get the files?', 'Check out <a class="faqlink" href="http://www.btfaq.com/">Brian''s BitTorrent FAQ and Guide</a>.', 1, 1, 1),
(411, 11, 6, 'item', 'Where does the donated money go?', 'All donated money goes to the cost of server that this tracker is on.', 1, 1, 2),
(412, 12, 6, 'item', 'Where can I get a copy of the source code?', 'This tracker is powered by NexusPHP. If you like to use NexusPHP to power your tracker, <a class="faqlink" href="aboutnexus.php">Contact Us</a>.<br />\r\nThe first stage of NexusPHP forks from TBSource. You may find more information about TBSource at <a class="faqlink" href="http://www.tbdev.net/">TBDev.net</a>.', 1, 1, 3),
(413, 13, 6, 'item', 'I registered an account but did not receive the confirmation e-mail!', 'One possible reason may be that the network around the tracker has encountered some problems. You can use <a href="confirm_resend.php" class="faqlink">this form</a> ask the tracker to resend confirmation e-mail.<br />\r\nTypically registered users would be deleted after 24 hours if not confirmed, so you may try again the next day. Note though that if you didn''t receive the email the first time it will probably not succeed the second time either so you should really try another email address.', 1, 2, 1),
(414, 14, 6, 'item', 'I''ve lost my user name or password! Can you send it to me?', 'Please use <a class="faqlink" href="recover.php">this form</a> to have the login details mailed back to you.', 1, 2, 2),
(415, 15, 6, 'item', 'Can you rename my account? ', 'No, we do not rename accounts. Don''t ask for it.', 1, 2, 3),
(416, 16, 6, 'item', 'Can you delete my (confirmed) account?', 'No, we don''t delete accounts. Don''t ask for it.', 1, 2, 4),
(417, 17, 6, 'item', 'So, what''s MY ratio?', 'It''s on the left-top of pages.<br />\r\n<br />\r\n<img src="pic/ratio.png" alt="ratio" />\r\n<br />\r\n<br />\r\nIt''s important to distinguish between your overall ratio and the individual ratio on each torrent you may be seeding or leeching. The overall ratio takes into account the total uploaded and downloaded from your account since you joined the site. The individual ratio takes into account those values for each torrent.\r\n<br />\r\n<br />\r\nYou may see two symbols instead of a number: "Inf.", which is just an abbreviation for Infinity, and means that you have downloaded 0 bytes while uploading a non-zero amount (ul/dl becomes infinity); "---", which should be read as "non-available", and shows up when you have both downloaded and uploaded 0 bytes (ul/dl = 0/0 which is an indeterminate amount).\r\n', 1, 2, 5),
(418, 18, 6, 'item', 'Why is my IP displayed on my details page?', 'Only you and the site moderators can view your IP address and email. Regular users do not see that information.', 1, 2, 6),
(421, 21, 6, 'item', 'Why am I listed as not connectable? (And why should I care?)', 'The tracker has determined that you are firewalled or NATed and cannot accept incoming connections. \r\n<br />\r\n<br />\r\nThis means that other peers in the swarm will be unable to connect to you, only you to them. Even worse, if two peers are both in this state they will not be able to connect at all. This has obviously a detrimental effect on the overall speed. \r\n<br />\r\n<br />\r\nThe way to solve the problem involves opening the ports used for incoming connections (the same range you defined in your client) on the firewall and/or configuring your NAT server to use a basic form of NAT for that range instead of NAPT (the actual process differs widely between different router models. Check your router documentation and/or support forum. You will also find lots of information on the subject at <a class="faqlink" href="http://portforward.com/">PortForward</a>).\r\n\r\n\r\n\r\n\r\n\r\n', 1, 2, 9),
(422, 22, 6, 'item', 'What are the different user classes?', '<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n<td class="embedded" width="200" valign="top">&nbsp; <b class="Peasant_Name">Peasant</b></td>\r\n<td class="embedded" width="5">&nbsp;</td>\r\n<td class="embedded"> Demoted users. They must improve their ratio within 30 days or they will be banned. Cannot post funbox item, apply for links or upload subtitles.\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="User_Name">User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">The default class of new members. may upload torrents between 12:00, Saturday and 23:59 Sunday of every week.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="PowerUser_Name">Power User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Get a invitation. Can upload torrents, view NFO files, view user list, ask for reseed, send invitation, access Power User and External Trackers forums, view Top 10, view other users'' torrent history (if user''s privacy level is not set ''strong''), delete subtitle uploaded by oneself.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="EliteUser_Name">Elite User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded"><b class="EliteUser_Name">Elite User</b> or above would never be deleted if parked.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="CrazyUser_Name">Crazy User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Get two invitations. Can be anonymous when seeding/leeching/uploading. </td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="InsaneUser_Name">Insane User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Can view general logs.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VeteranUser_Name">Veteran User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Get three invitations. Can view other users'' history of comments and forum posts. <b class="VeteranUser_Name">Veteran User</b> or above would never be deleted whether parked or not.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="ExtremeUser_Name">Extreme User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Can update outdated external information and access Extreme User forum.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="UltimateUser_Name">Ultimate User</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Get 5 invitations.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="NexusMaster_Name">Nexus Master</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Get 10 invitations.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <img class="star" src="pic/trans.gif" alt="Star" /></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Has donated money to this tracker.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="VIP_Name">VIP</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded" valign="top">Same privileges as <b class="NexusMaster_Name">Nexus Master</b> and is considered an Elite Member of this tracker. Immune to automatic demotion.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="Retiree_Name">Retiree</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Former staff members.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="User_Name">Other</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Customized title. </td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="Uploader_Name">Uploader</b></td>\r\n<td class="embedded">&nbsp;</td>\r\n<td class="embedded">Dedicated uploader, immune to automatic demotion. Can view who anonymous ones are.</td>\r\n</tr>\r\n<tr>\r\n<td class="embedded" valign="top">&nbsp; <b class="M
(423, 23, 6, 'item', 'How does this promotion thing work anyway?', '<table cellspacing=\\\\\\\\\\\\\\"3\\\\\\\\\\\\\\" cellpadding=\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\">\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" width=\\\\\\\\\\\\\\"200\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">&nbsp; <b class=\\\\\\\\\\\\\\"Peasant_Name\\\\\\\\\\\\\\">Peasant</b></td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" width=\\\\\\\\\\\\\\"5\\\\\\\\\\\\\\">&nbsp;</td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">User would be demoted to this class under any of the following circumstances:<br />\r\n1.Downloaded more than 50 GB and with ratio below 0.4<br />\r\n2.Downloaded more than 100 GB and with ratio below 0.5<br />\r\n3.Downloaded more than 200 GB and with ratio below 0.6<br />\r\n4.Downloaded more than 400 GB and with ratio below 0.7<br />\r\n5.Downloaded more than 800 GB and with ratio below 0.8</td>\r\n</tr>\r\n\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">&nbsp; <b class=\\\\\\\\\\\\\\"PowerUser_Name\\\\\\\\\\\\\\">Power User</b></td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\">&nbsp;</td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">Must have been a member for at least 4 weeks, have downloaded at least 50GB and have a ratio at or above 1.05. The promotion is automatic when these conditions are met. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 0.95 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">&nbsp; <b class=\\\\\\\\\\\\\\"EliteUser_Name\\\\\\\\\\\\\\">Elite User</b></td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\">&nbsp;</td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">Must have been a member for at least 8 weeks, have downloaded at least 120GB and have a ratio at or above 1.55. The promotion is automatic when these conditions are met. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 1.45 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">&nbsp; <b class=\\\\\\\\\\\\\\"CrazyUser_Name\\\\\\\\\\\\\\">Crazy User</b></td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\">&nbsp;</td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">Must have been a member for at least 15 weeks, have downloaded at least 300GB and have a ratio at or above 2.05. The promotion is automatic when these conditions are met. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 1.95 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">&nbsp; <b class=\\\\\\\\\\\\\\"InsaneUser_Name\\\\\\\\\\\\\\">Insane User</b></td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\">&nbsp;</td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">Must have been a member for at least 25 weeks, have downloaded at least 500GB and have a ratio at or above 2.55. The promotion is automatic when these conditions are met. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 2.45 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">&nbsp; <b class=\\\\\\\\\\\\\\"VeteranUser_Name\\\\\\\\\\\\\\">Veteran User</b></td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\">&nbsp;</td>\r\n<td class=\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\">Must have been a member for at least 40 weeks, have downloaded at least 750GB and have a ratio at or above 3.05. The promotion is automatic when these conditions are met. <br />\r\nNote that you will be au
(425, 25, 6, 'item', 'Why can''t my friend become a member?', 'There is a users limit (it is list at Home -&gt; Tracker Statistics -&gt; Limit). When that number is reached we stop accepting new members. Accounts inactive (i.e. not logged in for a long time) are automatically deleted, so keep trying.<br />\r\nWhen are inactive user accounts deleted? See <a class="faqlink" href="rules.php">Rules</a>', 1, 2, 13),
(426, 26, 6, 'item', 'How do I add an avatar to my profile?', 'First, find an image that you like, and that is within the <a class="faqlink" href="rules.php">rules</a>. Then you will have to find a place to host it, such as our own <a class="faqlink" href="bitbucket-upload.php">BitBucket</a>. To lighten tracker''s load, we recommend you upload it to other websites and copy the URL you were given when uploading it to the Avatar URL field in <a class="faqlink" href="usercp.php?action=personal">UserCP</a>.<br />\r\n<br />\r\nPlease do not make a post just to test your avatar. If everything is all right you''ll see it in your details page. ', 1, 2, 14),
(427, 27, 6, 'item', 'Most common reason for stats not updating', '<ul>\r\n<li>The server is overloaded and unresponsive. Just try to keep the session open until the server responds again. (Flooding the server with consecutive manual updates is not recommended.)</li>\r\n<li>You are using a faulty client. If you want to use an experimental or CVS version you do it at your own risk.</li>\r\n</ul>', 1, 3, 1),
(428, 28, 6, 'item', 'Best practices', '<ul>\r\n<li>If a torrent you are currently leeching/seeding is not listed on your detail page, just wait or force a manual update.</li>\r\n<li>Make sure you exit your client properly, so that the tracker receives "event=completed".</li>\r\n<li>If the tracker is down, do not stop seeding. As long as the tracker is back up before you exit the client the stats should update properly.</li>\r\n</ul>', 1, 3, 2),
(429, 29, 6, 'item', 'May I use any bittorrent client?', 'No. According to tests of common bittorrent clients by <a class="faqlink" href="aboutnexus.php">NexusPHP</a>, we allowed <b>only</b> the following bittorrent clients.<br />\r\nThe test report by <a class="faqlink" href="aboutnexus.php">NexusPHP</a> is <a class="faqlink" href="http://www.nexusphp.com/wiki/%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%B5%8B%E8%AF%95%E6%8A%A5%E5%91%8A">here</a>. \r\n<br />\r\n<b>Windows:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2 and later versions</li>\r\n<li><a class="faqlink" href="http://www.utorrent.com">uTorrent</a>: 1.6.1, 1.7.5, 1.7.6, 1.7.7, 1.8Beta(Build 10364), 2.0(Build 17624) and later versions</li>\r\n<li><a class="faqlink" href="http://www.bittorrent.com">BitTorrent</a>: 6.0.1, 6.0.2, 6.0.3 and later versions</li>\r\n<li><a class="faqlink" href="http://deluge-torrent.org">Deluge</a>: 0.5.9.1, 1.1.6 and later versions</li>\r\n<li><a class="faqlink" href="http://rufus.sourceforge.net">Rufus</a>: 0.6.9, 0.7.0 and later versions</li>\r\n</ul>\r\n<b>Linux:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2 and later versions</li>\r\n<li><a class="faqlink" href="http://deluge-torrent.org">Deluge</a>: 0.5.9.1, 1.1.6 and later versions</li>\r\n<li><a class="faqlink" href="http://rufus.sourceforge.net">Rufus</a>: 0.6.9, 0.7.0 and later versions</li>\r\n<li><a class="faqlink" href="http://www.transmissionbt.com">Transmission</a>: 1.21 and later versions</li>\r\n<li><a class="faqlink" href="http://libtorrent.rakshasa.no">rTorrent</a>: 0.8.0(with libtorrent 0.12.0 or later) and later versions</li>\r\n<li><a class="faqlink" href="http://www.rahul.net/dholmes/ctorrent/">Enhanced CTorrent</a>: 3.3.2 and later versions</li>\r\n</ul>\r\n<b>MacOS X:</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://azureus.sourceforge.net">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2 and later versions</li>\r\n<li><a class="faqlink" href="http://www.transmissionbt.com">Transmission</a>: 1.21 and later versions</li>\r\n<li><a class="faqlink" href="http://sourceforge.net/projects/bitrocket/">BitRocket</a>: 0.3.3(32) and later versions</li>\r\n</ul>\r\n<b>Symbian (For Testing Only):</b>\r\n<ul>\r\n<li><a class="faqlink" href="http://amorg.aut.bme.hu/projects/symtorrent">SymTorrent</a>: 1.41 and later versions</li>\r\n</ul>\r\n<br />\r\n\r\n<b>Support for https:</b>\r\n<ul>\r\n<li>uTorrent 1.61: cannot parse tracker https url, and marks itself as uTorrent 1.5</li>\r\n<li>Rufus: no support for https, and development ceased for years.</li>\r\n<li>rtorrent: needs to add SSL certification manually, see User Guide at its official site.</li>\r\n</ul>\r\n\r\n<br />\r\n\r\nPlease do not use any beta or testing version of bittorrent clients, e.g. uTorrent 1.8.0B. To get the best downloading experience, we highly recommend latest stable version of <a class="faqlink" href="http://www.utorrent.com/download.php">uTorrent</a> and <a class="faqlink" href="http://azureus.sourceforge.net/download.php">Azureus</a>.', 1, 5, 3),
(430, 30, 6, 'item', 'Why is a torrent I''m leeching/seeding listed several times in my profile?', 'If for some reason (e.g. PC crash, or frozen client) your client exits improperly and you restart it, it will have a new peer_id, so it will show as a new torrent. The old one will never receive a "event=completed" or "event=stopped" and will be listed until some tracker timeout. Just ignore it, it will eventually go away.', 1, 3, 4),
(431, 31, 6, 'item', 'I''ve finished or cancelled a torrent. Why is it still listed in my profile?', 'Some clients, notably TorrentStorm and Nova Torrent, do not report properly to the tracker when canceling or finishing a torrent. In that case the tracker will keep waiting for some message - and thus listing the torrent as seeding or leeching - until some timeout occurs. Just ignore it, it will eventually go away.', 1, 3, 5),
(433, 33, 6, 'item', 'Multiple IPs (Can I login from different computers?)', 'Yes, the tracker is capable of following sessions from different IPs for the same user. You may access the site and seed/leech simultaneously from as many computers as you want with the same account.<br />\r\nHowever, there is a limit for a single torrent. Per torrent 3 simultaneous connections are permitted per user, and in case of leeching only 1, which means you can leech a torrent from one location only at a time.', 1, 3, 7),
(436, 36, 6, 'item', 'Why can''t I upload torrents?', 'See <a class="faqlink" href="rules.php">Rules</a>.', 1, 4, 1),
(437, 37, 6, 'item', 'What criteria must I meet before I can join the Uploader team?', 'You must:\r\n<ul>\r\n<li>have steady access to resources.</li>\r\n<li>upload not less than 5 torrents per week.</li>\r\n</ul>\r\nYou must be able to provide releases that:\r\n<ul>\r\n<li>are not older than 7 days</li>\r\n<li>you''ll be able to seed, or make sure are well-seeded, for at least 24 hours.</li>\r\n<li>Also, you should have at least 2MBit upload bandwith.</li>\r\n</ul>\r\nIf you think you can match these criteria do not hesitate to <a class="faqlink" href="contactstaff.php">contact the staff</a>.<br />\r\n<b>Remember!</b> Write your application carefully! Be sure to include your upload speed and what kind of stuff you''re planning to upload.<br />\r\nOnly well written letters with serious intent will be considered.', 1, 4, 2),
(438, 38, 6, 'item', 'Can I upload your torrents to other trackers?', 'No. We are a closed, limited-membership community. Only registered users can use the tracker. Posting our torrents on other trackers is useless, since most people who attempt to download them will be unable to connect with us. This generates a lot of frustration and bad-will against us, and will therefore not be tolerated.<br />\r\n<br />\r\nComplaints from other sites'' administrative staff about our torrents being posted on their sites will result in the banning of the users responsible.\r\n<br />\r\n<br />\r\nHowever, the files you download from us are yours to do as you please (except those marked as <b>EXCLUSIVE</b> by the uploader). You can always create another torrent, pointing to some other tracker, and upload it to the site of your choice.', 1, 4, 3),
(439, 39, 6, 'item', 'How do I use the files I''ve downloaded?', 'Check out <a class="faqlink" href="formats.php">this guide</a>.', 1, 5, 1),
(440, 40, 6, 'item', 'Downloaded a movie and don''t know what CAM/TS/TC/SCR means?', 'Check out <a class="faqlink" href="videoformats.php">this guide</a>.', 1, 5, 2),
(441, 41, 6, 'item', 'Why did an active torrent suddenly disappear?', 'There may be three reasons for this:<br />\r\n(<b>1</b>) The torrent may have been against the site <a class="faqlink" href="rules.php">rules</a>.\r\n<br />\r\n(<b>2</b>) The uploader may have deleted it because it was a bad release. A replacement will probably be uploaded to take its place.<br />\r\n(<b>3</b>) Torrents are automatically deleted after being dead for a long time.', 1, 5, 3),
(442, 42, 6, 'item', 'How do I resume a broken download or reseed something?', 'Open the .torrent file. When your client asks you for a location, choose the location of the existing file(s) and it will resume/reseed the torrent.', 1, 5, 4),
(443, 43, 6, 'item', 'Why do my downloads sometimes stall at 99%?', 'The more pieces you have, the harder it becomes to find peers who have pieces you are missing. That is why downloads sometimes slow down or even stall when there are just a few percent remaining. Just be patient and you will, sooner or later, get the remaining pieces.', 1, 5, 5),
(444, 44, 6, 'item', 'What are these "a piece has failed a hash check" messages? ', 'Bittorrent clients check the data they receive for integrity. When a piece fails this check it is automatically re-downloaded. Occasional hash fails are a common occurrence, and you shouldn''t worry.<br />\r\n<br />\r\nSome clients have an (advanced) option/preference to ''kick/ban clients that send you bad data'' or similar. It should be turned on, since it makes sure that if a peer repeatedly sends you pieces that fail the hash check it will be ignored in the future.', 1, 5, 6),
(445, 45, 6, 'item', 'The torrent is supposed to be 100MB. How come I downloaded 120MB? ', 'See the hash fails topic. If your client receives bad data it will have to re-download it, therefore the total downloaded may be larger than the torrent size. Make sure the "kick/ban" option is turned on to minimize the extra downloads.', 1, 5, 7),
(446, 46, 6, 'item', 'Why do I get a "Your ratio is too low! You need to wait xx h to start" error?', 'From the time that each <b>new</b> torrent is uploaded to the tracker, there is a period of time that some users must wait before they can download it.<br />\r\nThis delay in downloading will only affect users with a low ratio and downloaded amount above 10 GB.<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.4</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">delay of</td>\r\n <td class="embedded" width="100">24h</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.5</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">delay of</td>\r\n <td class="embedded" width="100">12h</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.6</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">delay of</td>\r\n <td class="embedded" width="100">6h</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.8</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">delay of</td>\r\n <td class="embedded" width="100">3h</td>\r\n</tr>\r\n</table>', 0, 5, 8),
(447, 47, 6, 'item', 'Why do I get a "Port xxxx is blacklisted" error?', 'Your client is reporting to the tracker that it uses one of the default bittorrent ports (6881-6889) or any other common p2p port for incoming connections.<br />\r\n<br />\r\nWe does not allow clients to use ports commonly associated with p2p protocols. The reason for this is that it is a common practice for ISPs to throttle those ports (that is, limit the bandwidth, hence the speed). <br />\r\n<br />\r\nThe blocked ports list include the following:<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n <tr>\r\n <td class="embedded" width="100">Direct Connect</td>\r\n <td class="embedded" width="100">411 - 413</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">BitTorrent</td>\r\n <td class="embedded" width="100">6881 - 6889</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Kazza</td>\r\n <td class="embedded" width="100">1214</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Gnutella</td>\r\n <td class="embedded" width="100">6346 - 6347</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">Emule</td>\r\n <td class="embedded" width="100">4662</td>\r\n </tr>\r\n <tr>\r\n <td class="embedded" width="100">WinMX</td>\r\n <td class="embedded" width="100">6699</td>\r\n </tr>\r\n</table>\r\n<br />\r\nIn order to use our tracker you must configure your client to use any port range that does not contain those ports (a range within the region 49152 through 65535 is preferable,\r\ncf. <a class="faqlink" href="http://www.iana.org/assignments/port-numbers">IANA</a>). Notice that some clients, like Azureus 2.0.7.0 or higher, use a single port for all torrents, while most others use one port per open torrent. The size of the range you choose should take this into account (typically less than 10 ports wide. There is no benefit whatsoever in choosing a wide range, and there are possible security implications). <br />\r\n<br />\r\nThese ports are used for connections between peers, not client to tracker. Therefore this change will not interfere with your ability to use other trackers (in fact it should <i>increase</i> your speed with torrents from any tracker, not just ours). Your client will also still be able to connect to peers that are using the standard ports. If your client does not allow custom ports to be used, you will have to switch to one that does.<br />\r\n<br />\r\nDo not ask us, or in the forums, which ports you should choose. The more random the choice is the harder it will be for ISPs to catch on to us and start limiting speeds on the ports we use. If we simply define another range ISPs will start throttling that range also. <br />\r\n<br />\r\nFinally, remember to forward the chosen ports in your router and/or open them in your\r\nfirewall, should you have them.', 1, 5, 9),
(448, 48, 6, 'item', 'What''s this "IOError - [Errno13] Permission denied" error?', 'If you just want to fix it reboot your computer, it should solve the problem. Otherwise read on.<br />\r\nIOError means Input-Output Error, and that is a file system error, not a tracker one. It shows up when your client is for some reason unable to open the partially downloaded torrent files. The most common cause is two instances of the client to be running simultaneously: the last time the client was closed it somehow didn''t really close but kept running in the background, and is therefore still locking the files, making it impossible for the new instance to open them.<br />\r\nA more uncommon occurrence is a corrupted FAT. A crash may result in corruption that makes the partially downloaded files unreadable, and the error ensues. Running scandisk should solve the problem. (Note that this may happen only if you''re running Windows 9x - which only support FAT - or NT/2000/XP with FAT formatted hard drives. NTFS is much more robust and should never permit this problem.)\r\n', 1, 5, 10),
(450, 50, 6, 'item', 'Do not immediately jump on new torrents', 'The download speed mostly depends on the seeder-to-leecher ratio (SLR). Poor download speed is mainly a problem with new and very popular torrents where the SLR is low.<br />\r\n(Note: make sure you remember that you did not enjoy the low speed. Seed so that others will not endure the same.)<br />\r\n<br />In particular, do not do it if you have a slow connection. The best speeds will be found around the half-life of a torrent, when the SLR will be at its highest. (The downside is that you will not be able to seed so much. It''s up to you to balance the pros and cons of this.)', 1, 6, 1),
(451, 51, 6, 'item', 'Limit your upload speed', 'The upload speed affects the download speed in essentially two ways:\r\n<ul>\r\n <li>Bittorrent peers tend to favour those other peers that upload to them. This means that if A and B are leeching the same torrent and A is sending data to B at high speed then B will try to reciprocate. So due to this effect high upload speeds lead to high download speeds.</li>\r\n\r\n <li>Due to the way TCP works, when A is downloading something from B it has to keep telling B that it received the data sent to him. (These are called acknowledgements - ACKs -, a sort of "got it!" messages). If A fails to do this then B will stop sending data and wait. If A is uploading at full speed there may be no bandwidth left for the ACKs and they will be delayed. So due to this effect excessively high upload speeds lead to low download speeds.</li>\r\n</ul>\r\n\r\nThe full effect is a combination of the two. The upload should be kept as high as possible while allowing the ACKs to get through without delay. <b>A good thumb rule is keeping the upload at about 80% of the theoretical upload speed. </b>You will have to fine tune yours to find out what works best for you. (Remember that keeping the upload high has the additional benefit of helping with your ratio.) <br />\r\n<br />\r\nIf you are running more than one instance of a client it is the overall upload speed that you must take into account. Some clients limit global upload speed, others do it on a per torrent basis. Know your client. The same applies if you are using your connection for anything else (e.g. browsing or ftp), always think of the overall upload speed.', 1, 6, 2),
(452, 52, 6, 'item', 'Limit the number of simultaneous connections', 'Some operating systems (like Windows 9x) do not deal well with a large number of connections, and may even crash. Also some home routers (particularly when running NAT and/or firewall with stateful inspection services) tend to become slow or crash when having to deal with too many connections. There are no fixed values for this, you may try 60 or 100 and experiment with the value. Note that these numbers are additive, if you have two instances of a client running the numbers add up.', 1, 6, 3),
(453, 53, 6, 'item', 'Limit the number of simultaneous uploads', 'Isn''t this the same as above? No. Connections limit the number of peers your client is talking to and/or downloading from. Uploads limit the number of peers your client is actually uploading to. The ideal number is typically much lower than the number of connections, and highly dependent on your (physical) connection.', 1, 6, 4),
(454, 54, 6, 'item', 'Just give it some time', 'As explained above peers favour other peers that upload to them. When you start leeching a new torrent you have nothing to offer to other peers and they will tend to ignore you. This makes the starts slow, in particular if, by chance, the peers you are connected to include few or no seeders. The download speed should increase as soon as you have some pieces to share.', 1, 6, 5),
(455, 55, 6, 'item', 'Why is my browsing so slow while leeching?', 'Your download speed is always finite. If you are a peer in a fast torrent it will almost certainly saturate your download bandwidth, and your browsing will suffer. Many clients allows you to limit the download speed and try it.<br />\r\n<br />\r\nBrowsing was used just as an example, the same would apply to gaming, IMing, etc...', 1, 6, 6),
(456, 56, 6, 'item', 'What is a proxy?', 'Basically a middleman. When you are browsing a site through a proxy your requests are sent to the proxy and the proxy forwards them to the site instead of you connecting directly to the site. There are several classifications (the terminology is far from standard):<br />\r\n<br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" valign="top" width="100">&nbsp;Transparent</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">A transparent proxy is one that needs no configuration on the clients. It works by automatically redirecting all port 80 traffic to the proxy. (Sometimes used as synonymous for non-anonymous.)</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" valign="top">&nbsp;Explicit/Voluntary</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">Clients must configure their browsers to use them.</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" valign="top">&nbsp;Anonymous</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">The proxy sends no client identification to the server. (HTTP_X_FORWARDED_FOR header is not sent; the server does not see your IP.)</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" valign="top">&nbsp;Highly Anonymous</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">The proxy sends no client nor proxy identification to the server. (HTTP_X_FORWARDED_FOR, HTTP_VIA and HTTP_PROXY_CONNECTION headers are not sent; the server doesn''t see your IP and doesn''t even know you''re using a proxy.)</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" valign="top">&nbsp;Public</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" valign="top">(Self explanatory)</td>\r\n</tr>\r\n</table>\r\n<br />\r\nA transparent proxy may or may not be anonymous, and there are several levels of anonymity.', 1, 7, 1),
(457, 57, 6, 'item', 'How do I find out if I''m behind a (transparent/anonymous) proxy?', 'Try <a href="http://proxyjudge.org" class="faqlink">ProxyJudge</a>. It lists the HTTP headers that the server where it is running received from you. The relevant ones are HTTP_CLIENT_IP, HTTP_X_FORWARDED_FOR and REMOTE_ADDR.', 1, 7, 2),
(475, 75, 6, 'item', 'Why am I listed as not connectable even though I''m not NAT/Firewalled?', 'The tracker is quite smart at finding your real IP, but it does need the proxy to send the HTTP header HTTP_X_FORWARDED_FOR. If your ISP''s proxy does not then what happens is that the tracker will interpret the proxy''s IP address as the client''s IP address. So when you login and the tracker tries to connect to your client to see if you are NAT/firewalled it will actually try to connect to the proxy on the port your client reports to be using for incoming connections. Naturally the proxy will not be listening on that port, the connection will fail and the tracker will think you are NAT/firewalled.', 1, 7, 3),
(462, 62, 6, 'item', 'Maybe my address is blacklisted?', 'The site keeps a list of blocked IP addresses for banned users or attackers. This works at Apache/PHP level, and only blocks <i>logins</i> from those addresses. It should not stop you from reaching the site. In particular it does not block lower level protocols, you should be able to ping/traceroute the server even if your address is blacklisted. If you cannot then the reason for the problem lies elsewhere.<br />\r\n<br />\r\nIf somehow your address is blocked by mistake, contact us about it.', 1, 8, 1),
(463, 63, 6, 'item', 'Your ISP blocks the site''s address', '(In first place, it''s unlikely your ISP is doing so. DNS name resolution and/or network problems are the usual culprits.) \r\n<br />\r\nThere''s nothing we can do. You should contact your ISP (or get a new one). Note that you can still visit the site via a proxy, follow the instructions in the relevant section. In this case it doesn''t matter if the proxy is anonymous or not, or which port it listens to.<br />\r\n<br />\r\nNotice that you will always be listed as an "unconnectable" client because the tracker will be unable to check that you''re capable of accepting incoming connections.', 1, 8, 2);
INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES
(465, 65, 6, 'item', 'You may try this', 'Post in the <a class="faqlink" href="forums.php">Forums</a>, by all means. You''ll find they are usually a friendly and helpful place, provided you follow a few basic guidelines: <ul>\r\n<li>Make sure your problem is not really in this FAQ. There''s no point in posting just to be sent back here. </li>\r\n<li>Before posting read the sticky topics (the ones at the top). Many times new information that still hasn''t been incorporated in the FAQ can be found there.</li>\r\n<li>Help us in helping you. Do not just say "it doesn''t work!". Provide details so that we don''t have to guess or waste time asking. What client do you use? What''s your OS? What''s your network setup? What''s the exact error message you get, if any? What are the torrents you are having problems with? The more you tell the easiest it will be for us, and the more probable your post will get a reply.</li>\r\n<li>And needless to say: be polite. Demanding help rarely works, asking for it usually does the trick.</li></ul>', 1, 9, 1),
(466, 66, 6, 'item', 'Why do I get a "Your slot limit is reached! You may at most download xx torrents at the same time" error?', 'This is part of the "Slot System". The slot system is being used to limit the concurrent downloads for users that have low ratio and downloaded amount above 10 GB<br /><br />\r\nRules: <br />\r\n<table cellspacing="3" cellpadding="0">\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.5</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">available slots</td>\r\n <td class="embedded" width="40">1</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.65</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">available slots</td>\r\n <td class="embedded" width="100">2</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.8</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">available slots</td>\r\n <td class="embedded" width="100">3</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio below</td>\r\n <td class="embedded" width="40">0.95</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">available slots</td>\r\n <td class="embedded" width="100">4</td>\r\n</tr>\r\n<tr>\r\n <td class="embedded" width="100">Ratio above</td>\r\n <td class="embedded" width="40">0.95</td>\r\n <td class="embedded" width="10">&nbsp;</td>\r\n <td class="embedded" width="100">available slots</td>\r\n <td class="embedded" width="100">unlimited</td>\r\n</tr>\r\n</table>\r\n<br />\r\nIn all cases the seeding slots are unlimited. However if you have already filled all your available download slots and try to start seeding you will receive the same error. In this case you must free at least one download slot in order to start all your seeds and then start the download. If all your download slots are filled the system will deny any connection before validating if you want to download or seed. So first start your seeds and after that your downloads. <br />\r\n<br /><br />\r\nAny time, you can check your available slots in the member bar on top of the page.', 0, 5, 12),
(467, 67, 6, 'item', 'What is the passkey System? How does it work?', 'The passkey system is implemented to verify if you are registered with the tracker. Every user has a personal passkey, a random key generated by the system. When a user tries to download a torrent, his personal passkey is imprinted in the tracker URL of the torrent, allowing to the tracker to identify any source connected on it. In this way, you can seed a torrent for example, at home and at your office simultaneously without any problem with the 2 different IPs.\r\n', 1, 5, 13),
(468, 68, 6, 'item', 'Why do I get an "Unknown passkey" error? ', 'You will get this error, firstly if you are not registered on our tracker, or if you haven''t downloaded the torrent to use from our webpage, when you were logged in. In this case, just register or log in and re-download the torrent.<br />\r\nThere is a chance to get this error also, at the first time you download anything as a new user, or at the first download after you reset your passkey. The reason is simply that the tracker reviews the changes in the passkeys every few minutes and not instantly. For that reason just leave the torrent running for a few minutes, and you will get eventually an OK message from the tracker.', 1, 5, 14),
(469, 69, 6, 'item', 'When do I need to reset my passkey?', '<ul><li>If your passkey has been leaked and other user(s) uses it to download torrents using your account. In this case, you will see torrents stated in your account that you are not leeching or seeding . </li>\r\n<li>When your clients hangs up or your connection is terminated without pressing the stop button of your client. In this case, in your account you will see that you are still leeching/seeding the torrents even that your client has been closed. Normally these "ghost peers" will be cleaned automatically within 30 minutes, but if you want to resume your downloads and the tracker denied that due to the fact that you "already are downloading the same torrent" then you should reset your passkey and re-download the torrent, then resume it. </li></ul>', 1, 5, 15),
(470, 70, 6, 'item', 'What is DHT? Why must I turn it off and how?', 'DHT must be disabled in your client. DHT can cause your stats to be recorded incorrectly and could be seen as cheating. Anyone using this will be banned for cheating the system.\r\n<br />\r\nFortunately, this tracker would parse uploaded .torrent files and automatically disable DHT. That''s why you must re-downloaded the torrent before starting seeding.', 1, 5, 16),
(471, 71, 6, 'categ', 'How can I help translate the site language into my native language?', '', 1, 1, 8),
(472, 72, 6, 'item', 'What skills do I need to do the translation?', 'Translate the site into another language is quite easy. You needn''t be skilled in PHP or dynamic website design. In fact, all you need is proficient understanding of English (the default site language) and the language you plan to translate into. Maybe some basic knowledge in HTML would help.<br /><br />\r\nMoreover, we give a detailed tutorial on how to do the translation <a href="#73" class="faqlink"><b>HERE</b></a>. And our coders would be more than pleased to answer the questions you may encounter.<br /><br />\r\nTranslate the whole site into another language would take estimated 10 hours. And extra time is needed to maintain the translation when site code is updated.<br /><br />\r\nSo, if you think you could help, feel free to <a class="faqlink" href="contactstaff.php"><b>CONTACT US</b></a>. Needless to say, you would be rewarded.', 1, 71, 1),
(473, 73, 6, 'item', 'The translation tutorial', '<ul>\r\n<li>How does multi-language work?<br />\r\nCurrently we use language files to store all the static words that a user can see on web pages. <br />\r\nEvery php code file has a corresponding language file for a certain language. And we named the language file ''lang_'' plus the filename of the php code file. i.e. the language file of the php code file ''details.php'' would be ''lang_details.php''. <br />\r\nWe has some mechanism in php codes to read the exact language files of user''s preferred language, and you shouldn''t worry about that.<br /></li>\r\n<li>What''s in language files?<br />\r\nIn a language file is an array of strings. These strings contain all the static words that a user can see on web pages. When we need to say some words on a php code file, we call for a string in the array. And the output of the php code file, that is what users see on the web pages, would show the value of the string.<br />\r\nSounds dizzying? Well, you need not care about all these. All you gotta do is translate the values of the strings in the language files into another language. <b>Let''s see an example</b>:<br /><br />\r\nThe following is the content of the English language file ''lang_users.php'', which works for the php code file ''users.php''. <br /><br />\r\n<img src="pic/langfileeng.png" alt="langfileeng" /><br />\r\nIf you wanna translate it into Simplified Chinese, all you need is edit the file into this:<br />\r\n<img src="pic/langfilechs.png" alt="langfilechs" /><br />\r\nSee, in every line, the left part, that is before <i>=&gt;</i>, is the name of a string, which you shouldn''t touch. All you need to is translate the right part, after <i>=&gt;</i>, which is the value of the string, into another language.<br />\r\nSometimes you need to look at the corresponding web pages to get the context meaning of some words.<br /></li>\r\n<li>Sounds easy? See what do you need to do.<br />\r\nIf you feel like to help us, <a class="faqlink" href="aboutnexus.php#contact"><b>CONTACT US</b></a> and we will send you a pack of the English language files (or any other available language if you prefer). Received it, you can start translating the value of strings (which is in English), into another language. It should take you several hours to do the whole work. After this, send back the translated language files to us.<br />\r\nIf no bugs or hacking codes are found in testing, we would put the new language into work.<br />\r\nSometimes the language files need to be updated, typically adding new strings, when site codes are updated. If you feel like it, you can help maintain the language files.<br /></li>\r\n<li><font color="red"><b>IMPORTANT</b></font><br />\r\nThe text of language files must be encoded in UTF-8. When saving files, be sure to set the character encoding to UTF-8. Otherwise mojibake may happen.</li></ul>', 1, 71, 2),
(474, 74, 6, 'item', 'Why does my client notify me of low disk space even if there is plenty left?', 'Most possible reason is that the file system of your disk partitions is FAT32, which has a maximum file size limit of 4 GB. If your operation system is Windows, consider converting file system to NTFS. Check <a class="faqlink" href="http://technet.microsoft.com/en-us/library/bb456984.aspx">here</a> for details.\r\n', 1, 5, 17);
-- --------------------------------------------------------
--
-- Table structure for table `files`
--
CREATE TABLE IF NOT EXISTS `files` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrent` mediumint(8) unsigned NOT NULL DEFAULT '0',
`filename` varchar(255) NOT NULL DEFAULT '',
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `torrent` (`torrent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `files`
--
-- --------------------------------------------------------
--
-- Table structure for table `forummods`
--
CREATE TABLE IF NOT EXISTS `forummods` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`forumid` smallint(5) unsigned NOT NULL,
`userid` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `forumid` (`forumid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `forummods`
--
-- --------------------------------------------------------
--
-- Table structure for table `forums`
--
CREATE TABLE IF NOT EXISTS `forums` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`sort` smallint(5) unsigned NOT NULL DEFAULT '0',
`name` varchar(60) NOT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
`minclassread` tinyint(3) unsigned NOT NULL DEFAULT '0',
`minclasswrite` tinyint(3) unsigned NOT NULL DEFAULT '0',
`postcount` int(10) unsigned NOT NULL DEFAULT '0',
`topiccount` int(10) unsigned NOT NULL DEFAULT '0',
`minclasscreate` tinyint(3) unsigned NOT NULL DEFAULT '0',
`forid` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `forums`
--
-- --------------------------------------------------------
--
-- Table structure for table `friends`
--
CREATE TABLE IF NOT EXISTS `friends` (
`id` int(12) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL,
`friendid` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `userfriend` (`userid`,`friendid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `friends`
--
-- --------------------------------------------------------
--
-- Table structure for table `fun`
--
CREATE TABLE IF NOT EXISTS `fun` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`body` text,
`title` varchar(255) NOT NULL DEFAULT '',
`status` enum('normal','dull','notfunny','funny','veryfunny','banned') NOT NULL DEFAULT 'normal',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `fun`
--
-- --------------------------------------------------------
--
-- Table structure for table `funds`
--
CREATE TABLE IF NOT EXISTS `funds` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`usd` decimal(8,2) NOT NULL DEFAULT '0.00',
`cny` decimal(8,2) NOT NULL DEFAULT '0.00',
`user` mediumint(8) unsigned NOT NULL,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`memo` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `funds`
--
-- --------------------------------------------------------
--
-- Table structure for table `funvotes`
--
CREATE TABLE IF NOT EXISTS `funvotes` (
`funid` mediumint(8) unsigned NOT NULL,
`userid` mediumint(8) unsigned NOT NULL,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`vote` enum('fun','dull') NOT NULL DEFAULT 'fun',
PRIMARY KEY (`funid`,`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `funvotes`
--
-- --------------------------------------------------------
--
-- Table structure for table `invites`
--
CREATE TABLE IF NOT EXISTS `invites` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`inviter` mediumint(8) unsigned NOT NULL DEFAULT '0',
`invitee` varchar(80) NOT NULL DEFAULT '',
`hash` char(32) NOT NULL,
`time_invited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `hash` (`hash`(3))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `invites`
--
-- --------------------------------------------------------
--
-- Table structure for table `iplog`
--
CREATE TABLE IF NOT EXISTS `iplog` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(64) NOT NULL,
`userid` mediumint(8) unsigned NOT NULL,
`access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `iplog`
--
-- --------------------------------------------------------
--
-- Table structure for table `isp`
--
CREATE TABLE IF NOT EXISTS `isp` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=21 ;
--
-- Dumping data for table `isp`
--
INSERT INTO `isp` (`id`, `name`) VALUES
(1, '荳ュ蝗ス逕オ菫。'),
(2, '荳ュ蝗ス鄂鷹€'),
(3, '荳ュ蝗ス體€'),
(4, '荳ュ蝗ス遘サ蜉ィ'),
(5, '荳ュ蝗ス閨秘€'),
(6, '荳ュ蝗ス謨呵ご鄂'),
(20, 'Other');
-- --------------------------------------------------------
--
-- Table structure for table `language`
--
CREATE TABLE IF NOT EXISTS `language` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`lang_name` varchar(50) NOT NULL,
`flagpic` varchar(255) NOT NULL DEFAULT '',
`sub_lang` tinyint(3) unsigned NOT NULL DEFAULT '1',
`rule_lang` tinyint(3) unsigned NOT NULL DEFAULT '0',
`site_lang` tinyint(3) unsigned NOT NULL DEFAULT '0',
`site_lang_folder` varchar(255) NOT NULL DEFAULT '',
`trans_state` enum('up-to-date','outdate','incomplete','need-new','unavailable') NOT NULL DEFAULT 'unavailable',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=32 ;
--
-- Dumping data for table `language`
--
INSERT INTO `language` (`id`, `lang_name`, `flagpic`, `sub_lang`, `rule_lang`, `site_lang`, `site_lang_folder`, `trans_state`) VALUES
(1, 'Bulgarian', 'bulgaria.gif', 1, 0, 0, '', 'unavailable'),
(2, 'Croatian', 'croatia.gif', 1, 0, 0, '', 'unavailable'),
(3, 'Czech', 'czechrep.gif', 1, 0, 0, '', 'unavailable'),
(4, 'Danish', 'denmark.gif', 1, 0, 0, '', 'unavailable'),
(5, 'Dutch', 'netherlands.gif', 1, 0, 0, '', 'unavailable'),
(6, 'English', 'uk.gif', 1, 1, 1, 'en', 'up-to-date'),
(7, 'Estonian', 'estonia.gif', 1, 0, 0, '', 'unavailable'),
(8, 'Finnish', 'finland.gif', 1, 0, 0, '', 'unavailable'),
(9, 'French', 'france.gif', 1, 0, 0, '', 'unavailable'),
(10, 'German', 'germany.gif', 1, 0, 0, '', 'unavailable'),
(11, 'Greek', 'greece.gif', 1, 0, 0, '', 'unavailable'),
(12, 'Hebrew', 'israel.gif', 1, 0, 0, '', 'unavailable'),
(13, 'Hungarian', 'hungary.gif', 1, 0, 0, '', 'unavailable'),
(14, 'Italian', 'italy.gif', 1, 0, 0, '', 'unavailable'),
(15, '譌・譛ャ隱', 'japan.gif', 1, 0, 0, '', 'unavailable'),
(16, '﨑懋オュ', 'southkorea.gif', 1, 0, 0, 'ko', 'unavailable'),
(17, 'Norwegian', 'norway.gif', 1, 0, 0, '', 'unavailable'),
(18, 'Other', 'jollyroger.gif', 1, 0, 0, '', 'unavailable'),
(19, 'Polish', 'poland.gif', 1, 0, 0, '', 'unavailable'),
(20, 'Portuguese', 'portugal.gif', 1, 0, 0, '', 'unavailable'),
(21, 'Romanian', 'romania.gif', 1, 0, 0, '', 'unavailable'),
(22, 'Russian', 'russia.gif', 1, 0, 0, '', 'unavailable'),
(23, 'Serbian', 'serbia.gif', 1, 0, 0, '', 'unavailable'),
(24, 'Slovak', 'slovakia.gif', 1, 0, 0, '', 'unavailable'),
(25, '邂€菴謎クュ譁', 'china.gif', 1, 1, 1, 'chs', 'up-to-date'),
(26, 'Spanish', 'spain.gif', 1, 0, 0, '', 'unavailable'),
(27, 'Swedish', 'sweden.gif', 1, 0, 0, '', 'unavailable'),
(28, 'ォ比クュ譁', 'hongkong.gif', 1, 1, 1, 'cht', 'up-to-date'),
(29, 'Turkish', 'turkey.gif', 1, 0, 0, '', 'unavailable'),
(30, 'Slovenian', 'slovenia.gif', 1, 0, 0, '', 'unavailable'),
(31, 'Thai', 'thailand.gif', 1, 0, 0, 'th', 'unavailable');
-- --------------------------------------------------------
--
-- Table structure for table `links`
--
CREATE TABLE IF NOT EXISTS `links` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`url` varchar(255) NOT NULL,
`title` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `links`
--
-- --------------------------------------------------------
--
-- Table structure for table `locations`
--
CREATE TABLE IF NOT EXISTS `locations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`location_main` varchar(200) NOT NULL,
`location_sub` varchar(200) NOT NULL,
`flagpic` varchar(50) DEFAULT NULL,
`start_ip` varchar(20) NOT NULL,
`end_ip` varchar(20) NOT NULL,
`theory_upspeed` int(10) unsigned NOT NULL DEFAULT '10',
`practical_upspeed` int(10) unsigned NOT NULL DEFAULT '10',
`theory_downspeed` int(10) unsigned NOT NULL DEFAULT '10',
`practical_downspeed` int(10) unsigned NOT NULL DEFAULT '10',
`hit` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `locations`
--
-- --------------------------------------------------------
--
-- Table structure for table `loginattempts`
--
CREATE TABLE IF NOT EXISTS `loginattempts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(64) NOT NULL DEFAULT '',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`banned` enum('yes','no') NOT NULL DEFAULT 'no',
`attempts` smallint(5) unsigned NOT NULL DEFAULT '0',
`type` enum('login','recover') NOT NULL DEFAULT 'login',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `loginattempts`
--
-- --------------------------------------------------------
--
-- Table structure for table `media`
--
CREATE TABLE IF NOT EXISTS `media` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
--
-- Dumping data for table `media`
--
INSERT INTO `media` (`id`, `name`, `sort_index`) VALUES
(1, 'Blu-ray', 0),
(2, 'HD DVD', 1),
(4, 'MiniBD', 4),
(5, 'HDTV', 5),
(6, 'DVDR', 6),
(7, 'Encode', 3),
(3, 'Remux', 2),
(8, 'CD', 7),
(9, 'Track', 9);
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE TABLE IF NOT EXISTS `messages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
`receiver` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`subject` varchar(128) NOT NULL DEFAULT '',
`msg` text,
`unread` enum('yes','no') NOT NULL DEFAULT 'yes',
`location` smallint(6) NOT NULL DEFAULT '1',
`saved` enum('no','yes') NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
KEY `receiver` (`receiver`),
KEY `sender` (`sender`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `messages`
--
-- --------------------------------------------------------
--
-- Table structure for table `modpanel`
--
CREATE TABLE IF NOT EXISTS `modpanel` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`info` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1020 ;
--
-- Dumping data for table `modpanel`
--
INSERT INTO `modpanel` (`id`, `name`, `url`, `info`) VALUES
(1, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(2, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(3, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(4, 'Ad management', 'admanage.php', 'Manage ads at your site'),
(5, 'Uploaders', 'uploaders.php', 'See uploaders stats'),
(6, 'Stats', 'stats.php', 'Tracker Stats'),
(7, 'IP Test', 'testip.php', 'Test if IP is banned'),
(8, 'Add Bonus Points', 'amountbonus.php', 'Add Bonus Points to one or All Users.'),
(9, 'Clear cache', 'clearcache.php', 'Clear cache of memcached');
-- --------------------------------------------------------
--
-- Table structure for table `news`
--
CREATE TABLE IF NOT EXISTS `news` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`body` text,
`title` varchar(255) NOT NULL DEFAULT '',
`notify` enum('yes','no') NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
KEY `added` (`added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `news`
--
-- --------------------------------------------------------
--
-- Table structure for table `offers`
--
CREATE TABLE IF NOT EXISTS `offers` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`name` varchar(225) NOT NULL,
`descr` text,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`allowedtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`yeah` smallint(5) unsigned NOT NULL DEFAULT '0',
`against` smallint(5) unsigned NOT NULL DEFAULT '0',
`category` smallint(5) unsigned NOT NULL DEFAULT '0',
`comments` mediumint(8) unsigned NOT NULL DEFAULT '0',
`allowed` enum('allowed','pending','denied') NOT NULL DEFAULT 'pending',
PRIMARY KEY (`id`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `offers`
--
-- --------------------------------------------------------
--
-- Table structure for table `offervotes`
--
CREATE TABLE IF NOT EXISTS `offervotes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`offerid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`vote` enum('yeah','against') NOT NULL DEFAULT 'yeah',
PRIMARY KEY (`id`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `offervotes`
--
-- --------------------------------------------------------
--
-- Table structure for table `overforums`
--
CREATE TABLE IF NOT EXISTS `overforums` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
`minclassview` tinyint(3) unsigned NOT NULL DEFAULT '0',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `overforums`
--
-- --------------------------------------------------------
--
-- Table structure for table `peers`
--
CREATE TABLE IF NOT EXISTS `peers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrent` mediumint(8) unsigned NOT NULL DEFAULT '0',
`peer_id` binary(20) NOT NULL,
`ip` varchar(64) NOT NULL DEFAULT '',
`port` smallint(5) unsigned NOT NULL DEFAULT '0',
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`to_go` bigint(20) unsigned NOT NULL DEFAULT '0',
`seeder` enum('yes','no') NOT NULL DEFAULT 'no',
`started` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`prev_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`connectable` enum('yes','no') NOT NULL DEFAULT 'yes',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`agent` varchar(60) NOT NULL DEFAULT '',
`finishedat` int(10) unsigned NOT NULL DEFAULT '0',
`downloadoffset` bigint(20) unsigned NOT NULL DEFAULT '0',
`uploadoffset` bigint(20) unsigned NOT NULL DEFAULT '0',
`passkey` char(32) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `userid` (`userid`),
KEY `torrent` (`torrent`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED AUTO_INCREMENT=1 ;
--
-- Dumping data for table `peers`
--
-- --------------------------------------------------------
--
-- Table structure for table `pmboxes`
--
CREATE TABLE IF NOT EXISTS `pmboxes` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL,
`boxnumber` tinyint(3) unsigned NOT NULL DEFAULT '2',
`name` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `pmboxes`
--
-- --------------------------------------------------------
--
-- Table structure for table `pollanswers`
--
CREATE TABLE IF NOT EXISTS `pollanswers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pollid` mediumint(8) unsigned NOT NULL,
`userid` mediumint(8) unsigned NOT NULL,
`selection` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `pollid` (`pollid`),
KEY `selection` (`selection`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `pollanswers`
--
-- --------------------------------------------------------
--
-- Table structure for table `polls`
--
CREATE TABLE IF NOT EXISTS `polls` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`question` varchar(255) NOT NULL DEFAULT '',
`option0` varchar(40) NOT NULL DEFAULT '',
`option1` varchar(40) NOT NULL DEFAULT '',
`option2` varchar(40) NOT NULL DEFAULT '',
`option3` varchar(40) NOT NULL DEFAULT '',
`option4` varchar(40) NOT NULL DEFAULT '',
`option5` varchar(40) NOT NULL DEFAULT '',
`option6` varchar(40) NOT NULL DEFAULT '',
`option7` varchar(40) NOT NULL DEFAULT '',
`option8` varchar(40) NOT NULL DEFAULT '',
`option9` varchar(40) NOT NULL DEFAULT '',
`option10` varchar(40) NOT NULL DEFAULT '',
`option11` varchar(40) NOT NULL DEFAULT '',
`option12` varchar(40) NOT NULL DEFAULT '',
`option13` varchar(40) NOT NULL DEFAULT '',
`option14` varchar(40) NOT NULL DEFAULT '',
`option15` varchar(40) NOT NULL DEFAULT '',
`option16` varchar(40) NOT NULL DEFAULT '',
`option17` varchar(40) NOT NULL DEFAULT '',
`option18` varchar(40) NOT NULL DEFAULT '',
`option19` varchar(40) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `polls`
--
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE IF NOT EXISTS `posts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`topicid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`body` text,
`ori_body` text,
`editedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`editdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `userid` (`userid`),
KEY `topicid_id` (`topicid`,`id`),
KEY `added` (`added`),
FULLTEXT KEY `body` (`body`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `posts`
--
-- --------------------------------------------------------
--
-- Table structure for table `processings`
--
CREATE TABLE IF NOT EXISTS `processings` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `processings`
--
INSERT INTO `processings` (`id`, `name`, `sort_index`) VALUES
(1, 'Raw', 0),
(2, 'Encode', 0);
-- --------------------------------------------------------
--
-- Table structure for table `prolinkclicks`
--
CREATE TABLE IF NOT EXISTS `prolinkclicks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`ip` varchar(64) NOT NULL DEFAULT '',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `prolinkclicks`
--
-- --------------------------------------------------------
--
-- Table structure for table `readposts`
--
CREATE TABLE IF NOT EXISTS `readposts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`topicid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`lastpostread` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `topicid` (`topicid`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `readposts`
--
-- --------------------------------------------------------
--
-- Table structure for table `regimages`
--
CREATE TABLE IF NOT EXISTS `regimages` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`imagehash` varchar(32) NOT NULL DEFAULT '',
`imagestring` varchar(8) NOT NULL DEFAULT '',
`dateline` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `regimages`
--
-- --------------------------------------------------------
--
-- Table structure for table `reports`
--
CREATE TABLE IF NOT EXISTS `reports` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`addedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`reportid` int(10) unsigned NOT NULL DEFAULT '0',
`type` enum('torrent','user','offer','request','post','comment','subtitle') NOT NULL DEFAULT 'torrent',
`reason` varchar(255) NOT NULL DEFAULT '',
`dealtby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`dealtwith` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `reports`
--
-- --------------------------------------------------------
--
-- Table structure for table `rules`
--
CREATE TABLE IF NOT EXISTS `rules` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`lang_id` smallint(5) unsigned NOT NULL DEFAULT '6',
`title` varchar(255) NOT NULL,
`text` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=56 ;
--
-- Dumping data for table `rules`
--
INSERT INTO `rules` (`id`, `lang_id`, `title`, `text`) VALUES
(1, 25, '諤サ蛻 - <font class=striking>荳埼螳郁ソ吩コ帛ーッシ閾エ蟶仙捷陲ォ蟆</font>', '[*]隸キ荳崎ヲ∝★邂。逅遭譏取枚遖∵ュ「逧コ区ュ縲r\n[*]荳榊隶ク蜿鷹€∝档蝨セ菫。諱ッ縲r\n[*]雍ヲ蜿キ菫晉蕗隗喀r\n 1.[b]Veteran User[/b]蜿贋サ・荳顔ュ臥コァ逕ィ謌キ莨壽ーク霑應ソ晉蕗媾r\n 2.[b]Elite User[/b]蜿贋サ・荳顔ュ臥コァ逕ィ謌キ蟆∝ュ倩エヲ蜿キ亥惠[url=usercp.php?action=personal]謗ァ蛻カ髱「譚ソ[/url]牙錘荳堺シ夊「ォ蛻髯、蟶仙捷媾r\n 3.蟆∝ュ倩エヲ蜿キ逧畑謌キ霑樒サュ400螟ゥ荳咲匳蠖募ー「ォ蛻髯、蟶仙捷媾r\n 4.譛ェ蟆∝ュ倩エヲ蜿キ逧畑謌キ霑樒サュ150螟ゥ荳咲匳蠖募ー「ォ蛻髯、蟶仙捷媾r\n 5.豐。譛画オ㍼逧畑謌キ亥叉荳贋シ/荳玖スス謨ー謐ョ驛ス荳コ0芽ソ樒サュ100螟ゥ荳咲匳蠖募ー「ォ蛻髯、蟶仙捷縲r\n[*]荳€蛻ス懷シ顔噪蟶仙捷莨夊「ォ蟆シ瑚ッキ蜍ソ蠢ュ倅セ・蟷ク縲r\n[*]豕ィ蜀悟、壻クェ[site]雍ヲ蜿キ逧畑謌キ蟆「ォ遖∵ュ「縲r\n[*]荳崎ヲ∵滑譛ャ遶咏噪遘榊ュ先枚莉カ荳贋シ蛻ー蜈カ莉傍racker(蜈キ菴楢ッキ逵擬url=faq.php#38][b]蟶ク隗琉鬚麓/b][/url])\r\n[*]隨ャ荳€谺。蝨ィ隶コ蝮帶譛榊苅蝎ィ荳ュ逧坤荵ア陦御クコ莨壼女蛻ー隴ヲ蜻奇シ檎ャャ莠梧ャ。謔ィ蟆ーク霑懈裏郛麓site] 縲'),
(2, 25, '荳玖スス隗 - <font class=striking>霑晁ァシ壼、ア蜴サ荳玖スス譚</font>', '[*]霑ス守噪蛻コォ邇シ壼ッシ閾エ荳・驥咲噪蜷取棡悟桁諡ャ遖∵ュ「蟶仙捷縲りッヲ隗ーurl=faq.php#22]蟶ク隗琉鬚麓/url]縲r\n[*]遘榊ュ蝉ソ楳隗喀r\n [*]髫乗惻菫育ァ榊ュ蝉ク贋シ蜷守ウサ扈溯蜉ィ髫乗惻隶セ荳コ菫会シ喀r\n [*]10%逧ヲら紫謌蝉クコ窶彈color=#7c7ff6][b]50%荳玖スス[/b][/color]窶晢シ媾r\n [*]5%逧ヲら紫謌蝉クコ窶彈color=#f0cc00][b]蜈崎エケ[/b][/color]窶晢シ媾r\n [*]5%逧ヲら紫謌蝉クコ窶彈color=#aaaaaa][b]2x荳贋シ[/b][/color]窶晢シ媾r\n [*]3%逧ヲら紫謌蝉クコ窶彈color=#7ad6ea][b]50%荳玖スス&2x荳贋シ[/b][/color]窶晢シ媾r\n [*]1%逧ヲら紫謌蝉クコ窶彈color=#99cc66][b]蜈崎エケ&2x荳贋シ[/b][/color]窶昴€r\n [*]譁サカ諤サ菴鍋ァッ螟ァ莠20GB逧ァ榊ュ仙ー蜉ィ謌蝉クコ窶彈color=#f0cc00][b]蜈崎エケ[/b][/color]窶昴€r\n [*]Blu-ray Disk, HD DVD蜴溽尨蟆荳コ窶彈color=#f0cc00][b]蜈崎エケ[/b][/color]窶昴€r\n [*]逕オ隗鴬遲画ッ丞ュ」逧ャャ荳€髮荳コ窶彈color=#f0cc00][b]蜈崎エケ[/b][/color]窶昴€r\n [*]蜈ウ豕ィ蠎ヲ鬮倡噪遘榊ュ仙ー「ォ隶セ鄂ョ荳コ菫育罰邂。逅遭螳壼、コ峨€r\n [*]菫楳譌カ髯撰シ喀r\n [*]髯、莠€彈color=#aaaaaa][b]2x荳贋シ[/b][/color]窶昜サ・螟厄シ悟菴咏アサ蝙狗噪菫楳髯先慮7螟ゥ遘榊ュ仙書蟶慮襍キ会シ媾r\n [*]窶彈color=#aaaaaa][b]2x荳贋シ[/b][/color]窶晄裏譌カ髯舌€r\n [*]謇€譛臥ァ榊ュ仙惠蜿大ク1荳ェ譛亥錘蟆蜉ィ豌ク荵荳コ窶彈color=#aaaaaa][b]2x荳贋シ[/b][/color]窶昴€ \r\n [*]謌台サャ荵溷ーク榊ョ壽悄蠑€蜷ッ蜈ィ遶兌color=#f0cc00][b]蜈崎エケ[/b][/color]悟ア頑慮蟆ス諠汲谺「蜷ァ~:mml: :mml: :mml:\r\n[*]菴蜿ェ閭ス菴ソ逕ィ蜈∬ョク逧ВT螳「謌キ遶ッ荳玖スス譛ャ遶呵オコ舌€りッヲ隗ーurl=faq.php#29]蟶ク隗琉鬚麓/url]縲'),
(4, 25, '隶コ蝮帶€サ蛻 - <font class=striking>隸キ驕オ蠕ェ莉・荳狗噪螳亥瑚ソ晁ァシ壼女蛻ー隴ヲ蜻奇シ</font>', '[*]遖∵ュ「謾サ蜃サ縲∵倦蜉ィ莉紋ココ逧ィ€霎槭€r\n[*]遖∵ュ「諱カ諢冗′豌エ謌門書蟶档蝨セ菫。諱ッ縲りッキ蜍ソ蝨ィ隶コ蝮幃撼Water Jar迚亥摎蜿大ク裏諢丈ケ我クサ鬚俶蝗槫、搾シ亥ヲらコッ陦ィ諠シ臥ュ峨€r\n[*]荳崎ヲ∽クコ莠執蜿夜ュ泌鴨蛟シ閠悟、ァ閧′豌エ縲r\n[*]遖∵ュ「蝨ィ譬「俶豁」譁スソ逕ィ閼剰ッ昴€r\n[*]荳崎ヲ∬ョィ隶コ遖∝ソ後€∵帆豐サ謨乗─謌門ス灘慍豕募セ狗ヲ∵ュ「逧ッ晞「倥€r\n[*]遖∵ュ「莉サ菴募渕莠守ァ肴酪縲∝嵜螳カ縲∵ー第酪縲∬う濶イ縲∝ョ玲蕗縲∵€ァ蛻ォ縲∝ケエ鮴€∵€ァ蜿門髄縲∬コォ菴捺邊セ逾樣囿遒咲噪豁ァ隗€ァ險€霎槭€りソ晁ァッシ閾エ雍ヲ蜿キ豌ク荵€ァ遖∫畑縲r\n[*]遖∵ュ「謖門據域園譛画喧蝮溷ク夜隕∬「ォ蛻謗会シ峨€r\n[*]遖∵ュ「驥榊、榊書蟶悶€r\n[*]隸キ遑ョ菫晞琉鬚伜書蟶惠逶ク蟇ケ蠎皮噪譚ソ蝮励€r\n[*]365螟ゥ譌譁ー蝗槫、咲噪荳サ鬚伜ー「ォ邉サ扈溯蜉ィ髞∝ョ.\r\n'),
(6, 25, '螟エ蜒丈スソ逕ィ隗 - <font class=striking>隸キ蟆ス驥城螳井サ・荳玖ァ</font>', '[*]蜈∬ョク逧シ蠑丈クコ.gif .jpg.png縲r\n[*]蝗セ迚、ァ蟆丈ク崎ソ150KB御クコ莠サ滉ク€檎ウサ扈滉シ夊ー紛螟エ蜒丞ョス蠎ヲ蛻ー150蜒冗エ螟ァ蟆擾シ域オ剰ァ亥勣莨壽滑蝗セ迚紛謌仙粋騾ら噪螟ァ蟆擾シ悟ー丞崟迚「ォ諡我シク瑚€瑚ソ、ァ逧崟迚宵莨壽オェ雍ケ蟶ヲ螳ス蜥靴PU) 縲r\n[*]隸キ荳崎ヲ∽スソ逕ィ蜿ッ閭ス蠑戊オキ蛻ォ莠コ蜿肴─逧崟迚シ悟桁諡ャ濶イ諠€∝ョ玲蕗縲∬。€閻・逧勘迚ゥ/莠コ邀サ縲∝ョ」謇ャ譟千ァ肴э隸ス「諤∫噪蝗セ迚€ょヲよ棡菴荳咲。ョ螳壽汾蠑蝗セ迚弍蜷ヲ蜷磯€ゑシ瑚ッキ遶咏洒邂。逅遭縲'),
(3, 25, '荳贋シ - <font class=striking> 隹ィ隶ー: 霑晁ァ噪遘榊ュ仙ーク咲サ乗署驢定€檎峩謗・蛻髯、 </font>', '隸キ驕オ螳郁ァ縲ょヲよ棡菴蟇ケ隗譛我ササ菴穂ク肴ク・壽荳咲炊隗」逧慍譁ケ瑚ッキ[url=contactstaff.php]蜥ィ隸「邂。逅サЪ/url]縲b]邂。逅ソ晉蕗陬∝揀蜉帙€/b]\r\n\r\n[b]荳贋シ諤サ蛻兌/b]\r\n [*]荳贋シソ。サ蟇ケ荳贋シ枚莉カ諡・譛牙粋豕慕噪莨謦ュ譚€r\n [*]荳贋シソ。サ菫晁ッ∽ク贋シ騾溷コヲ荳主★遘肴慮髣エ縲ょヲよ棡蝨ィ蜈カ莉紋ココ螳梧蜑肴彫遘肴蛛夂ァ肴慮髣エ荳崎カウ24蟆乗慮腐諢丈ス朱€滉ク贋シ御ク贋シシ夊「ォ隴ヲ蜻顔爆閾ウ蜿匁カ井ク贋シ剞縲r\n [*]蟇ケ莠手蟾ア蜿大ク噪遘榊ュ撰シ悟書蟶€執蠕怜曙蛟咲噪荳贋シ驥上€r\n [*]螯よ棡菴譛我ク€莠幄ソ晁ァ唆譛我サキ蛟シ逧コ撰シ瑚ッキ蟆ッヲ扈ュ蜀オ[url=contactstaff.php]蜻顔衍邂。逅サЪ/url]莉ャ蜿ッ閭ス遐エ萓句隶ク蜈カ蜿大ク€r\n\r\n[b]荳贋シシ[/b]\r\n [*]莉サ菴穂ココ驛ス閭ス蜿大クコ舌€r\n [*]荳崎ソシ梧怏莠帷畑謌キ髴€隕∝蝨ィ[url=offers.php]蛟咎€牙玄[/url]謠蝉コ、蛟咎€峨€りッヲ隗∝クク隗琉鬚倅クュ逧Ъurl=faq.php#22]逶ク蜈ウ隸エ譏纂/url]縲r\n [*]蟇ケ莠取クク謌冗アサ襍コ撰シ悟宵譛閏color=#DC143C][b]荳贋シ蜻麓/b][/color]蜿贋サ・荳顔ュ臥コァ逧畑謌キ弍邂。逅音蛻ォ謖ョ夂噪逕ィ謌キ梧燕閭ス閾ェ逕ア荳贋シ縲ょ莉也畑謌キ蠢。サ蜈亥惠[url=offers.php]蛟咎€牙玄[/url]謠蝉コ、蛟咎€峨€r\n\r\n[b]蜈∬ョク逧コ仙柱譁サカ喙/b]\r\n [*]鬮俶クD芽ァ「托シ悟桁諡ャ\r\n [*]螳梧紛鬮俶クェ剃サ具シ悟ヲり統蜈会シlu-ray牙次遒溘€?D DVD蜴溽「溽ュ会シ梧remux圭r\n [*]HDTV豬∝ェ剃ス難シ圭r\n [*]譚・貅蝉コ惹ク願ソー蟐剃サ狗噪鬮俶ク㍾郛也シ郁蟆台クコ720p譬会シ圭r\n [*]蜈カ莉夜ォ俶ク「托シ悟ヲるォ俶クV媾r\n [*]譬D芽ァ「托シ悟宵閭ス譏ッ\r\n [*]譚・貅蝉コ朱ォ俶クェ剃サ狗噪譬㍾郛也シ郁蟆台クコ480p譬会シ媾r\n [*]DVDR/DVDISO圭r\n [*]DVDRip縲,NDVDRip媾r\n [*]譌謐滄浹霓ィ亥所逶ク蠎把ue陦ィ蜊包シ会シ悟ヲLAC縲`onkey''s Audio遲会シ媾r\n [*]5.1螢ー驕捺莉・荳頑㊥逧鳩蠖ア髻ウ霓ィ縲浹荵宣浹霓ィTS縲.TSCD髟懷ワ遲会シ会シ瑚ッョコ髻ウ霓ィ媾r\n [*]PC貂ク謌擾シ亥ソ。サ荳コ蜴溽沿蜈臥尨髟懷ワ会シ媾r\n [*]7譌・蜀書蟶噪鬮俶ク相迚シ媾r\n [*]荳朱ォ俶ク嶌蜈ウ逧スッ莉カ蜥梧枚譯」縲r\n\r\n[b]荳榊隶ク逧コ仙柱譁サカ喙/b]\r\n [*]諤サ菴鍋ァッ蟆丈コ100MB逧コ撰シ媾r\n [*]譬「爽pscale謌夜Κ蛻pscale閠梧「第枚莉カ媾r\n [*]螻樔コ取コァ蛻ォ菴エィ驥剰セキョ逧「第枚莉カ悟桁諡ャCAM縲ゝC縲ゝS縲ヾCR縲.VDSCR縲ヽ5縲ヽ5.Line縲?alfCD遲会シ媾r\n [*]RealVideo郛也∫噪隗「托シ磯€壼クク蟆∬」コ山MVB謌乏M峨€’lv譁サカ媾r\n [*]蜊慕峡逧キ迚シ域キ迚ッキ蜥梧ュ」迚ク€襍キ荳贋シ会シ媾r\n [*]譛ェ霎セ蛻ー5.1螢ー驕捺㊥逧怏謐滄浹鬚第枚莉カ悟ヲょクク隗∫噪譛画此MP3縲∵怏謐欷MA遲会シ媾r\n [*]譌豁」遑ョcue陦ィ蜊慕噪螟夊スィ髻ウ鬚第枚莉カ媾r\n [*]遑ャ逶倡沿縲ォ伜視迚育噪貂ク謌剰オコ撰シ碁撼螳俶婿蛻カ菴懃噪貂ク謌城復蜒擾シ檎ャャ荳画婿mod悟ー乗クク謌丞粋髮シ悟黒迢ャ逧クク謌冗エ隗」謌冶。・荳シ媾r\n [*]RAR遲牙視郛ゥ譁サカ媾r\n [*]驥榊、搾シupe臥噪襍コ撰シ亥愛螳夊ァ隗∽ク区枚会シ媾r\n [*]豸牙所遖∝ソ梧謨乗─蜀ョケ亥ヲり牡諠€∵撫諢滓帆豐サ隸晞「倡ュ会シ臥噪襍コ撰シ媾r\n [*]謐溷搶逧枚莉カ梧欠蝨ィ隸サ蜿匁蝗樊叛霑ィ倶クュ蜃コ邇ー髞呵ッッ逧枚莉カ媾r\n [*]蝙慇譁サカ悟ヲら羅豈偵€∵惠鬩ャ縲∫ス醍ォ咎得謗・縲∝ケソ蜻頑枚譯」縲∫ァ榊ュ蝉クュ蛹性逧ァ榊ュ先枚莉カ遲会シ梧蜈ウ譁サカ縲r\n\r\n[b]驥榊、搾シupe牙愛螳夊ァ夊エィ驥城㍾莠取焚驥充/b]\r\n [*]隗「題オコ先潔譚・貅仙ェ剃サ狗。ョ螳壻シ伜郤ァ御クサ隕∽クコ咤lu-ray/HD DVD > HDTV > DVD > TV縲ょ酔荳€隗「鷹ォ倅シ伜郤ァ迚域悽蟆スソ菴惹シ伜郤ァ迚域悽陲ォ蛻、螳壻クコ驥榊、阪€r\n [*]蜷御ク€隗「醍噪鬮俶ク沿譛ャ蟆スソ譬沿譛ャ陲ォ蛻、螳壻クコ驥榊、阪€r\n [*]蟇ケ莠主勘貍ォ邀サ隗「題オコ撰シ粂DTV迚域悽蜥轡VD迚域悽譛臥嶌蜷檎噪莨伜郤ァ瑚ソ呎弍荳€荳ェ迚ケ萓九€r\n [*]譚・貅蝉コ守嶌蜷悟ェ剃サ具シ檎嶌蜷悟霎ィ邇ーエ蟷ウ逧ォ俶ク「鷹㍾郛也―r\n [*]蜿り€€彈url=forums.php?action=viewtopic&forumid=6&topicid=1520]Scene & Internal, from Group to Qualit
(8, 25, ' - <font class=striking></font>', '[*]€€r\n[*]ソ€€r\n[*]€€€ソ€r\n[*]ソ€€€r\n[*]€r\n[*]€€€€€r\n[*]沿€€r\n[*]r\n[*]€r\n[*]/, 2r\n[*]€4r\n[*]'),
(12, 28, ' - <font class=striking></font> ', '[*]€url=faq.php#22]/url]r\n[*]ソr\n [*]ソr\n [*]10%color=#7c7ff6][b]50%/b][/color]r\n [*]5%color=#f0cc00][b][/b][/color]r\n [*]5%color=#aaaaaa][b]2x荳雁さ[/b][/color]r\n [*]3%color=#7ad6ea][b]50%&2x荳雁さ[/b][/color]r\n [*]1%color=#99cc66][b]&2x荳雁さ[/b][/color]€r\n [*]20GB逧color=#f0cc00][b][/b][/color]€r\n [*]Blu-ray Disk, HD DVD蜴溽乢蟆color=#f0cc00][b][/b][/color]€r\n [*]€color=#f0cc00][b][/b][/color]€r\n [*]€r\n [*]r\n [*]€color=#aaaaaa][b]2x荳雁さ[/b][/color]ソ7r\n [*]color=#aaaaaa][b]2x荳雁さ[/b][/color]r\n [*]€1color=#aaaaaa][b]2x荳雁さ[/b][/color]€ \r\n [*]€color=#f0cc00][b][/b][/color]~:mml: :mml: :mml:\r\n[*]ソВT螳€url=faq.php#29]/url]'),
(14, 28, ' - <font class=striking></font> ', '[*]€€r\n[*]Water Jar迚亥€r\n[*]r\n[*]ソr\n[*]ソ€€r\n[*]€€€€€€r\n[*]€r\n[*]€r\n[*]€r\n[*]365€'),
(5, 25, ' - <font class=striking></font>', '[*]r\n[*]€r\n[*]эソ€'),
(16, 28, 'ソ - <font class=striking></font> ', '[*].gif .jpg .png縲r\n[*]150KB€ソ150€ソ€PU) r\n[*]ソ€€/€r\n'),
(7, 25, ' - <font class=striking></font>', '[*]€€lash遲画怏雜€ソ€r\n[*]€24ソソ2025%ソr\n[*][b]/b]r\n[*]€r\n [*]ソ25ソ50%€5r\n [*]ソ50ソ50%€5r\n [*]ソ100ソ50%€5r\n [*]ソ200ソ50%€5r\n [*]ソ25ソ75%€10r\n [*]ソ50ソ75%€10r\n [*]ソ100ソ75%€10r\n [*]ソ200ソ75%€10'),
(11, 28, ' - <font class=striking>€</font> ', '[*]r\n[*]r\n[*]ソr\n 1.[b]Veteran User[/b]r\n 2.[b]Elite User[/b][url=usercp.php?action=personal]ソ[/url]r\n 3.400r\n 4.150r\n 5./0€100€r\n[*]€Ηr\n[*]€site]r\n[*]racker( [url=faq.php#38][b]/b][/url])\r\n[*]€[site] '),
(13, 28, ' - <font class=striking> : € </font> ', 'url=contactstaff.php]Ъ/url]b]ソ/b]\r\n\r\n[b]/b]\r\n [*]ソ€r\n [*]ソソ24€€r\n [*]€€r\n [*]€url=contactstaff.php]Ъ/url]€r\n\r\n[b][/b]\r\n [*]€r\n [*]ソ[url=offers.php]€[/url]Ъurl=faq.php#22]/url]r\n [*]color=#DC143C][b][/b][/color]ソ[url=offers.php]€[/url]r\n\r\n[b]/b]\r\n [*]D\r\n [*]lu-ray€D DVD蜴溽remuxr\n [*]HDTV豬r\n [*]ソ720p讓呎コ厄シ会シ圭r\n [*]Vr\n [*]D\r\n [*]480p讓呎コ厄シ会シ媾r\n [*]DVDR/DVDISOr\n [*]DVDRip縲NDVDRipr\n [*]ue陦ィ蝟ョLAC縲onkey''s Audio遲会シ媾r\n [*]5.1€TS縲TSCD髀r\n [*]PC驕頑梓ソ沿r\n [*]7r\n [*]€r\n\r\n[b]/b]\r\n [*]100MB逧r\n [*]upscale謌夜Κ蛻pscale閠梧r\n [*]CAM縲ゝC縲ゝS縲ヾCR縲VDSCR縲ヽ5縲ヽ5.Line縲alfCD遲会シ媾r\n [*]RealVideo邱ィ遒シ逧€RMVB謌乏M€lv讙費シ媾r\n [*]€r\n [*]5.1MP3縲MA遲会シ媾r\n [*]cue陦ィ蝟ョ逧r\n [*]沿沿婿odr\n [*]RAR遲牙r\n [*]uper\n [*]ソ€r\n [*]€r\n [*]€€€€€r\n\r\n[b]upe/b]\r\n [*]lu-ray/HD DVD > HDTV > DVD > TV縲ょ酔荳€沿ソ沿€r\n [*]€沿ソ沿€r\n [*]DTV迚域悽蜥轡VD迚域悽譛臥嶌蜷檎噪蜆ェ蜈磯€€€r\n [*]\r\n [*]€€url=forums.php?action=viewtopic&forumid=6&topicid=1520]Scene & Internal, from Group to Quality-Degree. ONLY F
(18, 28, '邂。逅ョ亥援 - <font class=striking>隲区逕ィ菴ャ企剞</font> ', '[*]譛€驥崎ヲ∫噪荳€譴晢シ壽逕ィ菴謇倶クュ逧ャ企剞―r\n[*]蟆堺コ朱&隕剰。檎ぜ荳崎ヲ∵€戊ェェ窶應ク坂€晢シ―r\n[*]荳崎ヲ∝髢句柱蜈カ莉也ョ。逅藤豐也ェシ御ク€蛻€夐℃遘∽ク区コ晞€夊ァ」豎コ縲r\n[*]荳崎ヲ∝、ェ邨墓ュ檎オヲ驕戊ヲ剰€ク€蛟区隼驕守噪讖滓怎縲r\n[*]荳崎ヲ∬ゥヲ蝨問€懈遠鬆宣亟驥昶€晢シ檎ュ牙芦莠コ蛟醍官骭ッ莠蜴サ邉セ豁」縲r\n[*]蝌苓ゥヲ蜴サ謾ケ豁」荳€蛟倶ク埼←逡カ逧ク冶€御ク肴弍邁。蝟ョ逧梨髢牙ョ€r\n[*]螟壼隧ヲ遘サ蜍募ク門ュ仙芦驕ゥ蜷育噪迚磯擇閠御ク肴弍邁。蝟ョ蝨ー骼門ク悶€r\n[*]逡カ陌慕炊迚郁♀蟶也噪譎ょ€呵ヲ∝ッャ螳ケ驕ゥ蠎ヲ縲r\n[*]骼門ク也噪譎ょ€呵ォ狗オヲ莠育ー。蝟ョ逧桃菴懃炊逕ア縲r\n[*]蝨ィ螻剰反譟仙€狗畑謌カ蜑崎ォ句遶咏洒騾夂衍莉/螂ケ, 螯よ棡譛画園遨肴・オ蝗樊㊨蜿ッ莉・閠蜀咲オヲ2蜻ィ隗€蟇滓悄縲r\n[*]荳崎ヲ∫ヲ∫畑荳€蛟区ウィ蜀雁ー壽悴貊ソ4蜻ィ逧クウ謌カ縲r\n[*]豌ク驕險伜セ嶺サ・逅恪莠コ縲r\n'),
(17, 28, '雜」蜻ウ逶定ヲ丞援 - <font class=striking>蝨ィ螽帶ィゆクュ雉コ蛻</font> ', '[*]莉サ菴慕畑謌カ驛ス蜿ッ蝨ィ雜」蜻ウ逶剃クュ謚墓叛隨題ゥア縲∬カ」蝨悶€∵裾隨題ヲ夜サ縲:lash遲画怏雜」逧螳ケ碁勁莠牡諠€∫ヲ∝ソ後€∵帆豐サ謨乗─蜥檎文蝨ー豕募セ狗ヲ∵ュ「逧螳ケ縲r\n[*]豁」蟶ク諠ウ∽ク具シ御ク€譴晁カ」蜻ウ蜈ァ螳ケ蝨ィ逋シ蟶24蟆乗凾蜷朱℃譛溘€ら┯閠鯉シ悟ヲよ棡迯イ蠕礼噪謚慕・ィ謨ク雜℃20荳泌荳ュ窶懈怏雜」窶晉噪豈比セ倶ス惹コ25%瑚カ」蜻ウ蜈ァ螳ケ蟆署蜑埼℃譛溘€r\n[*]譁ー逧カ」蜻ウ蜈ァ螳ケ[b]蜿ェ譛閏/b]蝨ィ闊顔噪蜈ァ螳ケ驕取悄蜷取燕閭ス謠蝉コ、縲r\n[*]闍・雜」蜻ウ蜈ァ螳ケ陲ォ螟壽丙逕ィ謌カ謚慕・ィ隱咲ぜ譛芽カ」逋シ蟶€セ怜芦莉・荳狗克蜍オ喀r\n [*]逾ィ謨ク雜℃25荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃50%檎匸蟶€セ怜芦5蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃50荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃50%檎匸蟶€セ怜芦蜿ヲ螟也噪5蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃100荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃50%檎匸蟶€セ怜芦蜿ヲ螟也噪5蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃200荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃50%檎匸蟶€セ怜芦蜿ヲ螟也噪5蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃25荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃75%檎匸蟶€セ怜芦10蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃50荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃75%檎匸蟶€セ怜芦蜿ヲ螟也噪10蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃100荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃75%檎匸蟶€セ怜芦蜿ヲ螟也噪10蛟矩ュ泌鴨蛟シ縲r\n [*]逾ィ謨ク雜℃200荳ュ隱咲ぜ窶懈怏雜」窶晄ッ比セ玖カ℃75%檎匸蟶€セ怜芦蜿ヲ螟也噪10蛟矩ュ泌鴨蛟シ縲'),
(21, 6, 'General rules - <font class=striking>Breaking these rules can and will get you banned!</font>', '[*]Do not do things we forbid.\r\n[*]Do not spam.\r\n[*]Cherish your user account. Inactive accounts would be deleted based on the following rules:\r\n 1.[b]Veteran User[/b] or above would never be deleted.\r\n 2.[b]Elite User[/b] or above would never be deleted if packed (at [url=usercp.php?action=personal]User CP[/url]).\r\n 3.Packed accounts would be deleted if users have not logged in for more than 400 days in a row.\r\n 4.Unpacked accounts would be deleted if users have not logged in for more than 150 days in a row.\r\n 5.Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.\r\n[*]User found cheating would be deleted. Don''t take chances!\r\n[*]Possession of multiple [site] accounts will result in a ban!\r\n[*]Do not upload our torrents to other trackers! (See the [url=faq.php#38]FAQ[/url] for details.)\r\n[*]Disruptive behavior in the forums or on the server will result in a warning. You will only get [b]one[/b] warning! After that it''s bye bye Kansas!'),
(15, 28, '隧戊ォ也クス蜑 - <font class=striking>豌ク驕蟆企㍾荳雁さ閠</font> ', '[*]辟。隲門ヲゆス包シ瑚ォ句ー企㍾荳雁さ閠シ―r\n[*]謇€譛芽ォ門」匸蟶也噪隕丞援蜷梧ィ」驕ゥ逕ィ莠手ゥ戊ォ悶€r\n[*]螯よ棡菴豐呈怏荳玖シ臥噪諢丞髄瑚ォ倶ク崎ヲ圷萓ソ逋シ陦ィ蜷ヲ螳壽€ァ逧ゥ戊ォ悶€'),
(25, 6, 'Commenting Guidelines - <font class=striking>Always respect uploaders no matter what!</font>', '[*]Always respect uploaders no matter what!\r\n[*]All rules of forum posting apply to commenting, too.\r\n[*]Do not post negative comments about torrents that you don''t plan to download.'),
(27, 6, 'Funbox Rules - <font class=striking>Get bonus with fun!</font>', '[*]Users can submit anything funny (e.g. stories, pictures, flash, video) except things that is pornographic, taboo, political sensitive or forbidden by local laws.\r\n[*]Normally a newly-submitted funbox item would be outdated after 24 hours. However, if there are 20 or more votes on a funbox item, among which votes for ''funny'' is less than 25%, the funbox item would be outdated ahead of its due time.\r\n[*]New funbox item can be submitted [b]only[/b] when the old one is outdated.\r\n[*]User, whose funbox item is voted as [b]funny[/b], would be rewarded based on the following rules:\r\n [*]More than 25 votes, among which votes for [i]funny[/i] exceed 50%. User gets 5 bonus.\r\n [*]More than 50 votes, among which votes for [i]funny[/i] exceed 50%. User gets another 5 bonus.\r\n [*]More than 100 votes, among which votes for [i]funny[/i] exceed 50%. User gets another 5 bonus.\r\n [*]More than 200 votes, among which votes for [i]funny[/i] exceed 50%. User gets another 5 bonus.\r\n [*]More than 25 votes, among which votes for [i]funny[/i] exceed 75%. User gets 10 bonus.\r\n [*]More than 50 votes, among which votes for [i]funny[/i] exceed 75%. User gets another 10 bonus.\r\n [*]More than 100 votes, among which votes for [i]funny[/i] exceed 75%. User gets another 10 bonus.\r\n [*]More than 200 votes, among which votes for [i]funny[/i] exceed 75%. User gets another 10 bonus.'),
(22, 6, 'Downloading rules - <font class=striking>By not following these rules you will lose download privileges!</font>', '[*]Low ratios may result in severe consequences, including banning accounts. See [url=faq.php#22]FAQ[/url].\r\n[*]Rules for torrent promotion:\r\n [*]Random promotion (torrents promoted randomly by system upon uploading):\r\n [*]10% chance becoming [color=#7c7ff6][b]50% Leech[/b][/color],\r\n [*]5% chance becoming [color=#f0cc00][b]Free Leech[/b][/color],\r\n [*]5% chance becoming [color=#aaaaaa][b]2X up[/b][/color],\r\n [*]3% chance becoming [color=#7ad6ea][b]50% Leech and 2X up[/b][/color],\r\n [*]1% chance becoming [color=#99cc66][b]Free Leech and 2X up[/b][/color].\r\n [*]Torrents larger than 20GB will automatically be [color=#f0cc00][b]Free Leech[/b][/color].\r\n [*]Raw Blu-ray, HD DVD Discs will be [color=#f0cc00][b]Free Leech[/b][/color].\r\n [*]First episode of every season of TV Series, etc. will be [color=#f0cc00][b]Free Leech[/b][/color].\r\n [*]Highly popular torrents will be on promotion (decided by admins).\r\n [*]Promotion timeout:\r\n [*]Except [color=#aaaaaa][b]2X up[/b][/color], all the other types of promotion will be due after 7 days (counted from the time when the torrent is uploaded).\r\n [*][color=#aaaaaa][b]2X up[/b][/color] will never become due.\r\n [*]ALL the torrents will be [color=#aaaaaa][b]2X up[/b][/color] forever when they are on the site for over 1 month.\r\n [*]On special occasions, we would set the whole site [color=#f0cc00][b]Free Leech[/b][/color]. Grab as much as you can. :mml: :mml: :mml:\r\n[*]You may [b]only[/b] use allowed bittorrent clients at [site]. See [url=faq.php#29]FAQ[/url].'),
(24, 6, 'General Forum Guidelines - <font class=stiking>Please follow these guidelines or else you might end up with a warning!</font>', '[*]No aggressive behavior or flaming in the forums.\r\n[*]No trashing of any topics (i.e. SPAM). Do not submit meaningless topics or posts (e.g. smiley only) in any forum except Water Jar.\r\n[*]Do not flood any forum in order to get bonus.\r\n[*]No foul language on title or text.\r\n[*]Do not discuss topics that are taboo, political sensitive or forbidden by local laws.\r\n[*]No language of discrimination based on race, national or ethnic origin, color, religion, gender, age, sexual preference or mental or physical disability. Violating this rule would result in permanent ban.\r\n[*]No bumping... (All bumped threads will be deleted.)\r\n[*]No double posting. \r\n[*]Please ensure all questions are posted in the correct section!\r\n[*]Topics without new reply in 365 days would be locked automatically by system.'),
(26, 6, 'Avatar Guidelines - <font class=striking>Please try to follow these guidelines</font>', '[*]The allowed formats are .gif, .jpg and .png. \r\n[*]Be considerate. Resize your images to a width of 150 px and a size of no more than 150 KB. (Browsers will rescale them anyway: smaller images will be expanded and will not look good; larger images will just waste bandwidth and CPU cycles.)\r\n[*]Do not use potentially offensive material involving porn, religious material, animal / human cruelty or ideologically charged images. Staff members have wide discretion on what is acceptable. If in doubt PM one. ');
INSERT INTO `rules` (`id`, `lang_id`, `title`, `text`) VALUES
(23, 6, 'Uploading rules - <font class=striking>Torrents violating these rules may be deleted without notice</font>', 'Please respect the rules, and if you have any questions about something unclear or not understandable, please [url=contactstaff.php]consult the staff[/url]. Staff reserves the rights to adjudicate.\r\n\r\n[b]GENERAL[/b]\r\n [*]You must have legal rights to the file you upload.\r\n [*]Make sure your torrents are well-seeded. If you fail to seed for at least 24 hours or till someone else completes, or purposely keep a low uploading speed, you can be warned and your privilege to upload can be removed.\r\n [*]You would get 2 times as much of uploading credit for torrents uploaded by yourself.\r\n [*]If you have something interesting that somehow violates these rules, [url=contactstaff.php]ask the staff[/url] with a detailed description and we might make an exception.\r\n\r\n[b]PRIVILEGE[/b]\r\n [*]Everyone can upload.\r\n [*]However, some must go through the [url=offers.php]Offer section[/url]. See [url=faq.php#22]FAQ[/url] for details.\r\n [*]ONLY users in the class [color=#DC143C][b]Uploader[/b][/color] or above, or users specified by staff can freely upload games. Others should go through the [url=offers.php]Offer section[/url].\r\n\r\n[b]ALLOWED CONTENTS[/b]\r\n [*]High Definition (HD) videos, including\r\n [*]complete HD media, e.g. Blu-ray disc, HD DVD disc, etc. or remux,\r\n [*]captured HDTV streams,\r\n [*]encodes from above listed sources in HD resolution (at least 720p),\r\n [*]other HD videos such as HD DV.\r\n [*]Standard Definition (SD) videos, only\r\n [*]SD encodes from HD media (at least 480p),\r\n [*]DVDR/DVDISO,\r\n [*]DVDRip, CNDVDRip.\r\n [*]Lossless audio tracks (and corresponding cue sheets), e.g. FLAC, Monkey''s Audio, etc.\r\n [*]5.1-channel (or higher) movie dubs and music tracks (DTS, DTS CD Image, etc.), and commentary tracks.\r\n [*]PC games (must be original images).\r\n [*]HD trailers released within 7 days.\r\n [*]HD-related software and documents.\r\n\r\n[b]NOT ALLOWED CONTENTS[/b]\r\n [*]Contents less than 100 MB in total.\r\n [*]Upscaled/partially upscaled in Standard Definition mastered/produced content.\r\n [*]Videos in SD resolution but with low quality, including CAM, TC, TS, SCR, DVDSCR, R5, R5.Line, HalfCD, etc.\r\n [*]RealVideo encoded videos (usually contained in RMVB or RM), flv files.\r\n [*]Individual samples (to be included in the "Main torrent").\r\n [*]Lossy audios that are not 5.1-channel (or higher), e.g. common lossy MP3''s, lossy WMAs, etc.\r\n [*]Multi-track audio files without proper cue sheets.\r\n [*]Installation-free or highly compressed games, unofficial game images, third-party mods, collection of tiny games, individual game cracks or patches.\r\n [*]RAR, etc. archived files.\r\n [*]Dupe releases. (see beneath for dupe rules.)\r\n [*]Taboo or sensitive contents (such as porn or politically sensitive topics).\r\n [*]Damaged files, i.e. files that are erroneous upon reading or playback.\r\n [*]Spam files, such as viruses, trojans, website links, advertisements, torrents in torrent, etc., or irrelevant files.\r\n\r\n[b]DUPE RULES: QUALITY OVER QUANTITY[/b]\r\n [*]Video releases are prioritized according to their source media, and mainly: Blu-ray/HD DVD > HDTV > DVD > TV. High prioritized versions will dupe other versions with low priorities of the same video.\r\n [*]HD releases will dupe SD releases of the same video.\r\n [*]For animes, HDTV versions are equal in priority to DVD versions. This is an exception.\r\n [*]Encodes from the same type of media and in the same resolution \r\n [*]They are prioritized based on "[url=forums.php?action=viewtopic&forumid=6&topicid=1520]Scene & Internal, from Group to Quality-Degree. O
(28, 6, 'Moderating Rules - <font class=striking>Use your better judgement!</font>', '[*]The most important rule: Use your better judgment!\r\n[*]Don''t be afraid to say [b]NO[/b]!\r\n[*]Don''t defy another staff member in public, instead send a PM or through IM.\r\n[*]Be tolerant! Give the user(s) a chance to reform.\r\n[*]Don''t act prematurely, let the users make their mistakes and THEN correct them.\r\n[*]Try correcting any "off topics" rather then closing a thread.\r\n[*]Move topics rather than locking them.\r\n[*]Be tolerant when moderating the chat section (give them some slack).\r\n[*]If you lock a topic, give a brief explanation as to why you''re locking it.\r\n[*]Before you disable a user account, send him/her a PM and if they reply, put them on a 2 week trial.\r\n[*]Don''t disable a user account until he or she has been a member for at least 4 weeks.\r\n[*]Convince people by reasoning rather than authority.'),
(54, 25, '€€', '€: \r\n\r\n[code]\r\n[b] [color=#DC143C] (Uploaders)[/color]: [/b]\r\n\r\n謌蝉クコ [color=#1cc6d5][b] (Retiree) [/b]: [/color]\r\n €; 200 (谿, 0day譖エ譁ー遲牙庄莉; ).\r\n\r\n謌蝉クコ [color=#009F00][b]VIP[/b]: [/color]\r\n 6; 100 (谿, 0day譖エ譁ー遲牙庄莉).\r\n\r\n蜈カ莉:\r\n [color=#F88C00][b]Extreme User[/b][/color] ( [color=#F88C00][b]Extreme User[/b][/color] , [color=#38ACEC][b]Nexus Master[/b][/color]) .\r\n[/code]\r\n\r\n[code]\r\n[b] [color=#6495ED] (Moderators)[/color]: [/b]\r\n\r\n謌蝉クコ [color=#1cc6d5][b] (Retiree)[/b]: [/color]\r\n €; 2; ソ / ソ.\r\n\r\n謌蝉クコ [color=#009F00][b]VIP[/b]: [/color]\r\n [color=#1cc6d5][b] (Retiree)[/b][/color] , [b][/b] [color=#009F00][b]VIP[/b][/color] .\r\n[/code]\r\n\r\n[code]\r\n[b] [color=#4b0082] (Administrators)[/color] : [/b]\r\n\r\n [b][/b] [color=#1cc6d5][b] (Retiree)[/b][/color] .\r\n[/code]'),
(55, 28, '€', 'ソ€: \r\n[code]\r\n[b] [color=#DC143C] (Uploaders)[/color]: [/b]\r\n謌千ぜ [color=#1cc6d5][b]€ (Retiree) [/b]: [/color]\r\n €; 200 (谿, 0day譖エ譁ー遲牙庄莉; ).\r\n謌千ぜ [color=#009F00][b]VIP[/b]: [/color]\r\n 6; 100 (谿, 0day譖エ譁ー遲牙庄莉).\r\n蜈カ莉:\r\n [color=#F88C00][b]Extreme User[/b][/color] (ソ [color=#F88C00][b]Extreme User[/b][/color] , [color=#38ACEC][b]Nexus Master[/b][/color]) .\r\n[/code]\r\n[code]\r\n[b] [color=#6495ED] (Moderators)[/color]: [/b]\r\n謌千ぜ [color=#1cc6d5][b]€ (Retiree)[/b]: [/color]\r\n €; 2; / ソ.\r\n謌千ぜ [color=#009F00][b]VIP[/b]: [/color]\r\n ソ [color=#1cc6d5][b]€ (Retiree)[/b][/color] , [b][/b] [color=#009F00][b]VIP[/b][/color] .\r\n[/code]\r\n[code]\r\n[b] [color=#4b0082] (Administrators)[/color] : [/b]\r\n [b][/b] [color=#1cc6d5][b]€ (Retiree)[/b][/color] .\r\n[/code]'),
(50, 6, 'Rules for Subtitles - <font class=striking>Subtitles violating these rules will be deleted</font>', '(This text is translated from the Chinese version. In case of discrepancy, the original version in Chinese shall prevail.)\r\n\r\n[b]GENERAL PRINCIPLE:[/b]\r\n [*]All subtitles uploaded must conform to the rules (i.e. proper or qualified). Unqualified subtitles will be deleted.\r\n [*]Allowed file formats are srt/ssa/ass/cue/zip/rar.\r\n [*]If you''re uploading Vobsub (idx+sub) subtitles or subtitles of other types, or a collection (e.g. subtitles for a season pack of some TV series), please zip/rar them before uploading.\r\n [*]Cue sheet of audio tracks is allowed as well. If there are several cue sheets, please pack them all.\r\n [*]Uploading lrc lyrics or other non-subtitle/non-cue files is not permitted. Irrelevant files if uploaded will be directly deleted.\r\n\r\n[b]QUALIFYING SUBTITLE/CUE FILES: improper subtitle/cue files will be directly deleted.[/b]\r\n In any of the following cases, a subtitle/cue file will be judged as improper:\r\n [*]Fail to match the corresponding torrent.\r\n [*]Fail to be in sync with the corresponding video/audio file.\r\n [*]Packed Improperly.\r\n [*]Contain irrelevant or spam stuff.\r\n [*]Encoded incorrectly.\r\n [*]Wrong cue file.\r\n [*]Wrong language mark.\r\n [*]The title is indefinite or contains redundant info/characters.\r\n [*]Duplicate.\r\n [*]Reported by several users and confirmed with other problems.\r\n [b]The staff group reserves rights to judge and deal with improper subtitles.[/b]\r\n Please refer to [url=http://www.nexushd.org/forums.php?action=viewtopic&forumid=13&topicid=2848][i]this thread[/i][/url] in the forum for detailed regulations on qualifying subtitle/cue files, other notes and suggestions on uploading subtitles, and subtitle naming and entitling guidance.\r\n\r\n[b]IMPLEMENTING REGULATIONS OF REWARDS AND PENALTIES [/b]\r\n [*]Reporting against improper subtitles and the uploaders who purposely upload improper subtitles is always welcomed. To report an improper subtitle, please click on the [i]REPORT[/i] button of the corresponding subtitle in the subtitle section. To report a user, please click on the [i]REPORT[/i] button at the bottom of the user details page.\r\n [*]The reporter will be rewarded 50 karma points (delivered in three days) for each case after confirmation.\r\n [*]Improper subtitles will be deleted and the corresponding uploader will be fined 100 karma points in each case.\r\n [*]Users who recklessly uploading improper subtitles for karma points or other purposes, or users who maliciously report, will be fined karma points or warned depending on the seriousness of the case.\r\n'),
(49, 25, ' - <font class=striking></font>', '[b]/b]\r\n [*]€ソ€r\n [*]srt/ssa/ass/cue/zip/rar縲r\n [*]Vobsub譬シ蠑擾シdx+subzip/rar蜷主r\n [*]€ue陦ィ蜊墓枚莉カ逧cuer\n [*]lrc豁瑚ッ肴/cue譁r\n\r\n[b]/cue譁/cue譁/b]\r\n €/cue譁r\n [*]€r\n [*]/r\n [*]r\n [*]r\n [*]r\n [*]cue譁r\n [*]r\n [*]ソr\n [*]€r\n [*]r\n [b]ソ/b]\r\n /cue譁[url=http://www.nexushd.org/forums.php?action=viewtopic&forumid=13&topicid=2848]/url]r\n\r\n[b]Λ/b]\r\n [*]ソΚ€r\n [*]€50€r\n [*]€€100r\n [*]€r\n'),
(53, 6, 'Staff''s retirement benefits', 'You can get retirement benefits when meeting these condition(s) below:\r\n\r\n[code]\r\n[b]for [color=#DC143C]Uploaders[/color]: [/b]\r\n\r\nTo join [color=#1cc6d5][b]Retiree[/b]: [/color]\r\n Been promoted for more than 1 year; have posted 200 or more torrents (special cases can be decided via vote among staffs, like Source-Disc posters, scene-uploaders; should be considered as having made rare and enduring contribution).\r\n\r\nTo join [color=#009F00][b]VIP[/b]: [/color]\r\n Been promoted for more than 6 months; have posted 100 or more torrents (special cases can be decided via vote among staffs, like Source-Disc posters, scene-uploaders).\r\n\r\nOthers:\r\n Demoted to [color=#F88C00][b]Extreme User[/b][/color] (if your profile meets the corresponding condition of classes [color=#F88C00][b]Extreme User[/b][/color] and above, then promoted to [color=#38ACEC][b]Nexus Master[/b][/color]).\r\n[/code]\r\n\r\n[code]\r\n[b]for [color=#6495ED]Moderators[/color]: [/b]\r\n\r\nTo join [color=#1cc6d5][b]Retiree[/b]: [/color]\r\n Been promoted for more than 1 year; Have participated at least 2 Staff [b]Official[/b] Meetings; Have participated in Rules/FAQ modifying.\r\n\r\nTo join [color=#009F00][b]VIP[/b]: [/color]\r\n If you don''t meet the condition of joining [color=#1cc6d5][b]Retiree[/b][/color], you can join [color=#009F00][b]VIP[/b][/color] [b]unconditionally[/b].\r\n[/code]\r\n\r\n[code]\r\n[b]for [color=#4b0082]Administrators[/color] and above: [/b]\r\n\r\n You can join [color=#1cc6d5][b]Retiree[/b][/color] [b]unconditionally[/b].\r\n[/code]'),
(51, 28, ' - <font class=striking></font>', '[b]/b]\r\n [*]€ソ€r\n [*]srt/ssa/ass/cue/zip/rar縲r\n [*]Vobsub譬シ蠑擾シdx+sub€zip/rar蠕悟r\n [*]cue陦ィ蝟ョ譁€ue€€r\n [*]lrc豁瑚ゥ樊/cue譁r\n\r\n[b]/cue譁/cue讙泌ー/b]\r\n €/cue讙泌ーr\n [*]€r\n [*]/r\n [*]r\n [*]€r\n [*]r\n [*]cue讙秘険隱r\n [*]r\n [*]r\n [*]€r\n [*]€r\n [b]ソ/b]\r\n /cue讙泌愛螳夂エー蜑€[url=http://www.nexushd.org/forums.php?action=viewtopic&forumid=13&topicid=2848]€/url]r\n\r\n[b]/b]\r\n [*]€ソソΚ€€r\n [*]€50€r\n [*]€€100r\n [*]Γ€€r\n');
-- --------------------------------------------------------
--
-- Table structure for table `schools`
--
CREATE TABLE IF NOT EXISTS `schools` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=101 ;
--
-- Dumping data for table `schools`
--
INSERT INTO `schools` (`id`, `name`) VALUES
(1, ''),
(2, ''),
(3, ''),
(4, ''),
(5, ''),
(6, '€'),
(7, ''),
(8, ''),
(9, ''),
(10, ''),
(11, ''),
(12, ''),
(13, 'ソ'),
(14, ''),
(15, ''),
(16, '橿'),
(17, ''),
(18, ''),
(19, ''),
(20, ''),
(21, ''),
(22, ''),
(23, ''),
(24, ''),
(25, ''),
(26, '橿'),
(27, 'ソ橿'),
(28, ''),
(29, ''),
(30, ''),
(31, 'ソ'),
(32, ''),
(33, ''),
(34, ''),
(35, ''),
(36, 'ソ'),
(37, ''),
(38, ''),
(39, ''),
(40, ''),
(41, ''),
(42, ''),
(43, ''),
(44, ''),
(45, ''),
(46, '橿'),
(47, 'ソ橿'),
(48, ''),
(49, ''),
(50, ''),
(51, ''),
(52, ''),
(53, ''),
(54, ''),
(55, ''),
(56, '€'),
(57, ''),
(58, ''),
(59, ''),
(60, ''),
(61, 'ソ'),
(62, ''),
(63, ''),
(64, ''),
(65, ''),
(66, ''),
(67, ''),
(68, 'ソソ'),
(69, 'ソ'),
(70, ''),
(71, ''),
(72, ''),
(73, ''),
(74, ''),
(75, 'ソ'),
(76, '€'),
(77, ''),
(78, ''),
(79, 'ソ橿'),
(80, ''),
(81, ''),
(82, ''),
(83, ''),
(84, ''),
(85, '€'),
(86, ''),
(87, ''),
(88, ''),
(89, ''),
(90, ''),
(91, 'ソ'),
(92, ' '),
(93, ''),
(94, ''),
(95, ''),
(96, ''),
(97, ''),
(98, ''),
(99, ''),
(100, '');
-- --------------------------------------------------------
--
-- Table structure for table `searchbox`
--
CREATE TABLE IF NOT EXISTS `searchbox` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) DEFAULT NULL,
`showsubcat` tinyint(1) NOT NULL DEFAULT '0',
`showsource` tinyint(1) NOT NULL DEFAULT '0',
`showmedium` tinyint(1) NOT NULL DEFAULT '0',
`showcodec` tinyint(1) NOT NULL DEFAULT '0',
`showstandard` tinyint(1) NOT NULL DEFAULT '0',
`showprocessing` tinyint(1) NOT NULL DEFAULT '0',
`showteam` tinyint(1) NOT NULL DEFAULT '0',
`showaudiocodec` tinyint(1) NOT NULL DEFAULT '0',
`catsperrow` smallint(5) unsigned NOT NULL DEFAULT '7',
`catpadding` smallint(5) unsigned NOT NULL DEFAULT '25',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `searchbox`
--
INSERT INTO `searchbox` (`id`, `name`, `showsubcat`, `showsource`, `showmedium`, `showcodec`, `showstandard`, `showprocessing`, `showteam`, `showaudiocodec`, `catsperrow`, `catpadding`) VALUES
(4, 'chd', 1, 0, 1, 1, 1, 0, 1, 0, 10, 7);
-- --------------------------------------------------------
--
-- Table structure for table `secondicons`
--
CREATE TABLE IF NOT EXISTS `secondicons` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`source` tinyint(3) unsigned NOT NULL DEFAULT '0',
`medium` tinyint(3) unsigned NOT NULL DEFAULT '0',
`codec` tinyint(3) unsigned NOT NULL DEFAULT '0',
`standard` tinyint(3) unsigned NOT NULL DEFAULT '0',
`processing` tinyint(3) unsigned NOT NULL DEFAULT '0',
`team` tinyint(3) unsigned NOT NULL DEFAULT '0',
`audiocodec` tinyint(3) unsigned NOT NULL DEFAULT '0',
`name` varchar(30) NOT NULL,
`class_name` varchar(255) DEFAULT NULL,
`image` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=23 ;
--
-- Dumping data for table `secondicons`
--
INSERT INTO `secondicons` (`id`, `source`, `medium`, `codec`, `standard`, `processing`, `team`, `audiocodec`, `name`, `class_name`, `image`) VALUES
(1, 0, 1, 1, 0, 0, 0, 0, 'Blu-ray/H.264', NULL, 'bdh264.png'),
(2, 0, 1, 2, 0, 0, 0, 0, 'Blu-ray/VC-1', NULL, 'bdvc1.png'),
(3, 0, 1, 4, 0, 0, 0, 0, 'Blu-ray/MPEG-2', NULL, 'bdmpeg2.png'),
(4, 0, 2, 1, 0, 0, 0, 0, 'HD DVD/H.264', NULL, 'hddvdh264.png'),
(5, 0, 2, 2, 0, 0, 0, 0, 'HD DVD/VC-1', NULL, 'hddvdvc1.png'),
(6, 0, 2, 4, 0, 0, 0, 0, 'HD DVD/MPEG-2', NULL, 'hddvdmpeg2.png'),
(7, 0, 3, 1, 0, 0, 0, 0, 'Remux/H.264', NULL, 'remuxh264.png'),
(8, 0, 3, 2, 0, 0, 0, 0, 'Remux/VC-1', NULL, 'remuxvc1.png'),
(9, 0, 3, 4, 0, 0, 0, 0, 'Remux/MPEG-2', NULL, 'remuxmpeg2.png'),
(10, 0, 4, 0, 0, 0, 0, 0, 'AVCHD', NULL, 'avchd.png'),
(11, 0, 5, 1, 0, 0, 0, 0, 'HDTV/H.264', NULL, 'hdtvh264.png'),
(12, 0, 5, 4, 0, 0, 0, 0, 'HDTV/MPEG-2', NULL, 'hdtvmpeg2.png'),
(13, 0, 6, 0, 0, 0, 0, 0, 'DVDR', NULL, 'dvdr.png'),
(14, 0, 7, 1, 0, 0, 0, 0, 'Rip/H.264', NULL, 'riph264.png'),
(15, 0, 7, 3, 0, 0, 0, 0, 'Rip/Xvid', NULL, 'ripxvid.png'),
(16, 0, 8, 5, 0, 0, 0, 0, 'CD/FLAC', NULL, 'cdflac.png'),
(17, 0, 8, 6, 0, 0, 0, 0, 'CD/APE', NULL, 'cdape.png'),
(18, 0, 8, 7, 0, 0, 0, 0, 'CD/DTS', NULL, 'cddts.png'),
(19, 0, 8, 9, 0, 0, 0, 0, 'CD/Other', NULL, 'cdother.png'),
(20, 0, 9, 5, 0, 0, 0, 0, 'Extract/FLAC', NULL, 'extractflac.png'),
(21, 0, 9, 7, 0, 0, 0, 0, 'Extract/DTS', NULL, 'extractdts.png'),
(22, 0, 9, 8, 0, 0, 0, 0, 'Extract/AC-3', NULL, 'extractac3.png');
-- --------------------------------------------------------
--
-- Table structure for table `shoutbox`
--
CREATE TABLE IF NOT EXISTS `shoutbox` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`date` int(10) unsigned NOT NULL DEFAULT '0',
`text` text NOT NULL,
`type` enum('sb','hb') NOT NULL DEFAULT 'sb',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `shoutbox`
--
-- --------------------------------------------------------
--
-- Table structure for table `sitelog`
--
CREATE TABLE IF NOT EXISTS `sitelog` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`txt` text NOT NULL,
`security_level` enum('normal','mod') NOT NULL DEFAULT 'normal',
PRIMARY KEY (`id`),
KEY `added` (`added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `sitelog`
--
-- --------------------------------------------------------
--
-- Table structure for table `snatched`
--
CREATE TABLE IF NOT EXISTS `snatched` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`ip` varchar(64) NOT NULL DEFAULT '',
`port` smallint(5) unsigned NOT NULL DEFAULT '0',
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`to_go` bigint(20) unsigned NOT NULL DEFAULT '0',
`seedtime` int(10) unsigned NOT NULL DEFAULT '0',
`leechtime` int(10) unsigned NOT NULL DEFAULT '0',
`last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`startdat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`completedat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`finished` enum('yes','no') NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
KEY `torrentid_userid` (`torrentid`,`userid`),
KEY `userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `snatched`
--
-- --------------------------------------------------------
--
-- Table structure for table `sources`
--
CREATE TABLE IF NOT EXISTS `sources` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `sources`
--
INSERT INTO `sources` (`id`, `name`, `sort_index`) VALUES
(1, 'Blu-ray', 0),
(2, 'HD DVD', 0),
(3, 'DVD', 0),
(4, 'HDTV', 0),
(5, 'TV', 0),
(6, 'Other', 0);
-- --------------------------------------------------------
--
-- Table structure for table `staffmessages`
--
CREATE TABLE IF NOT EXISTS `staffmessages` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`msg` text,
`subject` varchar(128) NOT NULL DEFAULT '',
`answeredby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`answered` tinyint(1) NOT NULL DEFAULT '0',
`answer` text,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `staffmessages`
--
-- --------------------------------------------------------
--
-- Table structure for table `standards`
--
CREATE TABLE IF NOT EXISTS `standards` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `standards`
--
INSERT INTO `standards` (`id`, `name`, `sort_index`) VALUES
(1, '1080p', 0),
(2, '1080i', 0),
(3, '720p', 0),
(4, 'SD', 0);
-- --------------------------------------------------------
--
-- Table structure for table `stylesheets`
--
CREATE TABLE IF NOT EXISTS `stylesheets` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`uri` varchar(255) NOT NULL DEFAULT '',
`name` varchar(64) NOT NULL DEFAULT '',
`addicode` text,
`designer` varchar(50) NOT NULL DEFAULT '',
`comment` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ;
--
-- Dumping data for table `stylesheets`
--
INSERT INTO `stylesheets` (`id`, `uri`, `name`, `addicode`, `designer`, `comment`) VALUES
(2, 'styles/BlueGene/', 'Blue Gene', '', 'Zantetsu', 'HDBits clone'),
(3, 'styles/BlasphemyOrange/', 'Blasphemy Orange', '', 'Zantetsu', 'Bit-HDTV clone'),
(4, 'styles/Classic/', 'Classic', '', 'Zantetsu', 'TBSource original mod'),
(6, 'styles/DarkPassion/', 'Dark Passion', '', 'Zantetsu', ''),
(7, 'styles/BambooGreen/', 'Bamboo Green', '', 'Xia Zuojie', 'Baidu Hi clone');
-- --------------------------------------------------------
--
-- Table structure for table `subs`
--
CREATE TABLE IF NOT EXISTS `subs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrent_id` mediumint(8) unsigned NOT NULL,
`lang_id` smallint(5) unsigned NOT NULL,
`title` varchar(255) NOT NULL DEFAULT '',
`filename` varchar(255) NOT NULL DEFAULT '',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
`uppedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`anonymous` enum('yes','no') NOT NULL DEFAULT 'no',
`hits` mediumint(8) unsigned NOT NULL DEFAULT '0',
`ext` varchar(10) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `torrentid_langid` (`torrent_id`,`lang_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `subs`
--
-- --------------------------------------------------------
--
-- Table structure for table `suggest`
--
CREATE TABLE IF NOT EXISTS `suggest` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`keywords` varchar(255) NOT NULL DEFAULT '',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`adddate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `keywords` (`keywords`(4)),
KEY `adddate` (`adddate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `suggest`
--
-- --------------------------------------------------------
--
-- Table structure for table `sysoppanel`
--
CREATE TABLE IF NOT EXISTS `sysoppanel` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL DEFAULT '',
`url` varchar(255) NOT NULL DEFAULT '',
`info` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3028 ;
--
-- Dumping data for table `sysoppanel`
--
INSERT INTO `sysoppanel` (`id`, `name`, `url`, `info`) VALUES
(1, 'Delete disabled users', 'deletedisabled.php', 'Delete all disabled users'),
(2, 'Manage tracker forum', 'forummanage.php', 'Edit/Delete forum'),
(3, 'MySQL Stats', 'mysql_stats.php', 'See MySql stats'),
(4, 'Mass mailer', 'massmail.php', 'Send e-mail to all users on the tracker'),
(5, 'Do cleanup', 'docleanup.php', 'Do cleanup functions'),
(6, 'Ban System', 'bans.php', 'Ban / Unban IP'),
(7, 'Failed Logins', 'maxlogin.php', 'Show Failed Login Attempts'),
(8, 'Bitbucket', 'bitbucketlog.php', 'Bitbucket Log'),
(9, 'Ban EMAIL address', 'bannedemails.php', 'Ban EMAILs stop registration.'),
(10, 'Allow EMAIL address', 'allowedemails.php', 'Allow EMAIL registration.'),
(11, 'Location', 'location.php', 'Manage location and location speed'),
(12, 'Add Upload', 'amountupload.php', 'Add upload to certain classes');
-- --------------------------------------------------------
--
-- Table structure for table `teams`
--
CREATE TABLE IF NOT EXISTS `teams` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=6 ;
--
-- Dumping data for table `teams`
--
INSERT INTO `teams` (`id`, `name`, `sort_index`) VALUES
(1, 'HDS', 0),
(2, 'CHD', 0),
(3, 'MySiLU', 0),
(4, 'WiKi', 0),
(5, 'Other', 0);
-- --------------------------------------------------------
--
-- Table structure for table `thanks`
--
CREATE TABLE IF NOT EXISTS `thanks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `torrentid_id` (`torrentid`,`id`),
KEY `torrentid_userid` (`torrentid`,`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `thanks`
--
-- --------------------------------------------------------
--
-- Table structure for table `topics`
--
CREATE TABLE IF NOT EXISTS `topics` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`subject` varchar(128) NOT NULL,
`locked` enum('yes','no') NOT NULL DEFAULT 'no',
`forumid` smallint(5) unsigned NOT NULL DEFAULT '0',
`firstpost` int(10) unsigned NOT NULL DEFAULT '0',
`lastpost` int(10) unsigned NOT NULL DEFAULT '0',
`sticky` enum('no','yes') NOT NULL DEFAULT 'no',
`hlcolor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`views` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `userid` (`userid`),
KEY `subject` (`subject`),
KEY `forumid_lastpost` (`forumid`,`lastpost`),
KEY `forumid_sticky_lastpost` (`forumid`,`sticky`,`lastpost`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `topics`
--
-- --------------------------------------------------------
--
-- Table structure for table `torrents`
--
CREATE TABLE IF NOT EXISTS `torrents` (
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`info_hash` binary(20) NOT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`filename` varchar(255) NOT NULL DEFAULT '',
`save_as` varchar(255) NOT NULL DEFAULT '',
`descr` text,
`small_descr` varchar(255) NOT NULL DEFAULT '',
`ori_descr` text,
`category` smallint(5) unsigned NOT NULL DEFAULT '0',
`source` tinyint(3) unsigned NOT NULL DEFAULT '0',
`medium` tinyint(3) unsigned NOT NULL DEFAULT '0',
`codec` tinyint(3) unsigned NOT NULL DEFAULT '0',
`standard` tinyint(3) unsigned NOT NULL DEFAULT '0',
`processing` tinyint(3) unsigned NOT NULL DEFAULT '0',
`team` tinyint(3) unsigned NOT NULL DEFAULT '0',
`audiocodec` tinyint(3) unsigned NOT NULL DEFAULT '0',
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`type` enum('single','multi') NOT NULL DEFAULT 'single',
`numfiles` smallint(5) unsigned NOT NULL DEFAULT '0',
`comments` mediumint(8) unsigned NOT NULL DEFAULT '0',
`views` int(10) unsigned NOT NULL DEFAULT '0',
`hits` int(10) unsigned NOT NULL DEFAULT '0',
`times_completed` mediumint(8) unsigned NOT NULL DEFAULT '0',
`leechers` mediumint(8) unsigned NOT NULL DEFAULT '0',
`seeders` mediumint(8) unsigned NOT NULL DEFAULT '0',
`last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`visible` enum('yes','no') NOT NULL DEFAULT 'yes',
`banned` enum('yes','no') NOT NULL DEFAULT 'no',
`owner` mediumint(8) unsigned NOT NULL DEFAULT '0',
`nfo` blob,
`sp_state` tinyint(3) unsigned NOT NULL DEFAULT '1',
`anonymous` enum('yes','no') NOT NULL DEFAULT 'no',
`url` int(10) unsigned DEFAULT NULL,
`pos_state` enum('normal','sticky') NOT NULL DEFAULT 'normal',
`cache_stamp` tinyint(3) unsigned NOT NULL DEFAULT '0',
`picktype` enum('hot','classic','recommended','normal') NOT NULL DEFAULT 'normal',
`picktime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`sp_state_temp` enum('2up_free','2up','free','half_down','normal') NOT NULL DEFAULT 'normal',
`last_reseed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `info_hash` (`info_hash`),
KEY `owner` (`owner`),
KEY `visible_pos_id` (`visible`,`pos_state`,`id`),
KEY `url` (`url`),
KEY `category_visible_banned` (`category`,`visible`,`banned`),
KEY `visible_banned_pos_id` (`visible`,`banned`,`pos_state`,`id`),
FULLTEXT KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `torrents`
--
-- --------------------------------------------------------
--
-- Table structure for table `torrents_state`
--
CREATE TABLE IF NOT EXISTS `torrents_state` (
`global_sp_state` tinyint(3) unsigned NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `torrents_state`
--
INSERT INTO `torrents_state` (`global_sp_state`) VALUES
(1);
-- --------------------------------------------------------
--
-- Table structure for table `uploadspeed`
--
CREATE TABLE IF NOT EXISTS `uploadspeed` (
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;
--
-- Dumping data for table `uploadspeed`
--
INSERT INTO `uploadspeed` (`id`, `name`) VALUES
(1, '64kbps'),
(2, '128kbps'),
(3, '256kbps'),
(4, '512kbps'),
(5, '768kbps'),
(6, '1Mbps'),
(7, '1.5Mbps'),
(8, '2Mbps'),
(9, '3Mbps'),
(10, '4Mbps'),
(11, '5Mbps'),
(12, '6Mbps'),
(13, '7Mbps'),
(14, '8Mbps'),
(15, '9Mbps'),
(16, '10Mbps'),
(17, '48Mbps'),
(18, '100Mbit');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(40) NOT NULL DEFAULT '',
`passhash` varchar(32) NOT NULL DEFAULT '',
`secret` varbinary(20) NOT NULL,
`email` varchar(80) NOT NULL DEFAULT '',
`status` enum('pending','confirmed') NOT NULL DEFAULT 'pending',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_home` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_offer` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`forum_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_staffmsg` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_pm` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_comment` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_post` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_browse` int(10) unsigned NOT NULL DEFAULT '0',
`last_music` int(10) unsigned NOT NULL DEFAULT '0',
`last_catchup` int(10) unsigned NOT NULL DEFAULT '0',
`editsecret` varbinary(20) NOT NULL,
`privacy` enum('strong','normal','low') NOT NULL DEFAULT 'normal',
`stylesheet` tinyint(3) unsigned NOT NULL DEFAULT '1',
`caticon` tinyint(3) unsigned NOT NULL DEFAULT '1',
`fontsize` enum('small','medium','large') NOT NULL DEFAULT 'medium',
`info` text,
`acceptpms` enum('yes','friends','no') NOT NULL DEFAULT 'yes',
`commentpm` enum('yes','no') NOT NULL DEFAULT 'yes',
`ip` varchar(64) NOT NULL DEFAULT '',
`class` tinyint(3) unsigned NOT NULL DEFAULT '1',
`max_class_once` tinyint(3) NOT NULL DEFAULT '1',
`avatar` varchar(255) NOT NULL DEFAULT '',
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`seedtime` bigint(20) unsigned NOT NULL DEFAULT '0',
`leechtime` bigint(20) unsigned NOT NULL DEFAULT '0',
`title` varchar(30) NOT NULL DEFAULT '',
`country` smallint(5) unsigned NOT NULL DEFAULT '107',
`notifs` varchar(500) DEFAULT NULL,
`modcomment` text,
`enabled` enum('yes','no') NOT NULL DEFAULT 'yes',
`avatars` enum('yes','no') NOT NULL DEFAULT 'yes',
`donor` enum('yes','no') NOT NULL DEFAULT 'no',
`donated` decimal(8,2) NOT NULL DEFAULT '0.00',
`donated_cny` decimal(8,2) NOT NULL DEFAULT '0.00',
`donoruntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`warned` enum('yes','no') NOT NULL DEFAULT 'no',
`warneduntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`noad` enum('yes','no') NOT NULL DEFAULT 'no',
`noaduntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`torrentsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0',
`topicsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0',
`postsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0',
`clicktopic` enum('firstpage','lastpage') NOT NULL DEFAULT 'firstpage',
`deletepms` enum('yes','no') NOT NULL DEFAULT 'yes',
`savepms` enum('yes','no') NOT NULL DEFAULT 'no',
`showhot` enum('yes','no') NOT NULL DEFAULT 'yes',
`showclassic` enum('yes','no') NOT NULL DEFAULT 'yes',
`support` enum('yes','no') NOT NULL DEFAULT 'no',
`picker` enum('yes','no') NOT NULL DEFAULT 'no',
`stafffor` varchar(255) NOT NULL,
`supportfor` varchar(255) NOT NULL,
`pickfor` varchar(255) NOT NULL,
`supportlang` varchar(50) NOT NULL,
`passkey` varchar(32) NOT NULL DEFAULT '',
`promotion_link` varchar(32) DEFAULT NULL,
`uploadpos` enum('yes','no') NOT NULL DEFAULT 'yes',
`forumpost` enum('yes','no') NOT NULL DEFAULT 'yes',
`downloadpos` enum('yes','no') NOT NULL DEFAULT 'yes',
`clientselect` tinyint(3) unsigned NOT NULL DEFAULT '0',
`signatures` enum('yes','no') NOT NULL DEFAULT 'yes',
`signature` varchar(800) NOT NULL DEFAULT '',
`lang` smallint(5) unsigned NOT NULL DEFAULT '6',
`cheat` smallint(6) NOT NULL DEFAULT '0',
`download` int(10) unsigned NOT NULL DEFAULT '0',
`upload` int(10) unsigned NOT NULL DEFAULT '0',
`isp` tinyint(3) unsigned NOT NULL DEFAULT '0',
`invites` smallint(5) unsigned NOT NULL DEFAULT '0',
`invited_by` mediumint(8) unsigned NOT NULL DEFAULT '0',
`gender` enum('Male','Female','N/A') NOT NULL DEFAULT 'N/A',
`vip_added` enum('yes','no') NOT NULL DEFAULT 'no',
`vip_until` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`seedbonus` decimal(10,1) NOT NULL DEFAULT '0.0',
`charity` decimal(10,1) NOT NULL DEFAULT '0.0',
`bonuscomment` text,
`parked` enum('yes','no') NOT NULL DEFAULT 'no',
`leechwarn` enum('yes','no') NOT NULL DEFAULT 'no',
`leechwarnuntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`lastwarned` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`timeswarned` tinyint(3) unsigned NOT NULL DEFAULT '0',
`warnedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
`sbnum` tinyint(3) unsigned NOT NULL DEFAULT '70',
`sbrefresh` smallint(5) unsigned NOT NULL DEFAULT '120',
`hidehb` enum('yes','no') DEFAULT 'no',
`showimdb` enum('yes','no') DEFAULT 'yes',
`showdescription` enum('yes','no') DEFAULT 'yes',
`showcomment` enum('yes','no') DEFAULT 'yes',
`showclienterror` enum('yes','no') NOT NULL DEFAULT 'no',
`showdlnotice` tinyint(1) NOT NULL DEFAULT '1',
`tooltip` enum('minorimdb','medianimdb','off') NOT NULL DEFAULT 'off',
`shownfo` enum('yes','no') DEFAULT 'yes',
`timetype` enum('timeadded','timealive') DEFAULT 'timealive',
`appendsticky` enum('yes','no') DEFAULT 'yes',
`appendnew` enum('yes','no') DEFAULT 'yes',
`appendpromotion` enum('highlight','word','icon','off') DEFAULT 'icon',
`appendpicked` enum('yes','no') DEFAULT 'yes',
`dlicon` enum('yes','no') DEFAULT 'yes',
`bmicon` enum('yes','no') DEFAULT 'yes',
`showsmalldescr` enum('yes','no') NOT NULL DEFAULT 'yes',
`showcomnum` enum('yes','no') DEFAULT 'yes',
`showlastcom` enum('yes','no') DEFAULT 'no',
`showlastpost` enum('yes','no') NOT NULL DEFAULT 'no',
`pmnum` tinyint(3) unsigned NOT NULL DEFAULT '10',
`school` smallint(5) unsigned NOT NULL DEFAULT '35',
`showfb` enum('yes','no') NOT NULL DEFAULT 'yes',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
KEY `status_added` (`status`,`added`),
KEY `ip` (`ip`),
KEY `uploaded` (`uploaded`),
KEY `downloaded` (`downloaded`),
KEY `country` (`country`),
KEY `last_access` (`last_access`),
KEY `enabled` (`enabled`),
KEY `warned` (`warned`),
KEY `cheat` (`cheat`),
KEY `class` (`class`),
KEY `passkey` (`passkey`(8))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `users`
--
-- 2010-06-03
ALTER TABLE `users` CHANGE `sbnum` `sbnum` SMALLINT UNSIGNED NOT NULL DEFAULT '70' ;
DELETE FROM `adminpanel` WHERE `adminpanel`.`id` = 5 LIMIT 1;
-- 2009.11.17
CREATE TABLE IF NOT EXISTS `adclicks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`adid` int(11) unsigned DEFAULT NULL,
`userid` int(11) unsigned DEFAULT NULL,
`added` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- 2010-06-15
ALTER TABLE `torrents` ADD `promotion_time_type` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `sp_state` ;
ALTER TABLE `torrents` ADD `promotion_until` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `promotion_time_type` ;
-- 2010-09-05
ALTER TABLE `friends` CHANGE `id` `id` INT( 10 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `torrents` DROP `sp_state_temp`;
-- 2011-12-02
INSERT INTO `agent_allowed_family` (
`id` ,
`family` ,
`start_name` ,
`peer_id_pattern` ,
`peer_id_match_num` ,
`peer_id_matchtype` ,
`peer_id_start` ,
`agent_pattern` ,
`agent_match_num` ,
`agent_matchtype` ,
`agent_start` ,
`exception` ,
`allowhttps` ,
`comment` ,
`hits`
)
VALUES (
NULL , 'Transmission2.x', 'Transmission 2.0', '/^-TR2([0-9])([0-9])([0-9])-/', '3', 'dec', '-TR2000-', '/^Transmission\\/2\\.([0-9])([0-9])/', '3', 'dec', 'Transmission/2.00', 'no', 'yes', '', '0'
);
INSERT INTO `agent_allowed_family` (
`id` ,
`family` ,
`start_name` ,
`peer_id_pattern` ,
`peer_id_match_num` ,
`peer_id_matchtype` ,
`peer_id_start` ,
`agent_pattern` ,
`agent_match_num` ,
`agent_matchtype` ,
`agent_start` ,
`exception` ,
`allowhttps` ,
`comment` ,
`hits`
)
VALUES (
NULL , 'uTorrent 3.x', 'uTorrent/3000', '/^-UT3([0-9])([0-9])([0-9])-/', '3', 'dec', '-UT3000-', '/^uTorrent\\/3([0-9])([0-9])([0-9])/', '3', 'dec', 'uTorrent/3000', 'no', 'yes', '', '0'
);